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

// This verifies that add-on update check failures are propogated correctly

// The test extension uses an insecure update url.
Services.prefs.setBoolPref("extensions.checkUpdateSecurity", false);

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

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

  // Create and configure the HTTP server.
  testserver = createHttpServer();
  testserver.registerDirectory("/data/", do_get_file("data"));
  testserver.registerDirectory("/addons/", do_get_file("addons"));
  gPort = testserver.identity.primaryPort;

  run_next_test();
}

// Verify that an update check returns the correct errors.
add_task(function* () {
  for (let manifestType of ["rdf", "json"]) {
    writeInstallRDFForExtension({
      id: "addon1@tests.mozilla.org",
      version: "1.0",
      updateURL: `http://localhost:${gPort}/data/test_missing.${manifestType}`,
      targetApplications: [{
        id: "xpcshell@tests.mozilla.org",
        minVersion: "1",
        maxVersion: "1"
      }],
      name: "Test Addon 1",
      bootstrap: "true",
    }, profileDir);

    yield promiseRestartManager();

    let addon = yield promiseAddonByID("addon1@tests.mozilla.org");

    ok(addon);
    ok(addon.updateURL.endsWith(manifestType));
    equal(addon.version, "1.0");

    // We're expecting an error, so resolve when the promise is rejected.
    let update = yield promiseFindAddonUpdates(addon, AddonManager.UPDATE_WHEN_USER_REQUESTED)
      .catch(Promise.resolve);

    ok(!update.compatibilityUpdate, "not expecting a compatibility update");
    ok(!update.updateAvailable, "not expecting a compatibility update");

    equal(update.error, AddonManager.UPDATE_STATUS_DOWNLOAD_ERROR);

    addon.uninstall();
  }
});