summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/unit/test_bug267645.js
blob: 6196a2165c65aa36dd601b95dc11e927cc29e086 (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
/* 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/. */

function run_test() {
  let sb = new Cu.Sandbox("https://example.com",
                          { wantGlobalProperties: ["DOMException"] });
  Cu.exportFunction(function() {
    undefined.foo();
  }, sb, { defineAs: "func" });
  // By default, the stacks of things running in a sandbox will contain the
  // actual evalInSandbox() call location.  To override that, we have to pass an
  // explicit filename.
  let threw = Cu.evalInSandbox("var threw; try { func(); threw = false; } catch (e) { globalThis.exn = e; threw = true } threw",
                                sb, "", "FakeFile");
  Assert.ok(threw);

  // Check what the sandbox could see from this exception.
  Assert.ok(!Cu.evalInSandbox("exn.filename", sb).includes("/unit/"));
  Assert.equal(Cu.evalInSandbox("exn.fileName", sb), undefined);
  Assert.ok(!Cu.evalInSandbox("exn.stack", sb).includes("/unit/"));
  Assert.equal(Cu.evalInSandbox("exn.message", sb), "An exception was thrown");
  Assert.equal(Cu.evalInSandbox("exn.name", sb), "InvalidStateError");

  Cu.exportFunction(function() {
    throw new Error("Hello");
  }, sb, { defineAs: "func2" });
  threw = Cu.evalInSandbox("var threw; try { func2(); threw = false; } catch (e) { globalThis.exn = e; threw = true } threw",
                                sb, "", "FakeFile");
  Assert.ok(threw);
  Assert.ok(!Cu.evalInSandbox("exn.filename", sb).includes("/unit/"));
  Assert.equal(Cu.evalInSandbox("exn.fileName", sb), undefined);
  Assert.ok(!Cu.evalInSandbox("exn.stack", sb).includes("/unit/"));
  Assert.equal(Cu.evalInSandbox("exn.message", sb), "An exception was thrown");
  Assert.equal(Cu.evalInSandbox("exn.name", sb), "InvalidStateError");

  let ctor = Cu.evalInSandbox("TypeError", sb);
  Cu.exportFunction(function() {
    throw new ctor("Hello");
  }, sb, { defineAs: "func3" });
  threw = Cu.evalInSandbox("var threw; try { func3(); threw = false; } catch (e) { globalThis.exn = e; threw = true } threw",
                                sb, "", "FakeFile");
  Assert.ok(threw);
  Assert.ok(!Cu.evalInSandbox("exn.fileName", sb).includes("/unit/"));
  Assert.equal(Cu.evalInSandbox("exn.filename", sb), undefined);
  Assert.ok(!Cu.evalInSandbox("exn.stack", sb).includes("/unit/"));
  Assert.equal(Cu.evalInSandbox("exn.message", sb), "Hello");
  Assert.equal(Cu.evalInSandbox("exn.name", sb), "TypeError");

  ctor = Cu.evalInSandbox("DOMException", sb);
  Cu.exportFunction(function() {
    throw new ctor("Goodbye", "InvalidAccessError");
  }, sb, { defineAs: "func4" });
  threw = Cu.evalInSandbox("var threw; try { func4(); threw = false; } catch (e) { globalThis.exn = e; threw = true } threw",
                                sb, "", "FakeFile");
  Assert.ok(threw);
  Assert.ok(!Cu.evalInSandbox("exn.filename", sb).includes("/unit/"));
  Assert.equal(Cu.evalInSandbox("exn.fileName", sb), undefined);
  Assert.ok(!Cu.evalInSandbox("exn.stack", sb).includes("/unit/"));
  Assert.equal(Cu.evalInSandbox("exn.message", sb), "Goodbye");
  Assert.equal(Cu.evalInSandbox("exn.name", sb), "InvalidAccessError");
}