summaryrefslogtreecommitdiffstats
path: root/dom/filesystem/tests/worker_basic.js
diff options
context:
space:
mode:
Diffstat (limited to 'dom/filesystem/tests/worker_basic.js')
-rw-r--r--dom/filesystem/tests/worker_basic.js41
1 files changed, 41 insertions, 0 deletions
diff --git a/dom/filesystem/tests/worker_basic.js b/dom/filesystem/tests/worker_basic.js
new file mode 100644
index 000000000..01df3fbd1
--- /dev/null
+++ b/dom/filesystem/tests/worker_basic.js
@@ -0,0 +1,41 @@
+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();
+}