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

const { AppConstants } = ChromeUtils.importESModule(
  "resource://gre/modules/AppConstants.sys.mjs"
);

const modules = [
  "addonutils.js",
  "addonsreconciler.js",
  "constants.js",
  "engines/addons.js",
  "engines/clients.js",
  "engines/extension-storage.js",
  "engines/passwords.js",
  "engines/prefs.js",
  "engines.js",
  "keys.js",
  "main.js",
  "policies.js",
  "record.js",
  "resource.js",
  "service.js",
  "stages/declined.js",
  "stages/enginesync.js",
  "status.js",
  "sync_auth.js",
  "util.js",
];

if (AppConstants.MOZ_APP_NAME != "thunderbird") {
  modules.push(
    "engines/bookmarks.js",
    "engines/forms.js",
    "engines/history.js",
    "engines/tabs.js"
  );
}

const testingModules = [
  "fakeservices.js",
  "rotaryengine.js",
  "utils.js",
  "fxa_utils.js",
];

function run_test() {
  for (let m of modules) {
    let res = "resource://services-sync/" + m;
    _("Attempting to load " + res);
    ChromeUtils.import(res);
  }

  for (let m of testingModules) {
    let res = "resource://testing-common/services/sync/" + m;
    _("Attempting to load " + res);
    ChromeUtils.import(res);
  }
}