summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/extensions/test/xpcshell/test_checkCompatibility_themeOverride.js
blob: c872d75c3096f27fb23dba02e7fd062a027db5d6 (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

// This verifies that the (temporary)
// extensions.checkCompatibility.temporaryThemeOverride_minAppVersion
// preference works.

var ADDONS = [{
  id: "addon1@tests.mozilla.org",
  type: 4,
  internalName: "theme1/1.0",
  version: "1.0",
  name: "Test 1",
  targetApplications: [{
    id: "xpcshell@tests.mozilla.org",
    minVersion: "1.0",
    maxVersion: "1.0"
  }]
}, {
  id: "addon2@tests.mozilla.org",
  type: 4,
  internalName: "theme2/1.0",
  version: "1.0",
  name: "Test 2",
  targetApplications: [{
    id: "xpcshell@tests.mozilla.org",
    minVersion: "2.0",
    maxVersion: "2.0"
  }]
}];

const profileDir = gProfD.clone();
profileDir.append("extensions");


function run_test() {
  do_test_pending();
  createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "3.0", "1");

  for (let a of ADDONS) {
    writeInstallRDFForExtension(a, profileDir);
  }

  startupManager();

  run_test_1();
}

function run_test_1() {
  AddonManager.getAddonsByIDs(["addon1@tests.mozilla.org",
                               "addon2@tests.mozilla.org"],
                               function([a1, a2]) {

    do_check_neq(a1, null);
    do_check_false(a1.isActive);
    do_check_false(a1.isCompatible);
    do_check_true(a1.appDisabled);

    do_check_neq(a2, null);
    do_check_false(a2.isActive);
    do_check_false(a2.isCompatible);
    do_check_true(a1.appDisabled);

    do_execute_soon(run_test_2);
  });
}

function run_test_2() {
  Services.prefs.setCharPref("extensions.checkCompatibility.temporaryThemeOverride_minAppVersion", "2.0");
  if (isNightlyChannel())
    Services.prefs.setBoolPref("extensions.checkCompatibility.nightly", false);
  else
    Services.prefs.setBoolPref("extensions.checkCompatibility.3.0", false);
  restartManager();

  AddonManager.getAddonsByIDs(["addon1@tests.mozilla.org",
                               "addon2@tests.mozilla.org"],
                               function([a1, a2]) {

    do_check_neq(a1, null);
    do_check_false(a1.isActive);
    do_check_false(a1.isCompatible);
    do_check_true(a1.appDisabled);

    do_check_neq(a2, null);
    do_check_false(a2.isActive);
    do_check_false(a2.isCompatible);
    do_check_false(a2.appDisabled);

    do_execute_soon(do_test_finished);
  });
}