-
-
Notifications
You must be signed in to change notification settings - Fork 812
/
Copy pathtest.async.js
313 lines (259 loc) · 6.78 KB
/
test.async.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
'use strict';
// MODULES //
var tape = require( 'tape' );
var join = require( 'path' ).join;
var IS_BROWSER = require( '@stdlib/assert/is-browser' );
var noop = require( '@stdlib/utils/noop' );
var readJSON = require( './../lib/async.js' );
// VARIABLES //
// Don't run tests in the browser...for now...
var opts = {
'skip': IS_BROWSER // FIXME
};
// FIXTURES //
var goodJSON = join( __dirname, 'fixtures', 'good.json' );
var badJSON = join( __dirname, 'fixtures', 'bad.json.txt' );
var bomJSON = join( __dirname, 'fixtures', 'bom.json.txt' );
// TESTS //
tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.strictEqual( typeof readJSON, 'function', 'main export is a function' );
t.end();
});
tape( 'the function throws an error if provided an options argument which is neither a string nor object', function test( t ) {
var values;
var i;
values = [
5,
NaN,
true,
false,
null,
void 0,
[],
function noop() {}
];
for ( i = 0; i < values.length; i++ ) {
t.throws( badValue( values[i] ), TypeError, 'throws a type error when provided '+values[i] );
}
t.end();
function badValue( value ) {
return function badValue() {
readJSON( goodJSON, value, noop );
};
}
});
tape( 'the function throws an error if provided a callback argument which is not a function', function test( t ) {
var values;
var i;
values = [
'5',
5,
NaN,
true,
false,
null,
void 0,
[],
{}
];
for ( i = 0; i < values.length; i++ ) {
t.throws( badValue( values[i] ), TypeError, 'throws a type error when provided '+values[i] );
}
t.end();
function badValue( value ) {
return function badValue() {
readJSON( goodJSON, value );
};
}
});
tape( 'the function throws an error if provided a callback argument which is not a function (encoding)', function test( t ) {
var values;
var i;
values = [
'5',
5,
NaN,
true,
false,
null,
void 0,
[],
{}
];
for ( i = 0; i < values.length; i++ ) {
t.throws( badValue( values[i] ), TypeError, 'throws a type error when provided '+values[i] );
}
t.end();
function badValue( value ) {
return function badValue() {
readJSON( goodJSON, 'utf8', value );
};
}
});
tape( 'the function throws an error if provided a callback argument which is not a function (options object)', function test( t ) {
var values;
var i;
values = [
'5',
5,
NaN,
true,
false,
null,
void 0,
[],
{}
];
for ( i = 0; i < values.length; i++ ) {
t.throws( badValue( values[i] ), TypeError, 'throws a type error when provided '+values[i] );
}
t.end();
function badValue( value ) {
return function badValue() {
readJSON( goodJSON, {}, value );
};
}
});
tape( 'if the function encounters an error when attempting to read a file, the function returns the error', opts, function test( t ) {
readJSON( 'beepboopbapbop', onRead );
function onRead( error ) {
if ( error ) {
t.ok( true, error.message );
} else {
t.ok( false, 'expected an error' );
}
t.end();
}
});
tape( 'if the function encounters an error when attempting to read a file, the function returns the error (encoding)', opts, function test( t ) {
readJSON( 'beepboopbapbop', 'utf8', onRead );
function onRead( error ) {
if ( error ) {
t.ok( true, error.message );
} else {
t.ok( false, 'expected an error' );
}
t.end();
}
});
tape( 'if the function encounters an error when attempting to read a file, the function returns the error (options object)', opts, function test( t ) {
readJSON( 'beepboopbapbop', {
'encoding': 'utf8'
}, onRead );
function onRead( error ) {
if ( error ) {
t.ok( true, error.message );
} else {
t.ok( false, 'expected an error' );
}
t.end();
}
});
tape( 'if the function encounters an error when attempting to parse file contents as JSON, the function returns the error', opts, function test( t ) {
readJSON( badJSON, onRead );
function onRead( error ) {
if ( error ) {
t.ok( true, error.message );
} else {
t.ok( false, 'expected an error' );
}
t.end();
}
});
tape( 'if the function encounters an error when attempting to parse file contents as JSON, the function returns the error (encoding)', opts, function test( t ) {
readJSON( badJSON, 'utf8', onRead );
function onRead( error ) {
if ( error ) {
t.ok( true, error.message );
} else {
t.ok( false, 'expected an error' );
}
t.end();
}
});
tape( 'if the function encounters an error when attempting to parse file contents as JSON, the function returns the error (options object)', opts, function test( t ) {
readJSON( badJSON, {
'encoding': 'utf8'
}, onRead );
function onRead( error ) {
if ( error ) {
t.ok( true, error.message );
} else {
t.ok( false, 'expected an error' );
}
t.end();
}
});
tape( 'the function reads a file as JSON', opts, function test( t ) {
var expected = require( goodJSON ); // eslint-disable-line stdlib/no-dynamic-require
readJSON( goodJSON, onRead );
function onRead( error, actual ) {
if ( error ) {
t.ok( false, error.message );
}
t.deepEqual( actual, expected, 'returns a file as JSON' );
t.end();
}
});
tape( 'the function reads a file as JSON using provided options (encoding)', opts, function test( t ) {
var expected = require( goodJSON ); // eslint-disable-line stdlib/no-dynamic-require
readJSON( goodJSON, 'utf8', onRead );
function onRead( error, actual ) {
if ( error ) {
t.ok( false, error.message );
}
t.deepEqual( actual, expected, 'returns a file as JSON' );
t.end();
}
});
tape( 'the function reads a file as JSON using provided options (options object)', opts, function test( t ) {
var expected = require( goodJSON ); // eslint-disable-line stdlib/no-dynamic-require
readJSON( goodJSON, {
'encoding': 'utf8'
}, onRead );
function onRead( error, actual ) {
if ( error ) {
t.ok( false, error.message );
}
t.deepEqual( actual, expected, 'returns a file as JSON' );
t.end();
}
});
tape( 'the function supports reading a UTF-8 encoded file having a byte order mark (BOM) as JSON', opts, function test( t ) {
var expected = require( goodJSON ); // eslint-disable-line stdlib/no-dynamic-require
readJSON( bomJSON, {
'encoding': 'utf8'
}, onRead );
function onRead( error, actual ) {
if ( error ) {
t.ok( false, error.message );
}
t.deepEqual( actual, expected, 'returns a file as JSON' );
t.end();
}
});
tape( 'the function supports providing a JSON reviver', opts, function test( t ) {
var expected = {
'beep': 'boop',
'bop': [ 1, 2, 3 ],
'bool': true,
'bap': 'woot'
};
readJSON( goodJSON, {
'reviver': reviver
}, onRead );
function onRead( error, actual ) {
if ( error ) {
t.ok( false, error.message );
}
t.deepEqual( actual, expected, 'returns a file as JSON' );
t.end();
}
function reviver( key, value ) {
if ( key === 'bap' ) {
return 'woot';
}
return value;
}
});