summaryrefslogtreecommitdiffstats
path: root/mobile/android/components/extensions/test/mochitest/test_ext_tabs_getCurrent.html
blob: c32f93f44afc596ee4baff424c350191438a3a62 (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
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Tabs getCurrent Test</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="/tests/SimpleTest/ExtensionTestUtils.js"></script>
  <script type="text/javascript" src="head.js"></script>
  <link rel="stylesheet" href="/tests/SimpleTest/test.css"/>
</head>
<body>

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

add_task(async function() {
  const extension = ExtensionTestUtils.loadExtension({
    manifest: {
      "permissions": ["tabs"],
    },

    files: {
      "tab.js": function() {
        const url = document.location.href;

        browser.tabs.getCurrent().then(currentTab => {
          browser.test.assertEq(currentTab.url, url, "getCurrent in non-active background tab");

          // Activate the tab.
          browser.tabs.onActivated.addListener(function listener({tabId}) {
            if (tabId == currentTab.id) {
              browser.tabs.onActivated.removeListener(listener);

              browser.tabs.getCurrent().then(currentTab => {
                browser.test.assertEq(currentTab.id, tabId, "in active background tab");
                browser.test.assertEq(currentTab.url, url, "getCurrent in non-active background tab");

                browser.test.sendMessage("tab-finished");
              });
            }
          });
          browser.tabs.update(currentTab.id, {active: true});
        });
      },

      "tab.html": `<head><meta charset="utf-8"><script src="tab.js"><\/script></head>`,
    },

    background: function() {
      browser.tabs.getCurrent().then(tab => {
        browser.test.assertEq(tab, undefined, "getCurrent in background script");
        browser.test.sendMessage("background-finished");
      });

      browser.tabs.create({url: "tab.html", active: false});
    },
  });

  await extension.startup();

  await extension.awaitMessage("background-finished");
  await extension.awaitMessage("tab-finished");

  // The extension tab is automatically closed when the extension unloads.
  await extension.unload();
});
</script>

</body>
</html>