forked from cap-js-community/odata-v2-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathignore.test.js
33 lines (26 loc) · 853 Bytes
/
ignore.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"use strict";
const cds = require("@sap/cds");
const supertest = require("supertest");
const util = require("./_env/util/request");
cds.test(__dirname + "/_env");
let request;
describe("rest", () => {
beforeAll(async () => {
await global._init;
request = supertest(cds.app.server);
});
it("GET $metadata", async () => {
const response = await util.callRead(request, "/odata/v2/ignore/$metadata", {
accept: "application/xml",
});
expect(response.statusCode).toEqual(400);
expect(response.body).toBeDefined();
expect(response.text).toMatchSnapshot();
});
it("GET data", async () => {
const response = await util.callRead(request, "/odata/v2/ignore/Header");
expect(response.statusCode).toEqual(400);
expect(response.body).toBeDefined();
expect(response.text).toMatchSnapshot();
});
});