-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtest-serialOrdered-array.js
318 lines (262 loc) · 8.69 KB
/
test-serialOrdered-array.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
/* eslint no-sparse-arrays: "off" */
var test = require('tape').test
, serialOrdered = require('../').serialOrdered
;
test('serialOrdered: iterates over array with no sortMethod', function(t)
{
var source = [ 1, 2, 3, 4, 3, 2, 1 ]
, expected = [ 'A', 'B', 'C', 'D', 'C', 'B', 'A' ]
, index = 0
;
t.plan(expected.length * 2 + 2);
serialOrdered(source, function(item, key, cb)
{
t.equal(index, key, 'expect key (' + key + ') for the iteration to match incremental index (' + index + ')');
t.equal(source[index], item, 'expect item of the iteration to match incremental source element with index position');
setTimeout(cb.bind(null, null, String.fromCharCode(64 + item)), 10 * item);
index++;
},
null, // force no sortMethod
function(err, result)
{
t.error(err, 'expect no errors');
t.deepEqual(result, expected, 'expect result to be an ordered letters array');
});
});
test('serialOrdered: iterates over array sorted ascending', function(t)
{
var source = [ 1, 2, 3, 4, 3, 2, 1 ]
, expected = [ 'A', 'B', 'C', 'D', 'C', 'B', 'A' ]
, prev = Math.min.apply(Math, source)
;
t.plan(expected.length * 2 + 2);
serialOrdered(source, function(item, key, cb)
{
t.ok(prev <= item, 'expect item not to decrease on each iteration – ascending sorting');
t.equal(source[key], item, 'expect iteration indices to match original array positions');
cb(null, String.fromCharCode(64 + item));
// this should happen before next invocation of the iterator
prev = item;
},
serialOrdered.ascending, // sort ascending
function(err, result)
{
t.error(err, 'expect no errors');
t.deepEqual(result, expected, 'expect result to keep order of the original array');
});
});
test('serialOrdered: iterates over array sorted descending', function(t)
{
var source = [ 1, 2, 3, 4, 3, 2, 1 ]
, expected = [ 'A', 'B', 'C', 'D', 'C', 'B', 'A' ]
, prev = Math.max.apply(Math, source)
;
t.plan(expected.length * 2 + 2);
serialOrdered(source, function(item, key, cb)
{
t.ok(prev >= item, 'expect item not to increase on each iteration – descending sorting');
t.equal(source[key], item, 'expect iteration indices to match original array positions');
setTimeout(cb.bind(null, null, String.fromCharCode(64 + item)), 10 * item);
prev = item;
},
serialOrdered.descending, // sort descending
function(err, result)
{
t.error(err, 'expect no errors');
t.deepEqual(result, expected, 'expect result to keep order of the original array');
});
});
test('serialOrdered: iterates over array custom sorted', function(t)
{
var source = [ 1, 2, 3, 4, 3, 2, 1 ]
, expected = [ 'A', 'B', 'C', 'D', 'C', 'B', 'A' ]
// get smallest even number
, prev = Math.min.apply(Math, source.filter(function(n){ return !(n % 2); }))
// puts even numbers first
, customSort = function(a, b)
{
var order = a < b ? -1 : a > b ? 1 : 0
, aOdd = a % 2
, bOdd = b % 2
;
return aOdd === bOdd ? order : aOdd ? 1 : -1;
}
;
t.plan(expected.length * 2 + 2);
serialOrdered(source, function(item, key, cb)
{
var incr = prev <= item
, shift = (prev % 2) !== (item % 2)
;
t.ok(incr || shift, 'expect item (' + item + ') to increase on each iteration, unless it is switch from even to odd');
t.equal(source[key], item, 'expect iteration indices to match original array positions');
setTimeout(cb.bind(null, null, String.fromCharCode(64 + item)), 10 * item);
prev = item;
},
customSort, // custom sorting
function(err, result)
{
t.error(err, 'expect no errors');
t.deepEqual(result, expected, 'expect result to keep order of the original array');
});
});
test('serialOrdered: array: terminates early with custom sorting', function(t)
{
var source = [ 1, 1, 4, 5, 16, 66, 34, 9, 8, 2 ]
// even numbers below 10
, expectedResult = [ , , 4, , , , , , 8, 2 ]
// ascending even numbers below 10
// and 16 as next even number 16
, expectedTarget = [ 2, 4, 8, 16 ]
// puts even numbers first
, customSort = function(a, b)
{
var order = a < b ? -1 : a > b ? 1 : 0
, aOdd = a % 2
, bOdd = b % 2
;
return aOdd === bOdd ? order : aOdd ? 1 : -1;
}
, target = []
;
t.plan(expectedTarget.length + 3);
serialOrdered(source, function(item, cb)
{
var id = setTimeout(function()
{
t.ok((item < 10 && item % 2 === 0) || item == 16, 'expect only certain (even) numbers being processed');
target.push(item);
if (item < 10)
{
cb(null, item);
}
// return error on big numbers
else
{
cb({item: item});
}
}, 5 * item);
return clearTimeout.bind(null, id);
},
customSort, // custom sort
function(err, result)
{
t.equal(err.item, 16, 'expect to error out on 16');
t.deepEqual(result, expectedResult, 'expect result to contain processed parts that less than 10 of the source array');
t.deepEqual(target, expectedTarget, 'expect target to contain passed numbers');
});
});
test('serialOrdered: array: terminated early from outside, with custom sorting', function(t)
{
var source = [ 1, 1, 4, 5, 16, 66, 34, 9, 8, 2 ]
// even numbers below 10
, expectedResult = [ , , 4, , , , , , 8, 2 ]
// ascending even numbers below 10
, expectedTarget = [ 2, 4, 8 ]
// puts even numbers first
, customSort = function(a, b)
{
var order = a < b ? -1 : a > b ? 1 : 0
, aOdd = a % 2
, bOdd = b % 2
;
return aOdd === bOdd ? order : aOdd ? 1 : -1;
}
, target = []
, limitNum = 10
, terminator
;
t.plan(expectedTarget.length + 3);
setTimeout(function()
{
terminator();
}, 5 * (limitNum + expectedTarget.reduce(function(a, b){ return a + b; })));
terminator = serialOrdered(source, function(item, cb)
{
var id = setTimeout(function()
{
t.ok((item < limitNum && item % 2 === 0), 'expect only even numbers (' + item + ') less than (' + limitNum + ') being processed');
target.push(item);
cb(null, item);
}, 5 * item);
return clearTimeout.bind(null, id);
},
customSort, // custom sort
function(err, result)
{
t.error(err, 'expect no error response');
t.deepEqual(result, expectedResult, 'expect result to contain processed parts that less than ' + limitNum + ' of the source array');
t.deepEqual(target, expectedTarget, 'expect target to contain passed numbers');
});
});
test('serialOrdered: array: terminated prematurely from outside, with custom sorting', function(t)
{
var source = [ 1, 1, 4, 5, 16, 66, 34, 9, 8, 2 ]
, expected = [ ]
// puts even numbers first
, customSort = function(a, b)
{
var order = a < b ? -1 : a > b ? 1 : 0
, aOdd = a % 2
, bOdd = b % 2
;
return aOdd === bOdd ? order : aOdd ? 1 : -1;
}
, terminator
;
t.plan(2);
terminator = serialOrdered(source, function(item, cb)
{
var id = setTimeout(function()
{
t.fail('do not expect it to come that far');
cb(null, item);
}, 5 * item);
return clearTimeout.bind(null, id);
},
customSort, // custom sort
function(err, result)
{
t.error(err, 'expect no error response');
t.deepEqual(result, expected, 'expect result to contain salvaged parts of the source array');
});
terminator();
});
test('serialOrdered: array: terminated too late from outside, with custom sorting', function(t)
{
var source = [ 1, 1, 4, 5, 16, 66, 34, 9, 8, 2 ]
, expectedResult = [ 1, 1, 4, 5, 16, 66, 34, 9, 8, 2 ]
, expectedTarget = [ 2, 4, 8, 16, 34, 66, 1, 1, 5, 9 ]
// puts even numbers first
, customSort = function(a, b)
{
var order = a < b ? -1 : a > b ? 1 : 0
, aOdd = a % 2
, bOdd = b % 2
;
return aOdd === bOdd ? order : aOdd ? 1 : -1;
}
, target = []
, terminator
;
t.plan(expectedTarget.length + 3);
terminator = serialOrdered(source, function(item, cb)
{
var id = setTimeout(function()
{
t.ok(source.indexOf(item) != -1, 'expect item (' + item + ') to exist in the subject array');
target.push(item);
cb(null, item);
}, 5 * item);
return clearTimeout.bind(null, id);
},
customSort, // custom sort
function(err, result)
{
// terminate it after it's done
terminator();
t.error(err, 'expect no error response');
t.deepEqual(result, expectedResult, 'expect result to contain processed parts of the source array');
t.deepEqual(target, expectedTarget, 'expect target to contain passed numbers');
});
});