-
-
Notifications
You must be signed in to change notification settings - Fork 804
/
Copy pathtest.js
252 lines (199 loc) · 6.48 KB
/
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
/**
* @license Apache-2.0
*
* Copyright (c) 2019 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
// MODULES //
var tape = require( 'tape' );
var proxyquire = require( 'proxyquire' );
var randu = require( '@stdlib/random/iter/randu' );
var array2iterator = require( '@stdlib/array/to-iterator' );
var iteratorSymbol = require( '@stdlib/symbol/iterator' );
var isnan = require( '@stdlib/math/base/assert/is-nan' );
var itercuminabs = require( './../lib' );
// TESTS //
tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.strictEqual( typeof itercuminabs, 'function', 'main export is a function' );
t.end();
});
tape( 'the function throws an error if provided an iterator argument which is not an iterator protocol-compliant object', function test( t ) {
var values;
var i;
values = [
'5',
5,
NaN,
true,
false,
null,
void 0,
{},
function noop() {}
];
for ( i = 0; i < values.length; i++ ) {
t.throws( badValue( values[i] ), TypeError, 'throws an error when provided '+values[i] );
}
t.end();
function badValue( value ) {
return function badValue() {
itercuminabs( value );
};
}
});
tape( 'the function returns an iterator protocol-compliant object which iteratively computes a cumulative minimum absolute value', function test( t ) {
var expected;
var actual;
var values;
var it;
var v;
var i;
values = [ 2.0, -3.0, -2.0, -4.0, 3.0, 4.0 ];
expected = [ 2.0, 2.0, 2.0, 2.0, 2.0, 2.0 ];
it = itercuminabs( array2iterator( values ) );
t.equal( it.next.length, 0, 'has zero arity' );
actual = [];
for ( i = 0; i < values.length; i++ ) {
v = it.next();
t.equal( typeof v.value, 'number', 'returns a number' );
t.equal( typeof v.done, 'boolean', 'returns a boolean' );
actual.push( v.value );
}
t.deepEqual( actual, expected, 'returns expected results' );
v = it.next();
t.equal( v.value, void 0, 'returns expected value' );
t.equal( v.done, true, 'returns expected value' );
t.end();
});
tape( 'if an iterated value is a non-numeric value, the computed minimum value is `NaN`', function test( t ) {
var expected;
var values;
var it;
var v;
var i;
values = [ 1.0, 2.0, NaN, 3.0 ];
expected = [ 1.0, 1.0, NaN, NaN ];
it = itercuminabs( array2iterator( values ) );
for ( i = 0; i < values.length; i++ ) {
v = it.next();
if ( isnan( expected[ i ] ) ) {
t.equal( isnan( v.value ), true, 'returns expected value for iteration '+i );
} else {
t.equal( v.value, expected[ i ], 'returns expected value for iteration '+i );
}
}
values = [ 1.0, 2.0, 'beep', 3.0 ];
expected = [ 1.0, 1.0, NaN, NaN ];
it = itercuminabs( array2iterator( values ) );
for ( i = 0; i < values.length; i++ ) {
v = it.next();
if ( isnan( expected[ i ] ) ) {
t.equal( isnan( v.value ), true, 'returns expected value for iteration '+i );
} else {
t.equal( v.value, expected[ i ], 'returns expected value for iteration '+i );
}
}
t.end();
});
tape( 'the returned iterator has a `return` method for closing an iterator (no argument)', function test( t ) {
var it;
var r;
it = itercuminabs( randu() );
r = it.next();
t.equal( typeof r.value, 'number', 'returns a number' );
t.equal( r.done, false, 'returns expected value' );
r = it.next();
t.equal( typeof r.value, 'number', 'returns a number' );
t.equal( r.done, false, 'returns expected value' );
r = it.return();
t.equal( r.value, void 0, 'returns expected value' );
t.equal( r.done, true, 'returns expected value' );
r = it.next();
t.equal( r.value, void 0, 'returns expected value' );
t.equal( r.done, true, 'returns expected value' );
t.end();
});
tape( 'the returned iterator has a `return` method for closing an iterator (argument)', function test( t ) {
var it;
var r;
it = itercuminabs( randu() );
r = it.next();
t.equal( typeof r.value, 'number', 'returns a number' );
t.equal( r.done, false, 'returns expected value' );
r = it.next();
t.equal( typeof r.value, 'number', 'returns a number' );
t.equal( r.done, false, 'returns expected value' );
r = it.return( 'finished' );
t.equal( r.value, 'finished', 'returns expected value' );
t.equal( r.done, true, 'returns expected value' );
r = it.next();
t.equal( r.value, void 0, 'returns expected value' );
t.equal( r.done, true, 'returns expected value' );
t.end();
});
tape( 'if an environment supports `Symbol.iterator` and the provided iterator is iterable, the returned iterator is iterable', function test( t ) {
var itercuminabs;
var opts;
var rand;
var it1;
var it2;
var i;
itercuminabs = proxyquire( './../lib/main.js', {
'@stdlib/symbol/iterator': '__ITERATOR_SYMBOL__'
});
opts = {
'seed': 12345
};
rand = randu( opts );
rand[ '__ITERATOR_SYMBOL__' ] = factory;
it1 = itercuminabs( rand );
t.equal( typeof it1[ '__ITERATOR_SYMBOL__' ], 'function', 'has method' );
t.equal( it1[ '__ITERATOR_SYMBOL__' ].length, 0, 'has zero arity' );
it2 = it1[ '__ITERATOR_SYMBOL__' ]();
t.equal( typeof it2, 'object', 'returns an object' );
t.equal( typeof it2.next, 'function', 'has method' );
t.equal( typeof it2.return, 'function', 'has method' );
for ( i = 0; i < 100; i++ ) {
t.equal( it2.next().value, it1.next().value, 'returns expected value' );
}
t.end();
function factory() {
return randu( opts );
}
});
tape( 'if an environment does not support `Symbol.iterator`, the returned iterator is not "iterable"', function test( t ) {
var itercuminabs;
var it;
itercuminabs = proxyquire( './../lib/main.js', {
'@stdlib/symbol/iterator': false
});
it = itercuminabs( randu() );
t.equal( it[ iteratorSymbol ], void 0, 'does not have property' );
t.end();
});
tape( 'if a provided iterator is not iterable, the returned iterator is not iterable', function test( t ) {
var itercuminabs;
var rand;
var it;
itercuminabs = proxyquire( './../lib/main.js', {
'@stdlib/symbol/iterator': '__ITERATOR_SYMBOL__'
});
rand = randu();
rand[ '__ITERATOR_SYMBOL__' ] = null;
it = itercuminabs( rand );
t.equal( it[ iteratorSymbol ], void 0, 'does not have property' );
t.end();
});