summaryrefslogtreecommitdiffstats
path: root/toolkit/components/extensions/test/mochitest/test_ext_exclude_include_globs.html
blob: 8d425656e00dc71ae3136a03fe412e9a673e10ed (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for content script</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="/tests/SimpleTest/ExtensionTestUtils.js"></script>
  <script type="text/javascript" src="head.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>

<script type="text/javascript">
"use strict";

add_task(async function test_contentscript() {
  function background() {
    browser.runtime.onMessage.addListener(([script]) => {
      browser.test.sendMessage("run", {script});
      browser.test.sendMessage("run-" + script);
    });
    browser.test.sendMessage("running");
  }

  function contentScriptAll() {
    browser.runtime.sendMessage(["all"]);
  }
  function contentScriptIncludesTest1() {
    browser.runtime.sendMessage(["includes-test1"]);
  }
  function contentScriptExcludesTest1() {
    browser.runtime.sendMessage(["excludes-test1"]);
  }

  let extensionData = {
    manifest: {
      content_scripts: [
        {
          "matches": ["https://example.org/", "https://*.example.org/"],
          "exclude_globs": [],
          "include_globs": ["*"],
          "js": ["content_script_all.js"],
        },
        {
          "matches": ["https://example.org/", "https://*.example.org/"],
          "include_globs": ["*test1*"],
          "js": ["content_script_includes_test1.js"],
        },
        {
          "matches": ["https://example.org/", "https://*.example.org/"],
          "exclude_globs": ["*test1*"],
          "js": ["content_script_excludes_test1.js"],
        },
      ],
    },
    background,

    files: {
      "content_script_all.js": contentScriptAll,
      "content_script_includes_test1.js": contentScriptIncludesTest1,
      "content_script_excludes_test1.js": contentScriptExcludesTest1,
    },

  };

  let extension = ExtensionTestUtils.loadExtension(extensionData);

  let ran = 0;
  extension.onMessage("run", () => {
    ran++;
  });

  await Promise.all([extension.startup(), extension.awaitMessage("running")]);
  info("extension loaded");

  let win = window.open("https://example.org/");
  await Promise.all([extension.awaitMessage("run-all"), extension.awaitMessage("run-excludes-test1")]);
  win.close();
  is(ran, 2);

  win = window.open("https://test1.example.org/");
  await Promise.all([extension.awaitMessage("run-all"), extension.awaitMessage("run-includes-test1")]);
  win.close();
  is(ran, 4);

  await extension.unload();
  info("extension unloaded");
});
</script>

</body>
</html>