-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtest-serialOrdered-object.js
400 lines (338 loc) · 12.3 KB
/
test-serialOrdered-object.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
var test = require('tape').test
, serialOrdered = require('../serialOrdered.js')
;
test('serialOrdered: iterates over object with no sortMethod', function(t)
{
var source = { first: 1, second: 2, third: 3, fourth: 4, three: 3, two: 2, one: 1 }
, keys = Object.keys(source)
, expected = { first: 'A', second: 'B', third: 'C', fourth: 'D', three: 'C', two: 'B', one: 'A' }
, index = 0
;
t.plan(keys.length * 2 + 2);
// supports full value, key, callback interface
serialOrdered(source, function(item, key, cb)
{
t.equal(keys[index], key, 'expect key (' + key + ') for the iteration to match incremental index (' + index + ':' + keys[index] + ')');
t.equal(source[key], item, 'expect item of the iteration to match incremental source element with key 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 object');
});
});
test('serialOrdered: iterates over object sorted ascending', function(t)
{
var source = { first: 1, second: 2, third: 3, fourth: 4, three: 3, two: 2, one: 1 }
, keys = Object.keys(source)
, expected = { first: 'A', second: 'B', third: 'C', fourth: 'D', three: 'C', two: 'B', one: 'A' }
, prev = 'a'
;
t.plan(keys.length * 2 + 2);
serialOrdered(source, function(item, key, cb)
{
t.ok(prev <= key, 'expect key (' + key + ') not to decrease on each iteration – ascending sorting');
t.equal(source[key], item, 'expect iteration indices to match original object positions');
setTimeout(cb.bind(null, null, String.fromCharCode(64 + item)), 10 * item);
prev = key;
},
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 object sorted descending (sync iterator)', function(t)
{
var source = { first: 1, second: 2, third: 3, fourth: 4, three: 3, two: 2, one: 1 }
, keys = Object.keys(source)
, expected = { first: 'A', second: 'B', third: 'C', fourth: 'D', three: 'C', two: 'B', one: 'A' }
, prev = 'zzz'
;
t.plan(keys.length * 2 + 2);
serialOrdered(source, function(item, key, cb)
{
t.ok(prev >= key, 'expect key (' + key + ') not to increase on each iteration – descending 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 = key;
},
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 object custom sorted', function(t)
{
var source = { first: 1, second : 2, third : 3, fourth : 4, three : 3, two : 2, one : 1 }
, keys = Object.keys(source)
, expected = { first: 'A', second: 'B', third: 'C', fourth: 'D', three: 'C', two: 'B', one: 'A' }
// separate vowels from consonants
, splitVowels = function(word)
{
var vowels = ['a', 'e', 'i', 'o', 'u']
, wordVow = word.split('').map(function(x){ return vowels.indexOf(x) == -1 ? '~' : x; }).join('')
, wordCon = word.split('').map(function(x){ return vowels.indexOf(x) == -1 ? x : '.'; }).join('')
;
return [wordVow, wordCon];
}
// sort words based on vowels and their position
, customSort = function(wordA, wordB)
{
wordA = splitVowels(wordA);
wordB = splitVowels(wordB);
return wordA[0] < wordB[0] ? -1 : (
wordA[0] > wordB[0] ? 1 : (
wordA[1] < wordB[1] ? -1 : wordA[1] > wordB[1] ? 1 : 0
)
);
}
// pre-sort list keys
, customSortedKeys = keys.sort(customSort)
, prev
;
t.plan(keys.length * 3 + 2);
serialOrdered(source, function(item, key, cb)
{
t.notEqual(customSortedKeys.indexOf(key), -1, 'expect key to be in the list');
t.ok(customSortedKeys.indexOf(prev) < customSortedKeys.indexOf(key), 'expect key (' + prev + ' -> ' + key + ') index (' + customSortedKeys.indexOf(prev) + ' -> ' + customSortedKeys.indexOf(key) + ') to increase on each iteration');
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 = key;
},
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: iterates over object custom sorted over values', function(t)
{
var source = { first: 1, second: 2, third: 3, fourth: 4, three: 3, two: 2, one: 1 }
, keys = Object.keys(source)
, values = keys.map(function(k){ return source[k]; })
, expected = { first: 'A', second: 'B', third: 'C', fourth: 'D', three: 'C', two: 'B', one: 'A' }
// get smallest even number
, prev = Math.min.apply(Math, values.filter(function(n){ return !(n % 2); }))
// puts even numbers first
, evenOddSort = 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;
}
, customSort = function(keyA, keyB)
{
return evenOddSort(source[keyA], source[keyB]);
}
;
t.plan(keys.length * 2 + 2);
serialOrdered(source, function(item, key, cb)
{
var incr = prev <= item
, shift = (prev % 2) !== (item % 2)
;
t.ok(incr || shift, 'expect item (' + prev + ' -> ' + 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: object: terminates early with custom sorting', function(t)
{
var source = { first: 1, one : 1, four: 4, five: 5, sixteen: 16, sixtyFour: 64, thirtyTwo: 32, nine: 9, eight: 8, two: 2 }
, salvaged = { eight: 8, four: 4, two : 2 }
, expected = [ 2, 4, 8, 16 ]
, target = []
// puts even numbers first
, evenOddSort = 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;
}
// sort based on the value of the key
// even values go first
, customSort = function(keyA, keyB)
{
return evenOddSort(source[keyA], source[keyB]);
}
;
t.plan(expected.length + 4);
serialOrdered(source, function(item, key, cb)
{
var id = setTimeout(function()
{
t.ok((item < 10 && item % 2 === 0) || item == 16, 'expect only certain numbers being processed');
target.push(item);
if (item < 10)
{
cb(null, item);
}
// return error on big numbers
else
{
cb({key: key, item: item});
}
}, 5 * item);
return clearTimeout.bind(null, id);
},
customSort, // custom sort
function(err, result)
{
t.equal(err.key, 'sixteen', 'expect to error out on key `sixteen`');
t.equal(err.item, 16, 'expect to error out on value `16`');
t.deepEqual(result, salvaged, 'expect result to contain processed parts that less than 10 of the source object');
t.deepEqual(target, expected, 'expect target to contain passed numbers');
});
});
test('serialOrdered: object: terminated early from outside, with custom sorting', function(t)
{
var source = { first: 1, one : 1, four: 4, five: 5, sixteen: 16, sixtyFour: 64, thirtyTwo: 32, nine: 9, eight: 8, two: 2 }
, salvaged = { eight: 8, four: 4, two : 2 }
// ascending even numbers below 10
, expected = [ 2, 4, 8 ]
// puts even numbers first
, evenOddSort = 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;
}
// sort based on the value of the key
// even values go first
, customSort = function(keyA, keyB)
{
return evenOddSort(source[keyA], source[keyB]);
}
, target = []
, limitNum = 10
, terminator
;
t.plan(expected.length + 3);
setTimeout(function()
{
terminator();
}, 5 * (limitNum + expected.reduce(function(a, b){ return a + b; })));
terminator = serialOrdered(source, function(item, key, cb)
{
var id = setTimeout(function()
{
t.ok((item < limitNum && item % 2 === 0), 'expect only even numbers (' + key + ':' + 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, salvaged, 'expect result to contain processed parts that less than ' + limitNum + ' of the source array');
t.deepEqual(target, expected, 'expect target to contain passed numbers');
});
});
test('serialOrdered: object: terminated prematurely from outside, with custom sorting', function(t)
{
var source = { first: 1, one : 1, four: 4, five: 5, sixteen: 16, sixtyFour: 64, thirtyTwo: 32, nine: 9, eight: 8, two: 2 }
, expected = { }
// puts even numbers first
, evenOddSort = 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;
}
// sort based on the value of the key
// even values go first
, customSort = function(keyA, keyB)
{
return evenOddSort(source[keyA], source[keyB]);
}
, 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: object: terminated too late from outside, with custom sorting', function(t)
{
var source = { first: 1, one: 1, four: 4, five: 5, sixteen: 16, sixtyFour: 64, thirtyTwo: 32, nine: 9, eight: 8, two: 2 }
, salvaged = { eight: 8, four: 4, two: 2, sixteen: 16, sixtyFour: 64, thirtyTwo: 32, first: 1, one: 1, five: 5, nine: 9 }
// ascending even numbers below 10
, expected = [ 2, 4, 8, 16, 32, 64, 1, 1, 5, 9 ]
// puts even numbers first
, evenOddSort = 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;
}
// sort based on the value of the key
// even values go first
, customSort = function(keyA, keyB)
{
return evenOddSort(source[keyA], source[keyB]);
}
, target = []
, terminator
;
t.plan(expected.length + 3);
terminator = serialOrdered(source, function(item, key, cb)
{
var id = setTimeout(function()
{
t.equal(source[key], item, 'expect item (' + key + ':' + item + ') to be equal ' + source[key]);
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, salvaged, 'expect result to contain processed parts of the source array');
t.deepEqual(target, expected, 'expect target to contain passed numbers');
});
});