summaryrefslogtreecommitdiffstats
path: root/devtools/shared/tests/mochitest/test_devtools_extensions.html
blob: 04cc82b220fffe8d33f5b9f6e3e338adef9fe71a (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
<!DOCTYPE html>
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->

<html>

  <head>
    <meta charset="utf8">
    <title></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">

    <script type="application/javascript;version=1.8">
      const { classes: Cc, interfaces: Ci, utils: Cu } = Components;

      let { require } = Cu.import("resource://devtools/shared/Loader.jsm", {});
      const contentGlobals  = require("devtools/server/content-globals");
      const Services = require("Services");
      const tabs = require('sdk/tabs');
      const { getMostRecentBrowserWindow, getInnerId } = require('sdk/window/utils');
      const { PageMod } = require('sdk/page-mod');

      var _tests = [];
      function addTest(test) {
        _tests.push(test);
      }

      function runNextTest() {
        if (_tests.length == 0) {
          SimpleTest.finish()
          return;
        }
        _tests.shift()();
      }

      window.onload = function() {
        SimpleTest.waitForExplicitFinish();
        runNextTest();
      }

      addTest(function () {
        let TEST_URL = 'data:text/html;charset=utf-8,test';

        let mod = PageMod({
          include: TEST_URL,
          contentScriptWhen: 'ready',
          contentScript: 'null;'
        });

        tabs.open({
          url: TEST_URL,
          onLoad: function(tab) {
            let id = getInnerId(getMostRecentBrowserWindow().gBrowser.selectedBrowser.contentWindow);

            // getting
            is(contentGlobals.getContentGlobals({
              'inner-window-id': id
            }).length, 1, 'found a global for inner-id = ' + id);

            Services.obs.addObserver(function observer(subject, topic, data) {
              if (id == subject.QueryInterface(Components.interfaces.nsISupportsPRUint64).data) {
                Services.obs.removeObserver(observer, 'inner-window-destroyed');
                setTimeout(function() {
                  // closing the tab window should have removed the global
                  is(contentGlobals.getContentGlobals({
                    'inner-window-id': id
                  }).length, 0, 'did not find a global for inner-id = ' + id);

                  mod.destroy();
                  runNextTest();
                })
              }
            }, 'inner-window-destroyed', false);

            tab.close();
          }
        });
      })

      addTest(function testAddRemoveGlobal() {
        let global = {};
        let globalDetails = {
          global: global,
          'inner-window-id': 5
        };

        // adding
        contentGlobals.addContentGlobal(globalDetails);

        // getting
        is(contentGlobals.getContentGlobals({
          'inner-window-id': 5
        }).length, 1, 'found a global for inner-id = 5');
        is(contentGlobals.getContentGlobals({
          'inner-window-id': 4
        }).length, 0, 'did not find a global for inner-id = 4');

        // remove
        contentGlobals.removeContentGlobal(globalDetails);

        // getting again
        is(contentGlobals.getContentGlobals({
          'inner-window-id': 5
        }).length, 0, 'did not find a global for inner-id = 5');

        runNextTest();
      });

    </script>
  </head>
  <body></body>
</html>