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
|
/* eslint-env worker */
importScripts("filesystem_commons.js");
function finish() {
postMessage({ type: "finish" });
}
function ok(a, msg) {
postMessage({ type: "test", test: !!a, message: msg });
}
function is(a, b, msg) {
ok(a === b, msg);
}
function isnot(a, b, msg) {
ok(a != b, msg);
}
var tests = [
function () {
test_basic(directory, next);
},
function () {
test_getFilesAndDirectories(directory, true, next);
},
function () {
test_getFiles(directory, false, next);
},
function () {
test_getFiles(directory, true, next);
},
];
function next() {
if (!tests.length) {
finish();
return;
}
var test = tests.shift();
test();
}
var directory;
onmessage = function (e) {
directory = e.data;
next();
};
|