summaryrefslogtreecommitdiffstats
path: root/testing/specialpowers/content/SpecialPowersSandbox.sys.mjs
blob: 4f9e060595ed4392ad1a75c6646e44f509362335 (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
132
133
134
135
136
137
138
139
140
141
/* 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/. */

/**
 * This modules handles creating and provisioning Sandboxes for
 * executing cross-process code from SpecialPowers. This allows all such
 * sandboxes to have a similar environment, and in particular allows
 * them to run test assertions in the target process and propagate
 * results back to the caller.
 */

const lazy = {};

ChromeUtils.defineESModuleGetters(lazy, {
  Assert: "resource://testing-common/Assert.sys.mjs",
});

// Note: When updating the set of globals exposed to sandboxes by
// default, please also update the ESLint plugin rule defined in
// import-content-task-globals.js.
const SANDBOX_GLOBALS = [
  "Blob",
  "ChromeUtils",
  "FileReader",
  "TextDecoder",
  "TextEncoder",
  "URL",
];
const EXTRA_IMPORTS = {
  EventUtils: "resource://testing-common/SpecialPowersEventUtils.sys.mjs",
};

let expectFail = false;
function expectingFail(fn) {
  try {
    expectFail = true;
    fn();
  } finally {
    expectFail = false;
  }
}

export class SpecialPowersSandbox {
  constructor(name, reportCallback, opts = {}) {
    this.name = name;
    this.reportCallback = reportCallback;

    this._Assert = null;

    this.sandbox = Cu.Sandbox(
      Cu.getGlobalForObject({}),
      Object.assign(
        { wantGlobalProperties: SANDBOX_GLOBALS },
        opts.sandboxOptions
      )
    );

    for (let prop of ["assert", "Assert"]) {
      Object.defineProperty(this.sandbox, prop, {
        get: () => {
          return this.Assert;
        },
        enumerable: true,
        configurable: true,
      });
    }

    let imports = {
      ...EXTRA_IMPORTS,
      ...opts.imports,
    };
    // We explicitly want these directly in the sandbox, and we aren't going
    // to be using the globals within this file.
    // eslint-disable-next-line mozilla/lazy-getter-object-name
    ChromeUtils.defineESModuleGetters(this.sandbox, imports);

    // Note: When updating the set of globals exposed to sandboxes by
    // default, please also update the ESLint plugin rule defined in
    // import-content-task-globals.js.
    Object.assign(this.sandbox, {
      BrowsingContext,
      InspectorUtils,
      ok: (...args) => {
        this.Assert.ok(...args);
      },
      is: (...args) => {
        this.Assert.equal(...args);
      },
      isnot: (...args) => {
        this.Assert.notEqual(...args);
      },
      todo: (...args) => {
        expectingFail(() => this.Assert.ok(...args));
      },
      todo_is: (...args) => {
        expectingFail(() => this.Assert.equal(...args));
      },
      info: info => {
        this.reportCallback({ info });
      },
    });
  }

  get Assert() {
    if (!this._Assert) {
      this._Assert = new lazy.Assert((err, message, stack) => {
        this.report(err, message, stack);
      });
    }
    return this._Assert;
  }

  report(err, name, stack) {
    let diag;
    if (err) {
      diag =
        `got ${uneval(err.actual)}, expected ${uneval(err.expected)} ` +
        `(operator ${err.operator})`;
    }

    this.reportCallback({
      name,
      diag,
      passed: !err,
      stack: stack && stack.formattedStack,
      expectFail,
    });
  }

  execute(task, args, caller) {
    let func = Cu.evalInSandbox(
      `(${task})`,
      this.sandbox,
      undefined,
      caller.filename,
      caller.lineNumber
    );
    return func(...args);
  }
}