-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
extractFiles.test.mjs
424 lines (354 loc) · 10.6 KB
/
extractFiles.test.mjs
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
// @ts-check
import {
deepStrictEqual,
notStrictEqual,
strictEqual,
throws,
} from "node:assert";
import revertableGlobals from "revertable-globals";
import extractFiles from "./extractFiles.mjs";
import isExtractableFile from "./isExtractableFile.mjs";
import assertBundleSize from "./test/assertBundleSize.mjs";
/** A custom “file” for testing. */
class CustomFile {}
/**
* Checks if a value is a {@linkcode CustomFile}.
* @param {unknown} value Value to check.
* @returns {value is CustomFile} Is the value a {@linkcode CustomFile}.
*/
function isCustomFile(value) {
return value instanceof CustomFile;
}
/**
* Adds `extractFiles` tests.
* @param {import("test-director").default} tests Test director.
*/
export default (tests) => {
tests.add("`extractFiles` bundle size.", async () => {
await assertBundleSize(new URL("./extractFiles.mjs", import.meta.url), 550);
});
tests.add("`extractFiles` with argument 1 `value` missing.", () => {
throws(() => {
// @ts-expect-error Testing invalid.
extractFiles();
}, new TypeError("Argument 1 `value` is required."));
});
tests.add(
"`extractFiles` with argument 2 `isExtractable` not a function.",
() => {
throws(() => {
extractFiles(
null,
// @ts-expect-error Testing invalid.
true
);
}, new TypeError("Argument 2 `isExtractable` must be a function."));
}
);
tests.add("`extractFiles` with argument 3 `path` not a string.", () => {
throws(() => {
extractFiles(
null,
isExtractableFile,
// @ts-expect-error Testing invalid.
true
);
}, new TypeError("Argument 3 `path` must be a string."));
});
tests.add("`extractFiles` return type.", () => {
const file = new CustomFile();
/** @type {import("./extractFiles.mjs").Extraction<CustomFile>} */
const extraction = extractFiles(file, isCustomFile);
deepStrictEqual(extraction, {
clone: null,
files: new Map([[file, [""]]]),
});
});
tests.add("`extractFiles` with argument 3 `path` specified, file.", () => {
const file = new CustomFile();
deepStrictEqual(extractFiles(file, isCustomFile, "prefix"), {
clone: null,
files: new Map([[file, ["prefix"]]]),
});
});
tests.add(
"`extractFiles` with argument 3 `path` specified, file nested in an object and array.",
() => {
const file = new CustomFile();
deepStrictEqual(extractFiles({ a: [file] }, isCustomFile, "prefix"), {
clone: { a: [null] },
files: new Map([[file, ["prefix.a.0"]]]),
});
}
);
for (const [name, value] of [
["undefined", undefined],
["null", null],
["false", false],
["true", true],
["a string, falsy", ""],
["a string, truthy", "a"],
["a number, falsy", 0],
["a number, truthy", 1],
["a number, NaN", Number.NaN],
["a number, `Number` instance", new Number(1)],
["a regex", /./u],
["an object, `Object` instance", { a: 1 }],
[
"an object, non `Object` instance",
Object.assign(Object.create(null), { a: 1 }),
],
["an object, intrinsic", Math],
["an array", [1, 2]],
["a function", () => {}],
["a class instance", new Date()],
]) {
const label = `\`extractFiles\` with ${name},`;
tests.add(`${label} directly.`, () => {
deepStrictEqual(extractFiles(value, isExtractableFile), {
clone: value,
files: new Map(),
});
});
tests.add(`${label} in an object, \`Object\` instance.`, () => {
const object = Object.freeze({ a: value });
const extraction = extractFiles(object, isExtractableFile);
deepStrictEqual(extraction, {
clone: object,
files: new Map(),
});
notStrictEqual(extraction.clone, object);
});
tests.add(`${label} in an object, non \`Object\` instance.`, () => {
const object = Object.freeze(
Object.assign(Object.create(null), { a: value })
);
const extraction = extractFiles(object, isExtractableFile);
deepStrictEqual(extraction, {
clone: object,
files: new Map(),
});
notStrictEqual(extraction.clone, object);
});
tests.add(`${label} in an array.`, () => {
const array = Object.freeze([value]);
const extraction = extractFiles(array, isExtractableFile);
deepStrictEqual(extraction, {
clone: array,
files: new Map(),
});
notStrictEqual(extraction.clone, array);
});
}
tests.add("`extractFiles` with a `FileList` instance.", () => {
class File {}
class FileList {
#files;
/**
* @param {Array<File>} files Files.
* @this {{
* #files: Array<File>,
* [index: number]: File,
* [Symbol.iterator](): IterableIterator<File>,
* length: number
* }}
*/
constructor(files) {
this.#files = files;
files.forEach((file, index) => {
this[index] = file;
});
this[Symbol.iterator] = this.#files[Symbol.iterator];
this.length = this.#files.length;
}
}
const revertGlobals = revertableGlobals({ File, FileList });
try {
const file0 = new File();
const file1 = new File();
const fileList = new FileList([file0, file1]);
deepStrictEqual(extractFiles(fileList, isExtractableFile), {
clone: [null, null],
files: new Map([
[file0, ["0"]],
[file1, ["1"]],
]),
});
} finally {
revertGlobals();
}
});
tests.add("`extractFiles` with a `File` instance.", () => {
class File {}
const revertGlobals = revertableGlobals({ File });
try {
const file = new File();
deepStrictEqual(extractFiles(file, isExtractableFile), {
clone: null,
files: new Map([[file, [""]]]),
});
} finally {
revertGlobals();
}
});
tests.add("`extractFiles` with a `Blob` instance.", () => {
class Blob {}
const revertGlobals = revertableGlobals({ Blob });
try {
const file = new Blob();
deepStrictEqual(extractFiles(file, isExtractableFile), {
clone: null,
files: new Map([[file, [""]]]),
});
} finally {
revertGlobals();
}
});
tests.add("`extractFiles` with an object containing multiple files.", () => {
const fileA = new CustomFile();
const fileB = new CustomFile();
deepStrictEqual(
extractFiles(Object.freeze({ a: fileA, b: fileB }), isCustomFile),
{
clone: { a: null, b: null },
files: new Map([
[fileA, ["a"]],
[fileB, ["b"]],
]),
}
);
});
tests.add("`extractFiles` with an array containing multiple files.", () => {
const file0 = new CustomFile();
const file1 = new CustomFile();
deepStrictEqual(extractFiles(Object.freeze([file0, file1]), isCustomFile), {
clone: [null, null],
files: new Map([
[file0, ["0"]],
[file1, ["1"]],
]),
});
});
tests.add("`extractFiles` with a nested object containing a file.", () => {
const file = new CustomFile();
deepStrictEqual(
extractFiles(
Object.freeze({ a: Object.freeze({ a: file }) }),
isCustomFile
),
{
clone: { a: { a: null } },
files: new Map([[file, ["a.a"]]]),
}
);
});
tests.add("`extractFiles` with a nested array containing a file.", () => {
const file = new CustomFile();
deepStrictEqual(
extractFiles(Object.freeze([Object.freeze([file])]), isCustomFile),
{
clone: [[null]],
files: new Map([[file, ["0.0"]]]),
}
);
});
tests.add(
"`extractFiles` with an object containing multiple references of a file.",
() => {
const file = new CustomFile();
deepStrictEqual(
extractFiles(Object.freeze({ a: file, b: file }), isCustomFile),
{
clone: { a: null, b: null },
files: new Map([[file, ["a", "b"]]]),
}
);
}
);
tests.add(
"`extractFiles` with an array containing multiple references of a file.",
() => {
const file = new CustomFile();
deepStrictEqual(extractFiles(Object.freeze([file, file]), isCustomFile), {
clone: [null, null],
files: new Map([[file, ["0", "1"]]]),
});
}
);
tests.add("`extractFiles` with an object referenced multiple times.", () => {
const file = new CustomFile();
const inputA = Object.freeze({ a: file });
const extraction = extractFiles(
Object.freeze({ a: inputA, b: inputA }),
isCustomFile
);
const expectedRepeatedObject = { a: null };
deepStrictEqual(extraction, {
clone: { a: expectedRepeatedObject, b: expectedRepeatedObject },
files: new Map([[file, ["a.a", "b.a"]]]),
});
strictEqual(extraction.clone.a, extraction.clone.b);
});
tests.add("`extractFiles` with an array referenced multiple times.", () => {
const file = new CustomFile();
const array = Object.freeze([file]);
const extraction = extractFiles(
Object.freeze({ a: array, b: array }),
isCustomFile
);
const expectedRepeatedArray = [null];
deepStrictEqual(extraction, {
clone: {
a: expectedRepeatedArray,
b: expectedRepeatedArray,
},
files: new Map([[file, ["a.0", "b.0"]]]),
});
strictEqual(extraction.clone.a, extraction.clone.b);
});
tests.add("`extractFiles` with an object with circular references.", () => {
const file = new CustomFile();
/** @type {{ [key: string]: any }} */
const input = { a: file };
input.b = input;
Object.freeze(input);
/** @type {{ [key: string]: any }} */
const clone = { a: null };
clone.b = clone;
deepStrictEqual(extractFiles(input, isCustomFile), {
clone,
files: new Map([[file, ["a"]]]),
});
});
tests.add("`extractFiles` with an array with circular references.", () => {
const file = new CustomFile();
/** @type {Array<any>} */
const input = [file];
input[1] = input;
Object.freeze(input);
/** @type {Array<any>} */
const clone = [null];
clone[1] = clone;
deepStrictEqual(extractFiles(input, isCustomFile), {
clone,
files: new Map([[file, ["0"]]]),
});
});
tests.add("`extractFiles` with an object with a `Symbol` key.", () => {
const symbol = Symbol();
const withoutSymbol = { b: 2 };
deepStrictEqual(
extractFiles(
Object.freeze({
[symbol]: 1,
...withoutSymbol,
}),
isExtractableFile
),
{
clone: withoutSymbol,
files: new Map(),
}
);
});
};