summaryrefslogtreecommitdiffstats
path: root/dom/filesystem/tests/test_worker_basic.html
blob: 920f32719bd7067316a200371dc89b268377f9bf (plain)
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
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for Directory API in workers</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="filesystem_commons.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>

<body>
<script type="application/javascript">

var fileList;

function create_fileList() {
  fileList = document.createElement("input");
  fileList.setAttribute("type", "file");
  document.body.appendChild(fileList);

  var url = SimpleTest.getTestFileURL("script_fileList.js");
  var script = SpecialPowers.loadChromeScript(url);

  function onOpened(message) {
    SpecialPowers.wrap(fileList).mozSetDirectory(message.dir);
    script.destroy();
    next();
  }

  script.addMessageListener("dir.opened", onOpened);
  script.sendAsyncMessage("dir.open", { path: "test" });
}

function test_worker() {
  SpecialPowers.wrap(fileList).getFilesAndDirectories().then(function(array) {
    array = SpecialPowers.unwrap(array);
    var worker = new Worker("worker_basic.js");
    worker.onmessage = function(e) {
      if (e.data.type == "finish") {
        next();
        return;
      }

      if (e.data.type == "test") {
        ok(e.data.test, e.data.message);
      }
    };

    worker.postMessage(array[0]);
  });
}

var tests = [
  function() { setup_tests(next); },

  create_fileList,
  test_worker,
];

function next() {
  if (!tests.length) {
    SimpleTest.finish();
    return;
  }

  var test = tests.shift();
  test();
}

SimpleTest.waitForExplicitFinish();
next();
</script>
</body>
</html>