summaryrefslogtreecommitdiffstats
path: root/toolkit/components/search/tests/xpcshell/test_opensearch_install_errors.js
blob: 62ae7d18ce5d61c3c883217293bd0677fe7d2e84 (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

/*
 * Test that various install failures are handled correctly.
 */

add_task(async function setup() {
  useHttpServer("opensearch");
  await AddonTestUtils.promiseStartupManager();
  await Services.search.init();

  // This test purposely attempts to load an invalid engine.
  consoleAllowList.push("_onLoad: Failed to init engine!");
  consoleAllowList.push("Invalid search plugin due to namespace not matching");
});

add_task(async function test_invalid_path_fails() {
  await Assert.rejects(
    Services.search.addOpenSearchEngine("http://invalid/data/engine.xml", null),
    error => {
      Assert.equal(
        error.result,
        Ci.nsISearchService.ERROR_DOWNLOAD_FAILURE,
        "Should have returned download failure."
      );
      return true;
    },
    "Should fail to install an engine with an invalid path."
  );
});

add_task(async function test_install_duplicate_fails() {
  let engine = await Services.search.addOpenSearchEngine(
    gDataUrl + "simple.xml",
    null
  );
  Assert.equal(engine.name, "simple", "Should have installed the engine.");

  await Assert.rejects(
    Services.search.addOpenSearchEngine(gDataUrl + "simple.xml", null),
    error => {
      Assert.equal(
        error.result,
        Ci.nsISearchService.ERROR_DUPLICATE_ENGINE,
        "Should have returned duplicate failure."
      );
      return true;
    },
    "Should fail to install a duplicate engine."
  );
});

add_task(async function test_invalid_engine_from_dir() {
  await Assert.rejects(
    Services.search.addOpenSearchEngine(gDataUrl + "invalid.xml", null),
    error => {
      Assert.equal(
        error.result,
        Ci.nsISearchService.ERROR_ENGINE_CORRUPTED,
        "Should have returned corruption failure."
      );
      return true;
    },
    "Should fail to install an invalid engine."
  );
});