summaryrefslogtreecommitdiffstats
path: root/devtools/server/tests/mochitest/test_director.html
blob: ad2648bfaf614866d71871d0fa9890bbe4ef14f3 (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
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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug </title>

  <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css">
</head>
<body>
<pre id="test">
  <script type="application/javascript;version=1.8" src="./director-helpers.js"></script>
  <script type="application/javascript;version=1.8">
const WAIT_EVENT_TIMEOUT = 3000;

window.onload = function() {
  Task.spawn(function* () {
    SimpleTest.waitForExplicitFinish();

    var tests = [
      runDirectorRegistryActorTest
    ].map((testCase) => {
      return function* () {
        setup();
        yield testCase().then(null, (e) => {
          console.error("Exception during testCase run", e);
          ok(false, "Exception during testCase run: " + [e, e.fileName, e.lineNumber].join("\n\t"));
        });

        teardown();
      };
    });

    for (var test of tests) {
      yield test();
    }
  }).then(
    function success() {
      SimpleTest.finish()
    },
    function error(e) {
      console.error("Exception during testCase run", e);
      ok(false, "Exception during testCase run: " + [e, e.fileName, e.lineNumber].join("\n\t"));

      SimpleTest.finish();
    }
  );
};

var targetWin = null;

function setup() {
  if (!DebuggerServer.initialized) {
    DebuggerServer.init(() => true);
    DebuggerServer.addBrowserActors();

    SimpleTest.registerCleanupFunction(teardown);
  }
}

function teardown() {
  purgeInstalledDirectorScripts();

  DebuggerServer.destroy();
  if (targetWin) {
    targetWin.close();
  }
}

/***********************************
 *  test cases
 **********************************/


function runDirectorRegistryActorTest() {
  let testDirectorScriptOptions = {
    scriptCode: "(" + (function() {
      module.exports = function({port}) {
        port.onmessage = function(evt) {
          // echo messages
          evt.source.postMessage(evt.data);
        };
      };
    }).toString() + ")();",
    scriptOptions: {}
  }

  return Task.spawn(function* () {
    let { client, root } = yield newConnectedDebuggerClient();

    var directorRegistryClient = new DirectorRegistryFront(client, root);

    let installed = yield directorRegistryClient.install("testDirectorScript", testDirectorScriptOptions);
    is(installed, true, "DirectorManager.install returns true");

    let list = yield directorRegistryClient.list();
    is(JSON.stringify(list), JSON.stringify(["testDirectorScript"]),
       "DirectorManager.list contains the installed director script");

    let uninstalled = yield directorRegistryClient.uninstall("testDirectorScript");
    is(uninstalled, true, "DirectorManager.uninstall return true");

    yield client.close();
  });
}


  </script>
</pre>
</body>
</html>