forked from kelveden/vanilli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvanilli-test.js
More file actions
397 lines (326 loc) · 12.7 KB
/
vanilli-test.js
File metadata and controls
397 lines (326 loc) · 12.7 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
var expect = require('chai').expect,
sinon = require('sinon'),
vanilli = require('../../lib/vanilli').init({ logLevel: "error" });
describe("vanilli", function () {
var dummyUrl = "/some/url",
dummyStatus = 234;
it("exposes itself as a singleton", function () {
expect(require('../../lib/vanilli').instance())
.to.equal(vanilli);
});
it("creates new singleton if re-initialised", function () {
expect(require('../../lib/vanilli').init())
.to.not.equal(vanilli);
});
describe("listening", function () {
it("throws an error if no port is specified", function () {
expect(function () {
vanilli.listen();
}).to.throw(/port/i);
});
});
describe("criteria builder", function () {
it("adds the GET HTTP method to the stub", function () {
var stub = vanilli.onGet("/some/url");
expect(stub.criteria.method).to.equal("GET");
});
it("adds the POST HTTP method to the stub", function () {
var stub = vanilli.onPost("/some/url");
expect(stub.criteria.method).to.equal("POST");
});
it("adds the PUT HTTP method to the stub", function () {
var stub = vanilli.onPut("/some/url");
expect(stub.criteria.method).to.equal("PUT");
});
it("adds the DELETE HTTP method to the stub", function () {
var stub = vanilli.onDelete("/some/url");
expect(stub.criteria.method).to.equal("DELETE");
});
it("adds the specified URL criteria to the stub", function () {
var stub = vanilli.onGet("/some/url");
expect(stub.criteria.url).to.equal("/some/url");
});
it("unwraps the specified URL regexp criteria as a vanilla string", function () {
var stub = vanilli.onGet(/.+/);
expect(stub.criteria.url).to.deep.equal({ regex: ".+" });
});
it("adds the specified content-type criteria to the stub", function () {
var stub = vanilli.onGet("/some/url", {
contentType: "my/contenttype"
});
expect(stub.criteria.contentType).to.equal("my/contenttype");
});
it("adds the specified body criteria to the stub", function () {
var stub = vanilli.onGet("/some/url", {
contentType: "application/json",
body: {
some: "body"
}
});
expect(stub.criteria.body).to.deep.equal({
some: "body"
});
});
it("unwraps the specified body regexp criteria as a vanilla string", function () {
var stub = vanilli.onGet("/some/url", {
contentType: "application/json",
body: /.+/
});
expect(stub.criteria.body).to.deep.equal({ regex: ".+" });
});
it("stringifies a body object if content-type is not application/json", function () {
var stub = vanilli.onGet("/some/url", {
contentType: "not/applicationjson",
body: {
some: "body"
}
});
expect(stub.criteria.body).to.equal("{\"some\":\"body\"}");
});
it("throws an exception if a body is specified without a content-type", function () {
expect(function () {
vanilli.onGet("/some/url", {
body: {
some: "body"
}
});
}).to.throw(/content-type was missing/);
});
it("adds the specified query param criteria to the stub", function () {
var stub = vanilli.onGet("/some/url", {
query: {
param1: "value1"
}
});
expect(stub.criteria.query).to.deep.equal({
param1: "value1"
});
});
it("adds multiple query param criteria to the stub", function () {
var stub = vanilli.onGet("/some/url", {
query: {
param1: "value1",
param2: "value2"
}
});
expect(stub.criteria.query).to.deep.equal({
param1: "value1",
param2: "value2"
});
});
it("unwraps the specified query param regexp criteria as a vanilla string", function () {
var stub = vanilli.onGet("/some/url", {
query: {
param1: /.+/
}
});
expect(stub.criteria.query).to.deep.equal({
param1: {
regex: ".+"
}
});
});
it("adds the specified header criteria to the stub", function () {
var stub = vanilli.onGet("/some/url", {
headers: {
header1: "value1"
}
});
expect(stub.criteria.headers).to.deep.equal({
header1: "value1"
});
});
it("adds multiple header criteria to the stub", function () {
var stub = vanilli.onGet("/some/url", {
headers: {
header1: "value1",
header2: "value2"
}
});
expect(stub.criteria.headers).to.deep.equal({
header1: "value1",
header2: "value2"
});
});
it("unwraps the specified header regexp criteria as a vanilla string", function () {
var stub = vanilli.onGet("/some/url", {
headers: {
header1: /.+/
}
});
expect(stub.criteria.headers).to.deep.equal({
header1: {
regex: ".+"
}
});
});
it("throws an exception if url is null", function () {
expect(function () {
vanilli.onGet(null);
}).to.throw(/url is missing/i);
});
it("throws an exception if url is undefined", function () {
expect(function () {
vanilli.onGet();
}).to.throw(/url is missing/i);
});
});
describe("response builder", function () {
it("adds the specified status to the response", function () {
var stub = vanilli.onGet(dummyUrl).respondWith(123);
expect(stub.response.status).to.equal(123);
});
it("adds the specified content-type to the response", function () {
var stub = vanilli.onGet(dummyUrl)
.respondWith(dummyStatus, {
contentType: "my/contenttype"
});
expect(stub.response.contentType).to.equal("my/contenttype");
});
it("adds the specified body to the response", function () {
var stub = vanilli.onGet(dummyUrl)
.respondWith(dummyStatus, {
contentType: "application/json",
body: {
some: "body"
}
});
expect(stub.response.body).to.deep.equal({
some: "body"
});
});
it("adds the specified headers to the response", function () {
var stub = vanilli.onGet(dummyUrl)
.respondWith(dummyStatus, {
headers: {
header1: "value1",
header2: "value2"
}
});
expect(stub.response.headers).to.deep.equal({
header1: "value1",
header2: "value2"
});
});
it("stringifies a body object if content-type is not application/json", function () {
var stub = vanilli.onGet("/some/url")
.respondWith(dummyStatus, {
contentType: "not/applicationjson",
body: {
some: "body"
}
});
expect(stub.response.body).to.equal("{\"some\":\"body\"}");
});
it("throws an exception if status code is null", function () {
expect(function () {
vanilli.onGet("/some/url").respondWith(null);
}).to.throw(/status code is missing/i);
});
it("throws an exception if status code is undefined", function () {
expect(function () {
vanilli.onGet("/some/url").respondWith();
}).to.throw(/status code is missing/i);
});
it("throws an exception if a body is specified without a content-type", function () {
expect(function () {
vanilli.onGet("/some/url")
.respondWith(dummyStatus, {
body: {
some: "body"
}
});
}).to.throw(/content-type was missing/);
});
it("adds specified response wait to stub", function () {
var stub = vanilli.onGet("/some/url")
.respondWith(123)
.wait(2000);
expect(stub.response.wait).to.equal(2000);
});
it("adds number of times for the stub to respond", function () {
var stub = vanilli.onGet("/some/url")
.respondWith(123, {
times: 3
});
expect(stub.times).to.equal(3);
});
it("assumes number of times is 1 if not specified", function () {
var stub = vanilli.onGet("/some/url")
.respondWith(123);
expect(stub.times).to.equal(1);
});
it("assigns specified capture id to stub", function () {
var stub = vanilli.onGet("/some/url")
.respondWith(123)
.capture("mycapture");
expect(stub.captureId).to.equal("mycapture");
});
});
describe("stubs", function () {
it("can be added", function () {
var stubs =
vanilli.stub(
vanilli.onGet("/some/url").respondWith(123));
expect(stubs).to.have.length(1);
expect(stubs[0].id).not.to.be.undefined();
});
it("can be added in one go", function () {
var stubs =
vanilli.stub(
vanilli.onGet("/some/url").respondWith(123),
vanilli.onGet("/another/url").respondWith(456));
expect(stubs).to.have.length(2);
expect(stubs[0].id).not.to.be.undefined();
expect(stubs[0].criteria.url).to.equal("/some/url");
expect(stubs[1].id).not.to.be.undefined();
expect(stubs[1].criteria.url).to.equal("/another/url");
});
it("can be cleared", function () {
vanilli.stub(
vanilli.onGet("/some/url").respondWith(123),
vanilli.onGet("/another/url").respondWith(456));
vanilli.clear();
});
it("cannot be verified", function () {
vanilli.stub(
vanilli.onGet("/some/url").respondWith(123));
expect(vanilli.verify).to.not.throw();
});
});
describe("expectations", function () {
it("can be added", function () {
var stubs =
vanilli.expect(
vanilli.onGet("/some/url").respondWith(123));
expect(stubs).to.have.length(1);
expect(stubs[0].id).not.to.be.undefined();
expect(stubs[0].expect).to.be.true();
});
it("can be added in one go", function () {
var stubs =
vanilli.expect(
vanilli.onGet("/some/url").respondWith(123),
vanilli.onGet("/another/url").respondWith(456));
expect(stubs).to.have.length(2);
expect(stubs[0].id).not.to.be.undefined();
expect(stubs[0].criteria.url).to.equal("/some/url");
expect(stubs[0].expect).to.be.true();
expect(stubs[1].id).not.to.be.undefined();
expect(stubs[1].criteria.url).to.equal("/another/url");
expect(stubs[1].expect).to.be.true();
});
it("can be cleared", function () {
vanilli.expect(
vanilli.onGet("/some/url").respondWith(123),
vanilli.onGet("/another/url").respondWith(456));
vanilli.clear();
});
it("can be verified", function () {
vanilli.expect(
vanilli.onGet("/some/url").respondWith(123),
vanilli.onGet("/another/url").respondWith(123));
expect(vanilli.verify).to.throw(/some.+another/);
});
});
});