-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathtest.js
More file actions
416 lines (351 loc) · 8.59 KB
/
test.js
File metadata and controls
416 lines (351 loc) · 8.59 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
416
'use strict'
/* eslint-env mocha */
const co = require('co')
const compose = require('..')
const assert = require('assert')
function wait (ms) {
return new Promise((resolve) => setTimeout(resolve, ms || 1))
}
describe('Koa Compose', function () {
it('should work', function () {
var arr = []
var stack = []
stack.push(function * (context, next) {
arr.push(1)
yield wait(1)
yield next()
yield wait(1)
arr.push(6)
})
stack.push(function * (context, next) {
arr.push(2)
yield wait(1)
yield next()
yield wait(1)
arr.push(5)
})
stack.push(function * (context, next) {
arr.push(3)
yield wait(1)
yield next()
yield wait(1)
arr.push(4)
})
return compose(stack.map((fn) => co.wrap(fn)))({}).then(function () {
arr.should.eql([1, 2, 3, 4, 5, 6])
})
})
it('should be able to be called twice', () => {
var stack = []
stack.push(function * (context, next) {
context.arr.push(1)
yield wait(1)
yield next()
yield wait(1)
context.arr.push(6)
})
stack.push(function * (context, next) {
context.arr.push(2)
yield wait(1)
yield next()
yield wait(1)
context.arr.push(5)
})
stack.push(function * (context, next) {
context.arr.push(3)
yield wait(1)
yield next()
yield wait(1)
context.arr.push(4)
})
const fn = compose(stack.map((fn) => co.wrap(fn)))
const ctx1 = { arr: [] }
const ctx2 = { 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 wrap functions with wrappers', function () {
var arr = []
var stack = []
stack.push(function * (context, next) {
arr.push(1)
yield wait(1)
yield next()
yield wait(1)
arr.push(6)
})
stack.push(function * (context, next) {
arr.push(2)
yield wait(1)
yield next()
yield wait(1)
arr.push(5)
})
stack.push(function * (context, next) {
arr.push(3)
yield wait(1)
yield next()
yield wait(1)
arr.push(4)
})
return compose(stack)({
wrappers: [co.wrap]
}).then(function () {
arr.should.eql([1, 2, 3, 4, 5, 6])
})
})
it('should use wrappers in the correct order', function () {
let completed = []
let stack = []
let arr = []
stack.push(function * (context, next) {
arr.push(1)
yield next()
})
stack.push(function * (context, next) {
arr.push(2)
yield next()
})
return compose(stack)({
wrappers: [co.wrap, function (fn) {
return (ctx, next) => fn(ctx, next).then(completed.push(fn))
}]
}).then(function () {
arr.should.eql([1, 2])
completed.length.should.eql(stack.length)
})
})
it('should only accept an array', function () {
var err
try {
(compose()).should.throw()
} catch (e) {
err = e
}
return (err).should.be.instanceof(TypeError)
})
it('should throw an error if calling generators or non-functions', function () {
var stack = [
function * () {}
]
return compose(stack)({}).then(function () {
throw new Error('No error thrown')
}).catch(function (err) {
(err).should.be.instanceof(TypeError)
}).then(function () {
stack = [
{ key: 'value' }
]
return compose(stack)({})
}).then(function () {
throw new Error('No error thrown')
}).catch(function (err) {
(err).should.be.instanceof(TypeError)
})
})
it('should work with 0 middleware', function () {
return compose([])({})
})
it('should only accept middleware as functions', function () {
var err
try {
(compose([{}])).should.throw()
} catch (e) {
err = e
}
return (err).should.be.instanceof(TypeError)
})
it('should work when yielding at the end of the stack', function () {
var stack = []
var called = false
stack.push(function * (ctx, next) {
yield next()
called = true
})
return compose(stack.map(co.wrap))({}).then(function () {
assert(called)
})
})
it('should reject on errors in middleware', function () {
var stack = []
stack.push(function * () { throw new Error() })
return compose(stack.map(co.wrap))({})
.then(function () {
throw new Error('promise was not rejected')
})
.catch(function (e) {
e.should.be.instanceof(Error)
})
})
it('should work when yielding at the end of the stack with yield*', function () {
var stack = []
stack.push(function * (ctx, next) {
yield next
})
compose(stack.map(co.wrap))({})
})
it('should keep the context', function () {
var ctx = {}
var stack = []
stack.push(function * (ctx2, next) {
yield next()
ctx2.should.equal(ctx)
})
stack.push(function * (ctx2, next) {
yield next()
ctx2.should.equal(ctx)
})
stack.push(function * (ctx2, next) {
yield next()
ctx2.should.equal(ctx)
})
return compose(stack.map(co.wrap))(ctx)
})
it('should catch downstream errors', function () {
var arr = []
var stack = []
stack.push(function * (ctx, next) {
arr.push(1)
try {
arr.push(6)
yield next()
arr.push(7)
} catch (err) {
arr.push(2)
}
arr.push(3)
})
stack.push(function * (ctx, next) {
arr.push(4)
throw new Error()
// arr.push(5)
})
return compose(stack.map(co.wrap))({}).then(function () {
arr.should.eql([1, 6, 4, 2, 3])
})
})
it('should compose w/ next', function () {
var called = false
return compose([])({}, co.wrap(function * () {
called = true
})).then(function () {
assert(called)
})
})
it('should handle errors in wrapped non-async functions', function () {
var stack = []
stack.push(function () {
throw new Error()
})
return compose(stack.map(co.wrap))({}).then(function () {
throw new Error('promise was not rejected')
}).catch(function (e) {
e.should.be.instanceof(Error)
})
})
// https://github.com/koajs/compose/pull/27#issuecomment-143109739
it('should compose w/ other compositions', function () {
var called = []
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', function () {
return compose([
co.wrap(function * (ctx, next) {
yield next()
yield next()
})
])({}).then(() => {
throw new Error('boom')
}, (err) => {
assert(/multiple times/.test(err.message))
})
})
it('should return a valid middleware', function () {
var val = 0
compose([
compose([
(ctx, next) => {
val++
return next()
},
(ctx, next) => {
val++
return next()
}
]),
(ctx, next) => {
val++
return next()
}
])({}).then(function () {
val.should.equal(3)
})
})
it('should return last return value', function () {
var stack = []
stack.push(function * (context, next) {
var val = yield next()
val.should.equal(2)
return 1
})
stack.push(function * (context, next) {
var val = yield next()
val.should.equal(0)
return 2
})
var next = () => 0
return compose(stack.map(co.wrap))({}, next).then(function (val) {
val.should.equal(1)
})
})
it('should not affect the original middleware array', () => {
const middleware = []
const fn1 = (ctx, next) => {
return next()
}
middleware.push(fn1)
for (const fn of middleware) {
assert.equal(fn, fn1)
}
compose(middleware)
for (const fn of middleware) {
assert.equal(fn, fn1)
}
})
it('should not get stuck on the passed in next', () => {
const middleware = [(ctx, next) => {
ctx.middleware++
return next()
}]
const ctx = {
middleware: 0,
next: 0
}
return compose(middleware)(ctx, (ctx, next) => {
ctx.next++
return next()
}).then(() => {
ctx.should.eql({ middleware: 1, next: 1 })
})
})
})