forked from cap-js-community/odata-v2-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpassenger.test.js
47 lines (41 loc) · 1.54 KB
/
passenger.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"use strict";
const cds = require("@sap/cds");
const supertest = require("supertest");
const util = require("./_env/util/request");
cds.test(__dirname + "/_env");
let request;
describe("passenger", () => {
beforeAll(async () => {
await global._init;
request = supertest(cds.app.server);
});
it("GET passenger transportation", async () => {
const response = await util.callRead(
request,
"/odata/v2/passenger-transportation/CalculationFactors(TRANSPORT_MODE_KEY='Company_Car',DIMENSION='DEFAULT',CLASS='DEFAULT',COUNTRY_OF_TRIP='DEFAULT',CURRENCY='DEFAULT',ALLOCATION_METHOD='KM',VALID_FROM='2000-01-02',VALID_TO='4000-01-02')",
{
accept: "application/json",
},
);
expect(response.body).toBeDefined();
expect(response.body).toEqual({
d: {
ALLOCATION_METHOD: "KM",
CLASS: "DEFAULT",
COUNTRY_OF_TRIP: "DEFAULT",
CURRENCY: "DEFAULT",
DIMENSION: "DEFAULT",
TRANSPORT_MODE_KEY: "Company_Car",
VALID_FROM: "2000-01-02",
VALID_TO: "4000-01-02",
__metadata: {
type: "passenger.PassengerTransportationService.CalculationFactors",
uri: `http://${response.request.host.replace(
"127.0.0.1",
"localhost",
)}/odata/v2/passenger-transportation/CalculationFactors(TRANSPORT_MODE_KEY='Company_Car',DIMENSION='DEFAULT',CLASS='DEFAULT',COUNTRY_OF_TRIP='DEFAULT',CURRENCY='DEFAULT',ALLOCATION_METHOD='KM',VALID_FROM='2000-01-02',VALID_TO='4000-01-02')`,
},
},
});
});
});