summaryrefslogtreecommitdiffstats
path: root/services/common/tests/unit/head_global.js
blob: bcb1c063a467291d20ec20d83096b3c7f5d0140c (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

var Cm = Components.manager;

// Required to avoid failures.
do_get_profile();
var { XPCOMUtils } = ChromeUtils.importESModule(
  "resource://gre/modules/XPCOMUtils.sys.mjs"
);

const { updateAppInfo } = ChromeUtils.importESModule(
  "resource://testing-common/AppInfo.sys.mjs"
);
updateAppInfo({
  name: "XPCShell",
  ID: "xpcshell@tests.mozilla.org",
  version: "1",
  platformVersion: "",
});

function addResourceAlias() {
  const handler = Services.io
    .getProtocolHandler("resource")
    .QueryInterface(Ci.nsIResProtocolHandler);

  let modules = ["common", "crypto", "settings"];
  for (let module of modules) {
    let uri = Services.io.newURI(
      "resource://gre/modules/services-" + module + "/"
    );
    handler.setSubstitution("services-" + module, uri);
  }
}
addResourceAlias();