summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_messagemanager_send_principal.html
blob: c50cdfeb30a6a4d7ccdf10a312f75d77e4acb9c0 (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for Principal in MessageManager</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"?>
</head>
<body>

  <script type="application/javascript;version=1.7">
    "use strict";

    const Ci = Components.interfaces;
    const Cc = Components.classes;
    const Cu = Components.utils;

    var permManager = Cc["@mozilla.org/permissionmanager;1"]
                        .getService(Ci.nsIPermissionManager);

    SimpleTest.waitForExplicitFinish();

    const childFrameURL =
      "data:text/html,<!DOCTYPE HTML><html><body></body></html>";

    function childFrameScript() {
      "use strict";

      const secMan = Cc["@mozilla.org/scriptsecuritymanager;1"].
        getService(Ci.nsIScriptSecurityManager);

      addMessageListener("test:content", function(message) {
        sendAsyncMessage("test:result", "is nsIPrincipal: " +
                         (message.data instanceof Ci.nsIPrincipal ? "OK" : "KO"));

        sendAsyncMessage("test:result", "principal.appId: " +
                         ("appId" in message.data ? "OK" : "KO"));

        sendAsyncMessage("test:result", "principal.origin: " +
                         ("origin" in message.data ? "OK" : "KO"));

        sendAsyncMessage("test:result", "principal.isInIsolatedMozBrowserElement: " +
                         ("isInIsolatedMozBrowserElement" in message.data ? "OK" : "KO"));
      });

      addMessageListener("test:system", function(message) {
        sendAsyncMessage("test:result", "isSystemPrincipal: " +
                         (secMan.isSystemPrincipal(message.data) ? "OK" : "KO"));
      });

      addMessageListener("test:ep", function(message) {
        sendAsyncMessage("test:result", "expanded principal: " +
                         (message.data.isExpandedPrincipal ? "OK" : "KO"));
        sendAsyncMessage("test:result", "correct origin: " +
                         (message.data.origin == "[Expanded Principal [http://bar.example.com, http://foo.example.com]]" ? "OK" : "KO"));
      });

      addMessageListener("test:null", function(message) {
        sendAsyncMessage("test:result", "is nsIPrincipal: " +
                         (message.data instanceof Ci.nsIPrincipal ? "OK" : "KO"));

        sendAsyncMessage("test:result", "isNullPrincipal: " +
                         (message.data.isNullPrincipal ? "OK" : "KO"));
        sendAsyncMessage("test:result", "DONE");
      });
    }

    function runTests() {
      ok("Browser prefs set.");

      let iframe = document.createElement("iframe");
      SpecialPowers.wrap(iframe).mozbrowser = true;
      iframe.id = "iframe";
      iframe.src = childFrameURL;

      let sb = new Cu.Sandbox(['http://foo.example.com', 'http://bar.example.com']);
      let ep = Components.utils.getObjectPrincipal(sb);

      iframe.addEventListener("mozbrowserloadend", function() {
        ok(true, "Got iframe load event.");

        let mm = SpecialPowers.getBrowserFrameMessageManager(iframe);
        mm.addMessageListener("test:result", function(message) {
          // We need to wrap to access message.json, and unwrap to do the
          // identity check.
          var msg = SpecialPowers.unwrap(SpecialPowers.wrap(message).data);
          if (/OK$/.exec(msg)) {
            ok(true, msg);
          } else if(/KO$/.exec(msg)) {
            ok(true, false);
          } else if (/DONE/.exec(msg)) {
            permManager.removeFromPrincipal(window.document.nodePrincipal, "browser",
                                            Ci.nsIPermissionManager.ALLOW_ACTION);
            SimpleTest.finish();
          }
        });
        mm.loadFrameScript("data:,(" + childFrameScript.toString() + ")();",
                           false);

        mm.sendAsyncMessage("test:content", window.document.nodePrincipal);

        let system = Cc["@mozilla.org/systemprincipal;1"].
          createInstance(Ci.nsIPrincipal);
        mm.sendAsyncMessage("test:system", system);

        mm.sendAsyncMessage("test:ep", ep);

        let nullP = Cc["@mozilla.org/nullprincipal;1"].
          createInstance(Ci.nsIPrincipal);
        mm.sendAsyncMessage("test:null", nullP);
      });

      document.body.appendChild(iframe);
    }

    addEventListener("load", function() {
      info("Got load event.");

      permManager.addFromPrincipal(window.document.nodePrincipal, "browser",
                                   Ci.nsIPermissionManager.ALLOW_ACTION);

      SpecialPowers.pushPrefEnv({
        "set": [
          ["dom.mozBrowserFramesEnabled", true],
          ["network.disable.ipc.security", true],
          ["browser.pagethumbnails.capturing_disabled", true]
        ]
      }, runTests);
    });
  </script>
</body>
</html>