summaryrefslogtreecommitdiffstats
path: root/testing/mochitest/tests/Harness_sanity/test_SpecialPowersLoadChromeScript.html
blob: 7242bd19f5913b1482758a1d2768eda3469e6374 (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for SpecialPowers.loadChromeScript</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>

<pre id="test">
<script class="testbody" type="text/javascript">

SimpleTest.waitForExplicitFinish();

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

var MESSAGE = { bar: true };
script.addMessageListener("bar", function (message) {
  is(JSON.stringify(message), JSON.stringify(MESSAGE),
     "received back message from the chrome script");

  checkAssert();
});

function checkAssert() {
  script.sendAsyncMessage("valid-assert");
  script.addMessageListener("valid-assert-done", endOfFirstTest);
}

var script2;

function endOfFirstTest() {
  script.destroy();

  // wantGlobalProperties should add the specified properties to the sandbox
  // that is used to run the chrome script.
  script2 = SpecialPowers.loadChromeScript(_ => {
    /* eslint-env mozilla/chrome-script */
    addMessageListener("valid-assert", function (message) {
      assert.equal(typeof XMLHttpRequest, "function", "XMLHttpRequest is defined");
      assert.equal(typeof CSS, "undefined", "CSS is not defined");
      sendAsyncMessage("valid-assert-done");
    });
  }, { wantGlobalProperties: ["ChromeUtils", "XMLHttpRequest"] });

  script2.sendAsyncMessage("valid-assert");
  script2.addMessageListener("valid-assert-done", endOfTest);

}

async function endOfTest() {
  is(await script.sendQuery("sync-message"), "Received a synchronous message.",
     "Check sync return value");

  script2.destroy();
  SimpleTest.finish();
}

script.sendAsyncMessage("foo", MESSAGE);

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