This repository was archived by the owner on Apr 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRAMLBackend.spec.ts
More file actions
415 lines (325 loc) · 12.9 KB
/
Copy pathRAMLBackend.spec.ts
File metadata and controls
415 lines (325 loc) · 12.9 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
import {RAMLBackend, URIPattern} from "./RAMLBackend";
import {Http, Request, RequestOptions, Response, ResponseOptions} from "@angular/http";
import {InvalidStubbingError, RAMLBackendConfig} from "./RAMLBackendConfig";
function absUri(path: string): string {
return "http://dummy-endpoint" + path;
}
function ok() {
return new Response(new ResponseOptions({
status: 200,
body: ""
}));
}
function createSubject(path: string = "./base/testdata/test-endpoints.raml"): RAMLBackend {
return RAMLBackendConfig.initWithFile(path)
.stubAll()
.createBackend();
}
describe("RAMLBackend", () => {
it("returns 200 with example for found endpoints", () => {
const subject = createSubject(), http = new Http(subject, new RequestOptions());
http.get(absUri("/auth/token"))
.subscribe(resp => {
expect(resp.json()).toEqual({name: "John Snow"});
});
subject.verifyNoPendingRequests();
});
it("takes method into account when looking for response", () => {
const subject = createSubject(), http = new Http(subject, new RequestOptions());
http.post(absUri("/auth/token"), {}).subscribe(resp => {
expect(resp.status).toEqual(201);
expect(resp.json()).toEqual({message: "created"});
});
subject.verifyNoPendingRequests();
});
it("matches path parameters", () => {
const subject = createSubject(), http = new Http(subject, new RequestOptions());
http.get(absUri("/person/123/456")).subscribe(resp => {
expect(resp.status).toEqual(200);
});
subject.verifyNoPendingRequests();
});
it("checks invalid query parameters", () => {
const subject = createSubject(), http = new Http(subject, new RequestOptions());
http.get(absUri("/queryparams?foo=bar&hello=world&invalid=asd"))
.subscribe(resp => {
expect(resp.status).toEqual(401);
expect(resp.json().message).toEqual("undeclared query parameter [invalid] found in request");
});
subject.verifyNoPendingRequests();
});
it("can use altered base uri", () => {
const subject = RAMLBackendConfig.initWithFile("/base/testdata/test-endpoints.raml")
.baseUri("http://somewhere-else")
.stubAll()
.createBackend();
const http = new Http(subject, new RequestOptions());
http.get("http://somewhere-else/queryparams").subscribe(resp => {
expect(resp.json()).toEqual({name: "John Smith"});
});
subject.verifyNoPendingRequests();
});
it("refuses to change base uri after any stubbing happened", () => {
try {
RAMLBackendConfig.initWithFile("/base/testdata/test-endpoints.raml").stubAll().baseUri("asd");
fail("did not throw exception");
} catch (e) {
expect(e).toEqual(new InvalidStubbingError("cannot change baseUri after stubs are defined"))
}
});
xit("checks headers" , () => {
const subject = createSubject(), http = new Http(subject, new RequestOptions());
http.get("").subscribe(resp => {
});
subject.verifyNoPendingRequests();
});
xit("no example, no examples", () => {
});
xit("checks the type of path params", () => {
});
});
describe("URIPattern", () => {
function createSubject(path: string): URIPattern {
return new URIPattern(absUri(path));
}
it("returns empty result on matching parameterless URI", () => {
expect(createSubject("/person").matches(absUri("/person"))).toEqual({});
});
it("returns param map for match", () => {
const actual = createSubject("/person/{personId}/{otherParam}/dummy/{thirdParam}").matches(absUri("/person/123/foo/dummy/bar"));
expect(actual).toEqual({personId: "123", otherParam: "foo", thirdParam: "bar"});
});
});
describe("explicit stubs", () => {
function initStubConfig() {
return RAMLBackendConfig.initWithFile("./base/testdata/stub-base.raml").stubAll();
}
it("overrides 'example' responses", () => {
const explicitAccessToken = "ACCT456";
const subject = initStubConfig()
.whenGET("/endpoint").thenRespond(new Response(new ResponseOptions({
status: 200,
body: JSON.stringify({access_token: "ACCT456"})
})))
.createBackend();
const http = new Http(subject, new RequestOptions());
http.get(absUri("/endpoint")).subscribe(resp => {
expect(resp.json()).toEqual({access_token: explicitAccessToken});
})
});
it("refuses invalid paths", () => {
try {
initStubConfig().whenGET("/nonexistent");
fail("did not refuse nonexistent endpoint");
} catch (e) {
expect(e).toEqual(new InvalidStubbingError("found no declaration of request [GET /nonexistent] in RAML - refusing to stub"))
}
});
it("refuses invalid methods", () => {
try {
initStubConfig().whenHEAD("/endpoint");
fail("did not refuse undefined HEAD method")
} catch (e) {
expect(e).toEqual(new InvalidStubbingError("found no declaration of request [HEAD /endpoint] in RAML - refusing to stub"))
}
});
it("refuses invalid query params", () => {
try {
const subject = initStubConfig()
.whenGET("/endpoint?qp0=val&foo=bar").thenRespond(new Response(new ResponseOptions({
status: 200,
body: JSON.stringify({access_token: 456})
})))
.createBackend();
fail("did not fail for invalid query parameter")
} catch (e) {
expect(e).toEqual(new InvalidStubbingError("undeclared query parameter [foo] found in request"));
}
});
it("refuses invalid response bodies", () => {
try {
const subject = initStubConfig().whenGET("/endpoint")
.thenRespond(new Response(new ResponseOptions({
status: 200,
body: JSON.stringify({invalidKey: 123})
})));
fail("did not throw exception for invalid response body");
} catch (e) {
expect(e).toEqual(new InvalidStubbingError("invalid stub response body"));
}
});
it("also validates non-object response bodies", () => {
try {
initStubConfig().whenPOST("/endpoint").thenRespond(new Response(new ResponseOptions({
status: 201,
body: "gg wp"
})));
fail("did not throw exception for invalid response body");
} catch (e) {
expect(e).toEqual(new InvalidStubbingError("invalid stub response body"));
}
});
it("fails if there is pending behavior (unset response)", () => {
try {
const subject = initStubConfig();
subject.whenGET("/endpoint");
subject.whenPOST("/endpoint");
fail("did not throw exception for unfinished behavior");
} catch (e) {
expect(e).toEqual(new InvalidStubbingError("unfinished behavior definition: cannot configure POST http://dummy-endpoint/endpoint " +
"before setting the response for GET http://dummy-endpoint/endpoint"));
}
});
it("can chain multiple stubbing", () => {
initStubConfig().whenGET("/endpoint").thenRespond(new Response(new ResponseOptions({
status: 200, body: "{\"access_token\":\"xxx\"}"
})
)).whenPOST("/endpoint").thenRespond(new Response(new ResponseOptions({status: 201, body: "Created"})));
});
it("can stub POST requests", () => {
const subject = initStubConfig().whenPOST("/endpoint").thenRespond(ok()).createBackend();
const http = new Http(subject, new RequestOptions());
http.post("/endpoint", {}).subscribe(resp => {
expect(resp.ok).toBe(true);
});
subject.verifyNoPendingRequests();
});
it("can stub PUT requests", () => {
const subject = initStubConfig().whenPUT("/endpoint").thenRespond(ok()).createBackend();
const http = new Http(subject, new RequestOptions());
http.put("/endpoint", {}).subscribe(resp => {
expect(resp.ok).toBe(true);
});
subject.verifyNoPendingRequests();
});
it("can stub DELETE requests", () => {
const subject = initStubConfig().whenDELETE("/endpoint").thenRespond(ok()).createBackend();
const http = new Http(subject, new RequestOptions());
http.delete("/endpoint").subscribe(resp => {
expect(resp.ok).toBe(true);
});
subject.verifyNoPendingRequests();
});
it("can stub PATCH requests", () => {
const subject = initStubConfig().whenPATCH("/endpoint").thenRespond(ok()).createBackend();
const http = new Http(subject, new RequestOptions());
http.patch("/endpoint", {}).subscribe(resp => {
expect(resp.ok).toBe(true);
});
subject.verifyNoPendingRequests();
});
it("can stub OPTIONS requests", () => {
const subject = initStubConfig().whenOPTIONS("/endpoint").thenRespond(ok()).createBackend();
const http = new Http(subject, new RequestOptions());
http.options("/endpoint", {}).subscribe(resp => {
expect(resp.ok).toBe(true);
});
subject.verifyNoPendingRequests();
});
it("can stub entire requests", () => {
const request = new Request({
method: "post",
url: absUri("/endpoint"),
body: {foo: "bar"}
});
const response = new Response(new ResponseOptions({
status: 201,
body: "created"
}));
const subject = initStubConfig().whenRequestIs(request).thenRespond(response).createBackend();
const http = new Http(subject, new RequestOptions());
http.post(absUri("/endpoint"), {foo :"bar"}).subscribe(resp => {
expect(resp).toEqual(response);
});
subject.verifyNoPendingRequests();
});
});
describe("response selection", () => {
it("returns the lowest 2xx response by default", () => {
const subject = RAMLBackendConfig.initWithFile("./base/testdata/status-codes.raml")
.stubAll()
.createBackend();
const http = new Http(subject, new RequestOptions());
http.get(absUri("/endpoint")).subscribe(resp => {
expect(resp.status).toBe(200);
});
});
it("can stub response by only status code", () => {
const subject = RAMLBackendConfig.initWithFile("./base/testdata/status-codes.raml")
.whenGET("/endpoint").thenRespondWith(500)
.createBackend();
const http = new Http(subject, new RequestOptions());
http.get("/endpoint").subscribe(resp => {
expect(resp.status).toBe(500);
expect(resp.json()).toEqual({message:"internal server error"});
});
subject.verifyNoPendingRequests();
});
it("can stub by only status code and example id", () => {
const subject = RAMLBackendConfig.initWithFile("./base/testdata/status-codes.raml")
.whenGET("/endpoint").thenRespondWith(201, "withEntityId")
.createBackend();
const http = new Http(subject, new RequestOptions());
http.get("/endpoint").subscribe(resp => {
expect(resp.json()).toEqual({message: "created", entityId: 42});
});
subject.verifyNoPendingRequests();
});
it("throws exception if no examples are defined", () => {
try {
const subject = RAMLBackendConfig.initWithFile("./base/testdata/status-codes.raml")
.whenGET("/endpoint").thenRespondWith(200, "notFound")
fail("did not throw exception");
} catch (e) {
expect(e).toEqual(new InvalidStubbingError("could not find example [notFound]"));
}
});
it("throws exception if no examples are defined", () => {
try {
const subject = RAMLBackendConfig.initWithFile("./base/testdata/status-codes.raml")
.whenGET("/endpoint").thenRespondWith(201, "notFound")
fail();
} catch (e) {
expect(e).toEqual(new InvalidStubbingError("could not find example [notFound]"));
}
});
it("throws exception if no resp found with status code", () => {
try {
RAMLBackendConfig.initWithFile("./base/testdata/status-codes.raml").whenGET("/endpoint").thenRespondWith(555);
fail("did not throw exception for undefined response")
} catch (e) {
expect(e).toEqual(new InvalidStubbingError("there is no response defined with status code 555 in the RAML file"));
}
});
});
describe("Body validation", () => {
it("validates request bodies as per json schema", () => {
const subject = createSubject("./base/testdata/endpoints-with-schemas.raml"), http = new Http(subject, new RequestOptions());
const onSuccess = jasmine.createSpy("onSuccess");
try {
http.post(absUri("/thing"), {prop:"ab"}).subscribe(onSuccess);
fail("did not throw exception for invalid request body");
} catch (e) {
expect(onSuccess).not.toHaveBeenCalled();
}
});
it("can refer to schemas in fragment", () => {
const subject = createSubject("./base/testdata/endpoints-with-schemas.raml"), http = new Http(subject, new RequestOptions());
const onSuccess = jasmine.createSpy("onSuccess");
try {
http.post(absUri("/proptype"), {prop:"ab"}).subscribe(onSuccess);
fail("did not throw exception for invalid request body");
} catch (e) {
expect(onSuccess).not.toHaveBeenCalled();
}
});
});
describe("regressions", () => {
it("loads simple authentication raml", () => {
const subject = RAMLBackendConfig.initWithFile("/base/testdata/authentication.raml")
.stubAll()
.createBackend();
const http = new Http(subject, new RequestOptions());
http.get("http://dummy-cc-backend/auth/token?code=123").subscribe(e => {});
});
})