-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware_test.ts
533 lines (464 loc) · 15.5 KB
/
middleware_test.ts
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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
import {
assert,
assertSpyCallArg,
assertSpyCalls,
ConditionalHeader,
describe,
equalsRequest,
equalsResponse,
it,
Method,
RangeHeader,
RepresentationHeader,
spy,
Status,
} from "./_dev_deps.ts";
import { _handler, conditionalRequest } from "./middleware.ts";
describe("_handler", () => {
it("should call next handler if the request is not selection or modification method", async () => {
const select = spy(() => new Response());
const initResponse = new Response();
const next = spy(() => initResponse);
const response = await _handler(
select,
[],
new Request("test:", { method: "OPTIONS" }),
next,
);
assertSpyCalls(select, 0);
assertSpyCalls(next, 1);
assert(initResponse === response);
});
it("should call next handler if the request has not precondition field", async () => {
const select = spy(() => new Response());
const initResponse = new Response();
const request = new Request("test:");
const next = spy(() => initResponse);
const evaluate = spy(() => true);
const respond = spy(() => {});
const response = await _handler(
select,
[{ field: "test", evaluate, respond }],
request,
next,
);
assertSpyCalls(select, 0);
assertSpyCalls(evaluate, 0);
assertSpyCalls(respond, 0);
assertSpyCalls(next, 1);
assertSpyCallArg(next, 0, 0, request);
assert(initResponse === response);
});
it("should call next handler if the selected response has not pre-evaluable status", async () => {
const initRequest = new Request("test:", { headers: { "test": "" } });
const select = spy(async (request: Request) => {
assert(await equalsRequest(request, new Request("test:"), true));
return new Response(null, { status: Status.NotFound });
});
const initResponse = new Response();
const next = spy(() => initResponse);
const evaluate = spy(() => true);
const respond = spy(() => {});
const response = await _handler(
select,
[{ field: "test", evaluate, respond }],
initRequest,
next,
);
assertSpyCalls(evaluate, 0);
assertSpyCalls(respond, 0);
assertSpyCalls(select, 1);
assertSpyCalls(next, 1);
assert(initResponse === response);
});
it("should request what does not include precondition headers and custom precondition headers", async () => {
const initRequest = new Request("test:", {
headers: {
[ConditionalHeader.IfNoneMatch]: "",
[ConditionalHeader.IfMatch]: "",
[ConditionalHeader.IfModifiedSince]: "",
[ConditionalHeader.IfRange]: "",
[ConditionalHeader.IfUnmodifiedSince]: "",
"x-precondition": "",
"x-test": "",
},
});
const select = spy(async (request: Request) => {
assert(
await equalsRequest(
request,
new Request("test:", {
headers: {
"x-test": "",
},
}),
),
);
return new Response(null, { status: Status.NotFound });
});
const initResponse = new Response();
const next = spy(() => initResponse);
const evaluate = spy(() => true);
const respond = spy(() => {});
const response = await _handler(
select,
[{ field: ConditionalHeader.IfNoneMatch, evaluate, respond }, {
field: "X-Precondition",
evaluate,
respond,
}],
initRequest,
next,
);
assertSpyCalls(select, 1);
assertSpyCalls(next, 1);
assert(initResponse === response);
});
it("should call next handler if the precondition evaluation result is ignore(void)", async () => {
const selectedResponse = new Response();
const select = spy(() => selectedResponse);
const initResponse = new Response();
const request = new Request("test:", { headers: { "test": "" } });
const next = spy(() => initResponse);
const evaluate = spy(() => {});
const respond = spy(() => {});
const response = await _handler(
select,
[{ field: "test", evaluate, respond }],
request,
next,
);
assertSpyCalls(respond, 0);
assertSpyCalls(evaluate, 1);
assertSpyCallArg(evaluate, 0, 0, request);
assertSpyCallArg(evaluate, 0, 1, selectedResponse);
assertSpyCalls(select, 1);
assertSpyCalls(next, 1);
assert(initResponse === response);
});
it("should call next handler if the precondition respond result is ignore(void)", async () => {
const selectedResponse = new Response();
const request = new Request("test:", { headers: { "test": "" } });
const select = spy(() => selectedResponse);
const initResponse = new Response();
const next = spy(() => initResponse);
const evaluate = spy(() => true);
const respond = spy(() => {});
const response = await _handler(
select,
[{ field: "test", evaluate, respond }],
request,
next,
);
assertSpyCalls(respond, 1);
assertSpyCallArg(respond, 0, 0, request);
assertSpyCallArg(respond, 0, 1, selectedResponse);
assertSpyCallArg(respond, 0, 2, true);
assertSpyCalls(evaluate, 1);
assertSpyCalls(select, 1);
assertSpyCalls(next, 1);
assert(initResponse === response);
});
it("should not call next handler if the precondition respond", async () => {
const selectedResponse = new Response();
const request = new Request("test:", { headers: { "test": "" } });
const select = spy(() => selectedResponse);
const initResponse = new Response();
const next = spy(() => initResponse);
const evaluate = spy(() => true);
const preResponse = new Response();
const respond = spy(() => preResponse);
const response = await _handler(
select,
[{ field: "test", evaluate, respond }],
request,
next,
);
assertSpyCalls(next, 0);
assertSpyCalls(respond, 1);
assertSpyCalls(evaluate, 1);
assertSpyCalls(select, 1);
assert(response === preResponse);
});
it("should call all precondition", async () => {
const selectedResponse = new Response();
const request = new Request("test:", {
headers: { "test": "", "test3": "" },
});
const select = spy(() => selectedResponse);
const initResponse = new Response();
const next = spy(() => initResponse);
const evaluate = spy(() => true);
const respond = spy(() => {});
const response = await _handler(
select,
[{ field: "test", evaluate, respond }, {
field: "test2",
evaluate,
respond,
}, { field: "test3", evaluate, respond }],
request,
next,
);
assertSpyCalls(next, 1);
assertSpyCalls(respond, 2);
assertSpyCalls(evaluate, 2);
assertSpyCalls(select, 1);
assert(response === initResponse);
});
});
describe("conditionalRequest", () => {
it("should return 304 response if request has if-none-match header", async () => {
const etag = `"text"`;
const selectRepresentation = spy(() =>
new Response(null, { headers: { etag } })
);
const middleware = conditionalRequest(selectRepresentation);
const request = new Request("test:", {
headers: { "if-none-match": etag },
});
const handler = spy(() => new Response());
const response = await middleware(request, handler);
assertSpyCalls(selectRepresentation, 1);
assertSpyCalls(handler, 0);
assert(
await equalsResponse(
response,
new Response(null, {
status: Status.NotModified,
headers: { [RepresentationHeader.ETag]: etag },
}),
true,
),
);
});
it("should return 412 response if request has if-none-match header and the response is not GET or HEAD", async () => {
const etag = `"text"`;
const selectRepresentation = spy(() =>
new Response(null, { headers: { etag } })
);
const middleware = conditionalRequest(selectRepresentation);
const request = new Request("test:", {
method: Method.Post,
headers: { "if-none-match": etag },
});
const handler = spy(() => new Response());
const response = await middleware(request, handler);
assertSpyCalls(selectRepresentation, 1);
assertSpyCalls(handler, 0);
assert(
await equalsResponse(
response,
new Response(null, { status: Status.PreconditionFailed }),
true,
),
);
});
it("should return 314 response if request has if-unmodified-since header", async () => {
const lastModified = new Date("2000/1/1").toUTCString();
const ifModifiedSince = new Date("2000/1/2").toUTCString();
const selectRepresentation = spy(() =>
new Response(null, {
headers: { [RepresentationHeader.LastModified]: lastModified },
})
);
const middleware = conditionalRequest(selectRepresentation);
const request = new Request("test:", {
headers: { [ConditionalHeader.IfModifiedSince]: ifModifiedSince },
});
const handler = spy(() => new Response());
const response = await middleware(request, handler);
assertSpyCalls(selectRepresentation, 1);
assertSpyCalls(handler, 0);
assert(
await equalsResponse(
response,
new Response(null, {
status: Status.NotModified,
headers: { [RepresentationHeader.LastModified]: lastModified },
}),
true,
),
);
});
it("should return 412 response if request has if-match header and not match", async () => {
const selectRepresentation = spy(() =>
new Response(null, {
headers: { [RepresentationHeader.ETag]: `"a"` },
})
);
const middleware = conditionalRequest(selectRepresentation);
const request = new Request("test:", {
headers: { [ConditionalHeader.IfMatch]: `"abc"` },
});
const handler = spy(() => new Response());
const response = await middleware(request, handler);
assertSpyCalls(selectRepresentation, 1);
assertSpyCalls(handler, 0);
assert(
await equalsResponse(
response,
new Response(null, {
status: Status.PreconditionFailed,
}),
true,
),
);
});
it("should return next response if request has if-match header and matched", async () => {
const selectRepresentation = spy(() =>
new Response(null, {
headers: { [RepresentationHeader.ETag]: `"a"` },
})
);
const middleware = conditionalRequest(selectRepresentation);
const request = new Request("test:", {
headers: { [ConditionalHeader.IfMatch]: `*` },
});
const initResponse = new Response();
const handler = spy(() => initResponse);
const response = await middleware(request, handler);
assertSpyCalls(selectRepresentation, 1);
assertSpyCalls(handler, 1);
assert(initResponse === response);
});
it("should return 412 response if request has if-unmodified-since header and not match", async () => {
const lastModified = new Date("2000/1/2").toUTCString();
const ifUnmodifiedSince = new Date("2000/1/1").toUTCString();
const selectRepresentation = spy(() =>
new Response(null, {
headers: { [RepresentationHeader.LastModified]: lastModified },
})
);
const middleware = conditionalRequest(selectRepresentation);
const request = new Request("test:", {
headers: { [ConditionalHeader.IfUnmodifiedSince]: ifUnmodifiedSince },
});
const handler = spy(() => new Response());
const response = await middleware(request, handler);
assertSpyCalls(selectRepresentation, 1);
assertSpyCalls(handler, 0);
assert(
await equalsResponse(
response,
new Response(null, {
status: Status.PreconditionFailed,
}),
true,
),
);
});
it("should return next response if request has if-unmodified-since header and match", async () => {
const lastModified = new Date("2000/1/1").toUTCString();
const ifUnmodifiedSince = new Date("2000/1/2").toUTCString();
const selectRepresentation = spy(() =>
new Response(null, {
headers: { [RepresentationHeader.LastModified]: lastModified },
})
);
const middleware = conditionalRequest(selectRepresentation);
const request = new Request("test:", {
headers: { [ConditionalHeader.IfUnmodifiedSince]: ifUnmodifiedSince },
});
const initResponse = new Response();
const handler = spy(() => initResponse);
const response = await middleware(request, handler);
assertSpyCalls(selectRepresentation, 1);
assertSpyCalls(handler, 1);
assert(response === initResponse);
});
it("should return 206 response if request has if-range and range header and match etag", async () => {
const ETAG = `""`;
const selectRepresentation = spy(() =>
new Response("abcdef", {
headers: { [RepresentationHeader.ETag]: ETAG },
})
);
const middleware = conditionalRequest(selectRepresentation);
const request = new Request("test:", {
headers: {
[ConditionalHeader.IfRange]: ETAG,
[RangeHeader.Range]: "bytes=-3",
},
});
const handler = spy(() => new Response());
const response = await middleware(request, handler);
assertSpyCalls(selectRepresentation, 1);
assertSpyCalls(handler, 0);
assert(
await equalsResponse(
response,
new Response("def", {
status: Status.PartialContent,
headers: {
[RangeHeader.ContentRange]: "bytes 3-5/6",
[RepresentationHeader.ETag]: ETAG,
},
}),
true,
),
);
});
it("should return 206 response if request has if-range and range header and match last-modified", async () => {
const lastModified = new Date("2000/1/1").toUTCString();
const selectRepresentation = spy(() =>
new Response("abcdef", {
headers: { [RepresentationHeader.LastModified]: lastModified },
})
);
const middleware = conditionalRequest(selectRepresentation);
const request = new Request("test:", {
headers: {
[ConditionalHeader.IfRange]: lastModified,
[RangeHeader.Range]: "bytes=4-, -3",
},
});
const handler = spy(() => new Response());
const response = await middleware(request, handler);
const BOUNDARY = "1f8ac10f23c5b5bc1167bda84b833e5c057a77d2";
assertSpyCalls(selectRepresentation, 1);
assertSpyCalls(handler, 0);
assert(
await equalsResponse(
response,
new Response(
`--${BOUNDARY}
Content-Type: text/plain;charset=UTF-8
Content-Range: bytes 4-5/6
ef
--${BOUNDARY}
Content-Type: text/plain;charset=UTF-8
Content-Range: bytes 3-5/6
def
--${BOUNDARY}--`,
{
status: Status.PartialContent,
headers: {
[RepresentationHeader.LastModified]: lastModified,
[RepresentationHeader.ContentType]:
`multipart/byteranges; boundary=${BOUNDARY}`,
},
},
),
true,
),
);
});
it("should return next response if the filtered preconditions is empty", async () => {
const selectedRepresentation = new Response("<body>", {
headers: { etag: "<etag>" },
});
const selectRepresentation = spy(() => selectedRepresentation);
const middleware = conditionalRequest(selectRepresentation, {
preconditions: [],
});
const request = new Request("test:", {
headers: { "if-none-match": "<etag>" },
});
const handler = spy(() => selectedRepresentation);
const response = await middleware(request, handler);
assertSpyCalls(selectRepresentation, 0);
assertSpyCalls(handler, 1);
assert(selectedRepresentation === response);
});
});