summaryrefslogtreecommitdiffstats
path: root/toolkit/components/extensions/test/xpcshell/test_ext_contentscript_create_iframe.js
blob: 2bd475ec15e8338a91dee2afec5b25a0851bc783 (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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
"use strict";

const server = createHttpServer({ hosts: ["example.com"] });
server.registerDirectory("/data/", do_get_file("data"));

add_task(async function test_contentscript_create_iframe() {
  function background() {
    browser.runtime.onMessage.addListener(msg => {
      let { name, availableAPIs, manifest, testGetManifest } = msg;
      let hasExtTabsAPI = availableAPIs.indexOf("tabs") > 0;
      let hasExtWindowsAPI = availableAPIs.indexOf("windows") > 0;

      browser.test.assertFalse(
        hasExtTabsAPI,
        "the created iframe should not be able to use privileged APIs (tabs)"
      );
      browser.test.assertFalse(
        hasExtWindowsAPI,
        "the created iframe should not be able to use privileged APIs (windows)"
      );

      let {
        browser_specific_settings: {
          gecko: { id: expectedManifestGeckoId },
        },
      } = chrome.runtime.getManifest();
      let {
        browser_specific_settings: {
          gecko: { id: actualManifestGeckoId },
        },
      } = manifest;

      browser.test.assertEq(
        actualManifestGeckoId,
        expectedManifestGeckoId,
        "the add-on manifest should be accessible from the created iframe"
      );

      let {
        browser_specific_settings: {
          gecko: { id: testGetManifestGeckoId },
        },
      } = testGetManifest;

      browser.test.assertEq(
        testGetManifestGeckoId,
        expectedManifestGeckoId,
        "GET_MANIFEST() returns manifest data before extension unload"
      );

      browser.test.sendMessage(name);
    });
  }

  function contentScriptIframe() {
    window.GET_MANIFEST = browser.runtime.getManifest.bind(null);

    window.testGetManifestException = () => {
      try {
        window.GET_MANIFEST();
      } catch (exception) {
        return String(exception);
      }
    };

    let testGetManifest = window.GET_MANIFEST();

    let manifest = browser.runtime.getManifest();
    let availableAPIs = Object.keys(browser).filter(key => browser[key]);

    browser.runtime.sendMessage({
      name: "content-script-iframe-loaded",
      availableAPIs,
      manifest,
      testGetManifest,
    });
  }

  const ID = "contentscript@tests.mozilla.org";
  let extensionData = {
    manifest: {
      browser_specific_settings: { gecko: { id: ID } },
      content_scripts: [
        {
          matches: ["http://example.com/data/file_sample.html"],
          js: ["content_script.js"],
          run_at: "document_idle",
        },
      ],
      web_accessible_resources: ["content_script_iframe.html"],
    },

    background,

    files: {
      "content_script.js"() {
        let iframe = document.createElement("iframe");
        iframe.src = browser.runtime.getURL("content_script_iframe.html");
        document.body.appendChild(iframe);
      },
      "content_script_iframe.html": `<!DOCTYPE html>
        <html>
          <head>
            <meta charset="utf-8">
            <script type="text/javascript" src="content_script_iframe.js"></script>
          </head>
        </html>`,
      "content_script_iframe.js": contentScriptIframe,
    },
  };

  let extension = ExtensionTestUtils.loadExtension(extensionData);
  await extension.startup();

  let contentPage = await ExtensionTestUtils.loadContentPage(
    "http://example.com/data/file_sample.html"
  );

  await extension.awaitMessage("content-script-iframe-loaded");

  info("testing APIs availability once the extension is unloaded...");

  await contentPage.legacySpawn(null, () => {
    this.iframeWindow = this.content[0];

    Assert.ok(this.iframeWindow, "content script enabled iframe found");
    Assert.ok(
      /content_script_iframe\.html$/.test(this.iframeWindow.location),
      "the found iframe has the expected URL"
    );
  });

  await extension.unload();

  info(
    "test content script APIs not accessible from the frame once the extension is unloaded"
  );

  await contentPage.legacySpawn(null, () => {
    let win = Cu.waiveXrays(this.iframeWindow);
    ok(
      !Cu.isDeadWrapper(win.browser),
      "the API object should not be a dead object"
    );

    let manifest;
    let manifestException;
    try {
      manifest = win.browser.runtime.getManifest();
    } catch (e) {
      manifestException = e;
    }

    Assert.ok(!manifest, "manifest should be undefined");

    Assert.equal(
      manifestException.constructor.name,
      "TypeError",
      "expected exception received"
    );

    Assert.ok(
      manifestException.message.endsWith("win.browser.runtime is undefined"),
      "expected exception received"
    );

    let getManifestException = win.testGetManifestException();

    Assert.equal(
      getManifestException,
      "TypeError: can't access dead object",
      "expected exception received"
    );
  });

  await contentPage.close();
});