-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.test.js
814 lines (732 loc) · 19.7 KB
/
index.test.js
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
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
/* eslint-env mocha */
const test = require('node:test')
const qrate = require('./index.js')
const assert = require('assert')
// several tests of these tests are flakey with timing issues
// this.retries(3)
test('basics', async function () {
return new Promise((resolve, reject) => {
const callOrder = []
const delays = [40, 10, 60, 10]
// worker1: --1-4
// worker2: -2---3
// order of completion: 2,1,4,3
const q = qrate(function (task, callback) {
setTimeout(function () {
callOrder.push('process ' + task)
callback('error', 'arg') // eslint-disable-line
}, delays.shift())
}, 2)
q.push(1, function (err, arg) {
assert.equal(err, 'error')
assert.equal(arg, 'arg')
assert.equal(q.length(), 1)
callOrder.push('callback ' + 1)
})
q.push(2, function (err, arg) {
assert.equal(err, 'error')
assert.equal(arg, 'arg')
assert.equal(q.length(), 2)
callOrder.push('callback ' + 2)
})
q.push(3, function (err, arg) {
assert.equal(err, 'error')
assert.equal(arg, 'arg')
assert.equal(q.length(), 0)
callOrder.push('callback ' + 3)
})
q.push(4, function (err, arg) {
assert.equal(err, 'error')
assert.equal(arg, 'arg')
assert.equal(q.length(), 0)
callOrder.push('callback ' + 4)
})
assert.equal(q.length(), 4)
assert.equal(q.concurrency, 2)
q.drain = function () {
assert.deepEqual(callOrder, [
'process 2', 'callback 2',
'process 1', 'callback 1',
'process 4', 'callback 4',
'process 3', 'callback 3'
])
assert.equal(q.concurrency, 2)
assert.equal(q.length(), 0)
resolve()
}
})
})
test('default concurrency', async function () {
return new Promise((resolve, reject) => {
const callOrder = []
const delays = [40, 10, 60, 10]
// order of completion: 1,2,3,4
const q = qrate(function (task, callback) {
setTimeout(function () {
callOrder.push('process ' + task)
callback('error', 'arg') // eslint-disable-line
}, delays.shift())
})
q.push(1, function (err, arg) {
assert.equal(err, 'error')
assert.equal(arg, 'arg')
assert.equal(q.length(), 3)
callOrder.push('callback ' + 1)
})
q.push(2, function (err, arg) {
assert.equal(err, 'error')
assert.equal(arg, 'arg')
assert.equal(q.length(), 2)
callOrder.push('callback ' + 2)
})
q.push(3, function (err, arg) {
assert.equal(err, 'error')
assert.equal(arg, 'arg')
assert.equal(q.length(), 1)
callOrder.push('callback ' + 3)
})
q.push(4, function (err, arg) {
assert.equal(err, 'error')
assert.equal(arg, 'arg')
assert.equal(q.length(), 0)
callOrder.push('callback ' + 4)
})
assert.equal(q.length(), 4)
assert.equal(q.concurrency, 1)
q.drain = function () {
assert.deepEqual(callOrder, [
'process 1', 'callback 1',
'process 2', 'callback 2',
'process 3', 'callback 3',
'process 4', 'callback 4'
])
assert.equal(q.concurrency, 1)
assert.equal(q.length(), 0)
resolve()
}
})
})
test('zero concurrency', function () {
assert.throws(function () {
qrate(function (task, callback) {
callback(null, task)
}, 0)
})
})
test('rate limiting', async function () {
return new Promise((resolve, reject) => {
// this is a long-running test
// this.timeout(4000)
const callOrder = []
const delays = [40, 10, 60, 10]
// order of completion: 1,2,3,4
// create queue that only complete 1 task a second
const q = qrate(function (task, callback) {
setTimeout(function () {
callOrder.push('process ' + task)
callback('error', 'arg') // eslint-disable-line
}, delays.shift())
}, 1, 1)
const start = new Date().getTime()
q.push(1, function (err, arg) {
assert.equal(err, 'error')
assert.equal(arg, 'arg')
assert.equal(q.length(), 3)
callOrder.push('callback ' + 1)
})
q.push(2, function (err, arg) {
assert.equal(err, 'error')
assert.equal(arg, 'arg')
assert.equal(q.length(), 2)
callOrder.push('callback ' + 2)
})
q.push(3, function (err, arg) {
assert.equal(err, 'error')
assert.equal(arg, 'arg')
assert.equal(q.length(), 1)
callOrder.push('callback ' + 3)
})
q.push(4, function (err, arg) {
assert.equal(err, 'error')
assert.equal(arg, 'arg')
assert.equal(q.length(), 0)
callOrder.push('callback ' + 4)
})
assert.equal(q.length(), 4)
assert.equal(q.concurrency, 1)
q.drain = function () {
assert.deepEqual(callOrder, [
'process 1', 'callback 1',
'process 2', 'callback 2',
'process 3', 'callback 3',
'process 4', 'callback 4'
])
assert.equal(q.concurrency, 1)
assert.equal(q.length(), 0)
q.kill()
// with 4 tasks, running at 1 per second
// this test should take over 3 seconds
assert.equal((new Date().getTime() - start > 3), true)
resolve()
}
})
})
test('error propagation', async function () {
return new Promise((resolve, reject) => {
const results = []
const q = qrate(function (task, callback) {
callback(task.name === 'foo' ? new Error('fooError') : null)
}, 2)
q.drain = function () {
assert.deepEqual(results, ['bar', 'fooError'])
resolve()
}
q.push({ name: 'bar' }, function (err) {
if (err) {
results.push('barError')
return
}
results.push('bar')
})
q.push({ name: 'foo' }, function (err) {
if (err) {
results.push('fooError')
return
}
results.push('foo')
})
})
})
// The original queue implementation allowed the concurrency to be changed only
// on the same event loop during which a task was added to the queue. This
// test attempts to be a more robust test.
// Start with a concurrency of 1. Wait until a leter event loop and change
// the concurrency to 2. Wait again for a later loop then verify the concurrency
// Repeat that one more time by chaning the concurrency to 5.
test('changing concurrency', async function () {
return new Promise((resolve, reject) => {
const q = qrate(function (task, callback) {
setTimeout(function () {
callback()
}, 10)
}, 1)
for (let i = 0; i < 50; i++) {
q.push('')
}
q.drain = function () {
resolve()
}
setTimeout(function () {
assert.equal(q.concurrency, 1)
q.concurrency = 2
setTimeout(function () {
assert.equal(q.running(), 2)
q.concurrency = 5
setTimeout(function () {
assert.equal(q.running(), 5)
}, 40)
}, 40)
}, 40)
})
})
test('push without callback', async function () {
return new Promise((resolve, reject) => {
const callOrder = []
const delays = [40, 10, 60, 10]
const concurrencyList = []
let running = 0
// worker1: --1-4
// worker2: -2---3
// order of completion: 2,1,4,3
const q = qrate(function (task, callback) {
running++
concurrencyList.push(running)
setTimeout(function () {
callOrder.push('process ' + task)
running--
callback('error', 'arg') // eslint-disable-line
}, delays.shift())
}, 2)
q.push(1)
q.push(2)
q.push(3)
q.push(4)
q.drain = function () {
assert.equal(running, 0)
assert.deepEqual(concurrencyList, [1, 2, 2, 2])
assert.deepEqual(callOrder, [
'process 2',
'process 1',
'process 4',
'process 3'
])
resolve()
}
})
})
test('push with non-function', function () {
const q = qrate(function () {}, 1)
assert.throws(function () {
q.push({}, 1)
})
})
test('unshift', async function () {
return new Promise((resolve, reject) => {
const queueOrder = []
const q = qrate(function (task, callback) {
queueOrder.push(task)
callback()
}, 1)
q.unshift(4)
q.unshift(3)
q.unshift(2)
q.unshift(1)
setTimeout(function () {
assert.deepEqual(queueOrder, [1, 2, 3, 4])
resolve()
}, 100)
})
})
test('too many callbacks', async function () {
return new Promise((resolve, reject) => {
const q = qrate(function (task, callback) {
callback()
assert.throws(function () {
callback()
})
resolve()
}, 2)
q.push(1)
})
})
test('bulk task', async function () {
return new Promise((resolve, reject) => {
const callOrder = []
const delays = [40, 10, 60, 10]
// worker1: --1-4
// worker2: -2---3
// order of completion: 2,1,4,3
const q = qrate(function (task, callback) {
setTimeout(function () {
callOrder.push('process ' + task)
callback('error', task) // eslint-disable-line
}, delays.splice(0, 1)[0])
}, 2)
q.push([1, 2, 3, 4], function (err, arg) {
assert.equal(err, 'error')
callOrder.push('callback ' + arg)
})
assert.equal(q.length(), 4)
assert.equal(q.concurrency, 2)
q.drain = function () {
assert.deepEqual(callOrder, [
'process 2', 'callback 2',
'process 1', 'callback 1',
'process 4', 'callback 4',
'process 3', 'callback 3'
])
assert.equal(q.concurrency, 2)
assert.equal(q.length(), 0)
resolve()
}
})
})
test('idle', async function () {
return new Promise((resolve, reject) => {
const q = qrate(function (task, callback) {
// Queue is busy when workers are running
assert.equal(q.idle(), false)
callback()
}, 1)
// Queue is idle before anything added
assert.equal(q.idle(), true)
q.unshift(4)
q.unshift(3)
q.unshift(2)
q.unshift(1)
// Queue is busy when tasks added
assert.equal(q.idle(), false)
q.drain = function () {
// Queue is idle after drain
assert.equal(q.idle(), true)
resolve()
}
})
})
test('pause', async function () {
return new Promise((resolve, reject) => {
const callOrder = []
let running = 0
const concurrencyList = []
const pauseCalls = ['process 1', 'process 2', 'process 3']
const q = qrate(function (task, callback) {
running++
callOrder.push('process ' + task)
concurrencyList.push(running)
setTimeout(function () {
running--
callback()
}, 10)
}, 2)
q.push(1)
q.push(2, after2)
q.push(3)
function after2 () {
q.pause()
assert.deepEqual(concurrencyList, [1, 2, 2])
assert.deepEqual(callOrder, pauseCalls)
setTimeout(whilePaused, 5)
setTimeout(afterPause, 10)
}
function whilePaused () {
q.push(4)
}
function afterPause () {
assert.deepEqual(concurrencyList, [1, 2, 2])
assert.deepEqual(callOrder, pauseCalls)
q.resume()
q.push(5)
q.push(6)
q.drain = drain
}
function drain () {
assert.deepEqual(concurrencyList, [1, 2, 2, 1, 2, 2])
assert.deepEqual(callOrder, [
'process 1',
'process 2',
'process 3',
'process 4',
'process 5',
'process 6'
])
resolve()
}
})
})
test('pause in worker with concurrency', async function () {
return new Promise((resolve, reject) => {
const callOrder = []
const q = qrate(function (task, callback) {
if (task.isLongRunning) {
q.pause()
setTimeout(function () {
callOrder.push(task.id)
q.resume()
callback()
}, 50)
} else {
callOrder.push(task.id)
setTimeout(callback, 10)
}
}, 10)
q.push({ id: 1, isLongRunning: true })
q.push({ id: 2 })
q.push({ id: 3 })
q.push({ id: 4 })
q.push({ id: 5 })
q.drain = function () {
assert.deepEqual(callOrder, [1, 2, 3, 4, 5])
resolve()
}
})
})
test('start paused', async function () {
return new Promise((resolve, reject) => {
const q = qrate(function (task, callback) {
setTimeout(function () {
callback()
}, 40)
}, 2)
q.pause()
q.push([1, 2, 3])
setTimeout(function () {
assert.equal(q.running(), 0)
q.resume()
}, 5)
setTimeout(function () {
assert.equal(q.length(), 1)
assert.equal(q.running(), 2)
q.resume()
}, 15)
q.drain = function () {
resolve()
}
})
})
test('kill', async function () {
return new Promise((resolve, reject) => {
const q = qrate(function () {
setTimeout(function () {
throw new Error('Function should never be called')
}, 20)
}, 1)
q.drain = function () {
throw new Error('Function should never be called')
}
q.push(0)
q.kill()
setTimeout(function () {
assert.equal(q.length(), 0)
resolve()
}, 40)
})
})
test('events', async function () {
return new Promise((resolve, reject) => {
const calls = []
const q = qrate(function (task, cb) {
// nop
calls.push('process ' + task)
setTimeout(cb, 10)
}, 3)
q.concurrency = 3
q.saturated = function () {
assert.equal(q.running(), 3) // queue should be saturated now
calls.push('saturated')
}
q.empty = function () {
assert.equal(q.length(), 0) // queue should be empty now
calls.push('empty')
}
q.drain = function () {
// queue should be empty now and no more workers should be running
assert.equal(q.length(), 0)
assert.equal(q.running(), 0)
calls.push('drain')
assert.deepEqual(calls, [
'process foo',
'process bar',
'saturated',
'process zoo',
'foo cb',
'saturated',
'process poo',
'bar cb',
'empty',
'saturated',
'process moo',
'zoo cb',
'poo cb',
'moo cb',
'drain'
])
resolve()
}
q.push('foo', function () { calls.push('foo cb') })
q.push('bar', function () { calls.push('bar cb') })
q.push('zoo', function () { calls.push('zoo cb') })
q.push('poo', function () { calls.push('poo cb') })
q.push('moo', function () { calls.push('moo cb') })
})
})
test('empty', async function () {
return new Promise((resolve, reject) => {
const calls = []
const q = qrate(function (task, cb) {
// nop
calls.push('process ' + task)
setImmediate(cb)
}, 3)
q.drain = function () {
// queue should be empty now and no more workers should be running
assert.equal(q.length(), 0)
assert.equal(q.running(), 0)
calls.push('drain')
assert.deepEqual(calls, ['drain'])
resolve()
}
q.push([])
})
})
// #1367
test('empty and not idle()', async function () {
return new Promise((resolve, reject) => {
const calls = []
const q = qrate(function (task, cb) {
// nop
calls.push('process ' + task)
setImmediate(cb)
}, 1)
q.empty = function () {
calls.push('empty')
assert.equal(q.idle(), false) // tasks should be running when empty is called
assert.equal(q.running(), 1)
}
q.drain = function () {
calls.push('drain')
assert.deepEqual(calls, [
'empty',
'process 1',
'drain'
])
resolve()
}
q.push(1)
})
})
test('saturated', async function () {
return new Promise((resolve, reject) => {
let saturatedCalled = false
const q = qrate(function (task, cb) {
setImmediate(cb)
}, 2)
q.saturated = function () {
saturatedCalled = true
}
q.drain = function () {
assert.equal(saturatedCalled, true) // saturated not called
resolve()
}
q.push(['foo', 'bar', 'baz', 'moo'])
})
})
test('started', async function () {
return new Promise((resolve, reject) => {
const q = qrate(function (task, cb) {
cb(null, task)
})
assert.equal(q.started, false)
q.push([])
assert.equal(q.started, true)
resolve()
})
})
test('should call the saturated callback if tasks length is concurrency', async function () {
return new Promise((resolve, reject) => {
const calls = []
const q = qrate(function (task, cb) {
calls.push('process ' + task)
setImmediate(cb)
}, 4)
q.saturated = function () {
calls.push('saturated')
}
q.empty = function () {
setTimeout(function () {
assert.deepEqual(calls, [
'process foo0',
'process foo1',
'process foo2',
'saturated',
'process foo3',
'foo0 cb',
'saturated',
'process foo4',
'foo1 cb',
'foo2 cb',
'foo3 cb',
'foo4 cb'
])
resolve()
}, 50)
}
q.push('foo0', function () { calls.push('foo0 cb') })
q.push('foo1', function () { calls.push('foo1 cb') })
q.push('foo2', function () { calls.push('foo2 cb') })
q.push('foo3', function () { calls.push('foo3 cb') })
q.push('foo4', function () { calls.push('foo4 cb') })
})
})
test('should have a default buffer property that equals 25% of the concurrenct rate', async function () {
return new Promise((resolve, reject) => {
const calls = []
const q = qrate(function (task, cb) {
// nop
calls.push('process ' + task)
setImmediate(cb)
}, 10)
assert.equal(q.buffer, 2.5)
resolve()
})
})
test('should allow a user to change the buffer property', async function () {
return new Promise((resolve, reject) => {
const calls = []
const q = qrate(function (task, cb) {
// nop
calls.push('process ' + task)
setImmediate(cb)
}, 10)
q.buffer = 4
assert.notEqual(q.buffer, 2.5)
assert.equal(q.buffer, 4)
resolve()
})
})
test('should call the unsaturated callback if tasks length is less than concurrency minus buffer', async function () {
return new Promise((resolve, reject) => {
const calls = []
const q = qrate(function (task, cb) {
calls.push('process ' + task)
setImmediate(cb)
}, 4)
q.unsaturated = function () {
calls.push('unsaturated')
}
q.empty = function () {
assert.equal(calls.indexOf('unsaturated') > 1, true)
setTimeout(function () {
assert.deepEqual(calls, [
'process foo0',
'process foo1',
'process foo2',
'process foo3',
'foo0 cb',
'unsaturated',
'process foo4',
'foo1 cb',
'unsaturated',
'foo2 cb',
'unsaturated',
'foo3 cb',
'unsaturated',
'foo4 cb',
'unsaturated'
])
resolve()
}, 50)
}
q.push('foo0', function () { calls.push('foo0 cb') })
q.push('foo1', function () { calls.push('foo1 cb') })
q.push('foo2', function () { calls.push('foo2 cb') })
q.push('foo3', function () { calls.push('foo3 cb') })
q.push('foo4', function () { calls.push('foo4 cb') })
})
})
test('remove', async function () {
return new Promise((resolve, reject) => {
const result = []
const q = qrate(function (data, cb) {
result.push(data)
setImmediate(cb)
})
q.push([1, 2, 3, 4, 5])
q.remove(function (node) {
return node.data === 3
})
q.drain = function () {
assert.deepEqual(result, [1, 2, 4, 5])
resolve()
}
})
})
test('promises', async function () {
return new Promise((resolve, reject) => {
const q = qrate(async (task, callback) => {
return new Promise((resolve, reject) => {
setImmediate(() => {
resolve({ ok: true, task })
})
})
}, 2)
q.push(1)
q.push(2)
assert.equal(q.length(), 2)
assert.equal(q.concurrency, 2)
q.drain = function () {
assert.equal(q.concurrency, 2)
assert.equal(q.length(), 0)
resolve()
}
})
})