deno.land / x / hooks@v0.6.5 / test / compose.test.ts

compose.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
// Adapted from koa-compose (https://github.com/koajs/compose)import * as assert from 'assert';import { compose, NextFunction } from '../src';
function wait (ms: number) { return new Promise((resolve) => setTimeout(resolve, ms || 1));}
function isPromise (x: any) { return x && typeof x.then === 'function';}
describe('Koa Compose', function () { it('should work', async () => { const arr: number[] = []; const stack = [];
stack.push(async (_context: any, next: NextFunction) => { arr.push(1); await wait(1); await next(); await wait(1); arr.push(6); });
stack.push(async (_context: any, next: NextFunction) => { arr.push(2); await wait(1); await next(); await wait(1); arr.push(5); });
stack.push(async (_context: any, next: NextFunction) => { arr.push(3); await wait(1); await next(); await wait(1); arr.push(4); });
await compose(stack)({});
assert.deepEqual(arr, [1, 2, 3, 4, 5, 6]); });
it('should be able to be called twice', () => { const stack = [];
stack.push(async (context: any, next: NextFunction) => { context.arr.push(1); await wait(1); await next(); await wait(1); context.arr.push(6); });
stack.push(async (context: any, next: NextFunction) => { context.arr.push(2); await wait(1); await next(); await wait(1); context.arr.push(5); });
stack.push(async (context: any, next: NextFunction) => { context.arr.push(3); await wait(1); await next(); await wait(1); context.arr.push(4); });
const fn = compose(stack); const ctx1: any = { arr: [] }; const ctx2: any = { arr: [] }; const out = [1, 2, 3, 4, 5, 6];
return fn(ctx1).then(() => { assert.deepEqual(out, ctx1.arr); return fn(ctx2); }).then(() => { assert.deepEqual(out, ctx2.arr); }); });
it('should only accept an array', async () => { // @ts-ignore await assert.throws(compose, { message: 'Middleware stack must be an array!' }); });
it('should create next functions that return a Promise', function () { const stack = []; const arr: any = []; for (let i = 0; i < 5; i++) { stack.push(async (_context: any, next: NextFunction) => { arr.push(next()); }); }
compose(stack)({});
for (const next of arr) { assert.ok(isPromise(next), 'one of the functions next is not a Promise'); } });
it('should work with 0 middleware', function () { return compose([])({}); });
it('should only accept middleware as functions', () => { // @ts-ignore assert.throws(() => compose([{}]), { message: 'Middleware must be composed of functions!' }); });
it('should work when yielding at the end of the stack', async () => { const stack = []; let called = false;
stack.push(async (_ctx: any, next: NextFunction) => { await next(); called = true; });
await compose(stack)({}); assert.ok(called); });
it('should reject on errors in middleware', () => { const stack = [];
stack.push(() => { throw new Error(); });
return compose(stack)({}) .then(function () { throw new Error('promise was not rejected'); }) .catch(function (e) { assert.ok(e instanceof Error); }); });
it('should work when yielding at the end of the stack with yield*', () => { const stack = [];
stack.push(async (_ctx: any, next: NextFunction) => { await next; });
return compose(stack)({}); });
it('should keep the context', () => { const ctx = {};
const stack = [];
stack.push(async (ctx2: any, next: NextFunction) => { await next(); assert.deepEqual(ctx2, ctx); });
stack.push(async (ctx2: any, next: NextFunction) => { await next(); assert.deepEqual(ctx2, ctx); });
stack.push(async (ctx2: any, next: NextFunction) => { await next(); assert.deepEqual(ctx2, ctx); });
return compose(stack)(ctx); });
it('should catch downstream errors', async () => { const arr: number[] = []; const stack = [];
stack.push(async (_ctx: any, next: NextFunction) => { arr.push(1); try { arr.push(6); await next(); arr.push(7); } catch (err) { arr.push(2); } arr.push(3); });
stack.push(async (_ctx: any, _next: NextFunction) => { arr.push(4); throw new Error(); });
await compose(stack)({}); assert.deepEqual(arr, [1, 6, 4, 2, 3]); });
it('should compose w/ next', () => { let called = false;
return compose([])({}, async () => { called = true; }).then(function () { assert.ok(called); }); });
it('should handle errors in wrapped non-async functions', () => { const stack = [];
stack.push(function () { throw new Error(); });
return compose(stack)({}).then(function () { throw new Error('promise was not rejected'); }).catch(function (e) { assert.ok(e instanceof Error); }); });
// https://github.com/koajs/compose/pull/27#issuecomment-143109739 it('should compose w/ other compositions', () => { const called: number[] = [];
return compose([ compose([ (_ctx, next) => { called.push(1); return next(); }, (_ctx, next) => { called.push(2); return next(); } ]), (_ctx, next) => { called.push(3); return next(); } ])({}).then(() => assert.deepEqual(called, [1, 2, 3])); });
it('should throw if next() is called multiple times', () => { return compose([ async (_ctx, next) => { await next(); await next(); } ])({}).then(() => { throw new Error('boom'); }, (err) => { assert.ok(/multiple times/.test(err.message)); }); });
it('should return a valid middleware', () => { let val = 0; return compose([ compose([ (_ctx, next) => { val++; return next(); }, (_ctx, next) => { val++; return next(); } ]), (_ctx, next) => { val++; return next(); } ])({}).then(function () { assert.strictEqual(val, 3); }); });
it('should return last return value', () => { const stack = [];
stack.push(async (_context: any, next: NextFunction) => { const val = await next(); assert.strictEqual(val, 2); return 1; });
stack.push(async (_context: any, next: NextFunction) => { const val = await next(); assert.strictEqual(val, 0); return 2; });
const next = async () => 0;
return compose(stack)({}, next).then(function (val) { assert.strictEqual(val, 1); }); });
it('should not affect the original middleware array', () => { const middleware = []; const fn1 = (_ctx: any, next: NextFunction) => { return next(); }; middleware.push(fn1);
for (const fn of middleware) { assert.strictEqual(fn, fn1); }
compose(middleware);
for (const fn of middleware) { assert.strictEqual(fn, fn1); } });
it('should not get stuck on the passed in next', () => { const middleware = [(_ctx: any, next: NextFunction) => { ctx.middleware++; return next(); }]; const ctx = { middleware: 0, next: 0 };
return compose(middleware)(ctx, async (ctx: any, next: NextFunction) => { ctx.next++; return next(); }).then(() => { assert.deepEqual(ctx, { middleware: 1, next: 1 }); }); });});
hooks

Version Info

Tagged at
3 years ago