summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/unit/test_sandbox_metadata.js
blob: 2d0ebe36b0b7674012739141dab748c776a16a0c (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/* See https://bugzilla.mozilla.org/show_bug.cgi?id=898559 */

function run_test()
{
  let sandbox = Cu.Sandbox("http://www.blah.com", {
    metadata: "test metadata",
  });

  Cu.importGlobalProperties(["XMLHttpRequest"]);

  Assert.equal(Cu.getSandboxMetadata(sandbox), "test metadata");

  sandbox = Cu.Sandbox("http://www.blah.com", {
    metadata: { foopy: { bar: 2 }, baz: "hi" }
  });

  let metadata = Cu.getSandboxMetadata(sandbox);
  Assert.equal(metadata.baz, "hi");
  Assert.equal(metadata.foopy.bar, 2);
  metadata.baz = "foo";

  metadata = Cu.getSandboxMetadata(sandbox);
  Assert.equal(metadata.baz, "foo");

  metadata = { foo: "bar" };
  Cu.setSandboxMetadata(sandbox, metadata);
  metadata.foo = "baz";
  metadata = Cu.getSandboxMetadata(sandbox);
  Assert.equal(metadata.foo, "bar");

  let thrown = false;
  let reflector = new XMLHttpRequest();

  try {
    Cu.setSandboxMetadata(sandbox, { foo: reflector });
  } catch(e) {
    thrown = true;
  }

  Assert.equal(thrown, true);

  sandbox = Cu.Sandbox(this, {
    metadata: { foopy: { bar: 2 }, baz: "hi" }
  });

  let inner = Cu.evalInSandbox("Components.utils.Sandbox('http://www.blah.com')", sandbox);

  metadata = Cu.getSandboxMetadata(inner);
  Assert.equal(metadata.baz, "hi");
  Assert.equal(metadata.foopy.bar, 2);
  metadata.baz = "foo";
}