summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/extensions/test/xpcshell/test_system_update_uninstall_check.js
blob: 38ac3cf6b7a4292ca66ad338b15687cf0404c4b4 (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
// Tests that system add-on doesnt uninstall while update.

createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "2");

let distroDir = FileUtils.getDir("ProfD", ["sysfeatures", "empty"], true);
registerDirectory("XREAppFeat", distroDir);

AddonTestUtils.usePrivilegedSignatures = "system";

add_task(() => initSystemAddonDirs());

const initialSetup = {
  async setup() {
    await buildPrefilledUpdatesDir();
    distroDir.leafName = "empty";
  },
  initialState: [
    { isUpgrade: false, version: null },
    { isUpgrade: true, version: "2.0" },
  ],
};

add_task(async function test_systems_update_uninstall_check() {
  Services.prefs.setBoolPref(PREF_SYSTEM_ADDON_UPDATE_ENABLED, true);

  await setupSystemAddonConditions(initialSetup, distroDir);

  let updateXML = buildSystemAddonUpdates([
    {
      id: "system2@tests.mozilla.org",
      version: "3.0",
      path: "system2_3.xpi",
      xpi: await getSystemAddonXPI(2, "3.0"),
    },
  ]);

  const listener = (msg, { method, params, reason }) => {
    if (params.id === "system2@tests.mozilla.org" && method === "uninstall") {
      Assert.ok(
        false,
        "Should not see uninstall call for system2@tests.mozilla.org"
      );
    }
  };

  AddonTestUtils.on("bootstrap-method", listener);

  await Promise.all([
    updateAllSystemAddons(updateXML),
    promiseWebExtensionStartup("system2@tests.mozilla.org"),
  ]);

  AddonTestUtils.off("bootstrap-method", listener);

  await promiseShutdownManager();
});