primitive-iterator.js
3.69 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
'use strict';
var iteratorSymbol = require('es6-symbol').iterator
, toArray = require('es5-ext/array/to-array')
, Map = require('../../primitive')
, compare, mapToResults;
compare = function (a, b) {
if (!a.value) return -1;
if (!b.value) return 1;
return a.value[0].localeCompare(b.value[0]);
};
mapToResults = function (arr) {
return arr.sort().map(function (value) {
return { done: false, value: value };
});
};
module.exports = function (T) {
return {
"": function (a) {
var arr, it, y, z, map, result = [];
arr = [['raz', 'one'], ['dwa', 'two'], ['trzy', 'three'],
['cztery', 'four'], ['pięć', 'five']];
map = new Map(arr);
it = new T(map);
a(it[iteratorSymbol](), it, "@@iterator");
y = it.next();
result.push(y);
z = it.next();
a.not(y, z, "Recreate result");
result.push(z);
result.push(it.next());
result.push(it.next());
result.push(it.next());
a.deep(result.sort(compare), mapToResults(arr));
a.deep(y = it.next(), { done: true, value: undefined }, "End");
a.not(y, it.next(), "Recreate result on dead");
},
Emited: function (a) {
var arr, it, map, result = [];
arr = [['raz', 'one'], ['dwa', 'two'], ['trzy', 'three'],
['cztery', 'four'], ['pięć', 'five']];
map = new Map(arr);
it = new T(map);
result.push(it.next());
result.push(it.next());
map.set('sześć', 'six');
arr.push(['sześć', 'six']);
result.push(it.next());
map.delete('pięć');
arr.splice(4, 1);
result.push(it.next());
result.push(it.next());
a.deep(result.sort(compare), mapToResults(arr));
a.deep(it.next(), { done: true, value: undefined }, "End");
},
"Emited #2": function (a) {
var arr, it, map, result = [];
arr = [['raz', 'one'], ['dwa', 'two'], ['trzy', 'three'],
['cztery', 'four'], ['pięć', 'five'], ['sześć', 'six']];
map = new Map(arr);
it = new T(map);
result.push(it.next());
result.push(it.next());
map.set('siedem', 'seven');
map.delete('siedem');
result.push(it.next());
result.push(it.next());
map.delete('pięć');
arr.splice(4, 1);
result.push(it.next());
a.deep(result.sort(compare), mapToResults(arr));
a.deep(it.next(), { done: true, value: undefined }, "End");
},
"Emited: Clear #1": function (a) {
var arr, it, map, result = [];
arr = [['raz', 'one'], ['dwa', 'two'], ['trzy', 'three'],
['cztery', 'four'], ['pięć', 'five'], ['sześć', 'six']];
map = new Map(arr);
it = new T(map);
result.push(it.next());
result.push(it.next());
arr = [['raz', 'one'], ['dwa', 'two']];
map.clear();
a.deep(result.sort(compare), mapToResults(arr));
a.deep(it.next(), { done: true, value: undefined }, "End");
},
"Emited: Clear #2": function (a) {
var arr, it, map, result = [];
arr = [['raz', 'one'], ['dwa', 'two'], ['trzy', 'three'],
['cztery', 'four'], ['pięć', 'five'], ['sześć', 'six']];
map = new Map(arr);
it = new T(map);
result.push(it.next());
result.push(it.next());
map.clear();
map.set('foo', 'bru');
map.set('bar', 'far');
arr = [['raz', 'one'], ['dwa', 'two'], ['foo', 'bru'], ['bar', 'far']];
result.push(it.next());
result.push(it.next());
a.deep(result.sort(compare), mapToResults(arr));
a.deep(it.next(), { done: true, value: undefined }, "End");
},
Kinds: function (a) {
var arr = [['raz', 'one'], ['dwa', 'two']], map = new Map(arr);
a.deep(toArray(new T(map)).sort(), arr.sort(), "Default");
a.deep(toArray(new T(map, 'key+value')).sort(), arr.sort(),
"Key + Value");
a.deep(toArray(new T(map, 'value')).sort(), ['one', 'two'].sort(),
"Value");
a.deep(toArray(new T(map, 'key')).sort(), ['raz', 'dwa'].sort(),
"Key");
}
};
};