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

/*
 * test_nocache: Start search engine
 * - without search.json.mozlz4
 *
 * Ensure that :
 * - nothing explodes;
 * - search.json.mozlz4 is created.
 */

function run_test()
{
  removeCacheFile();
  updateAppInfo();
  do_load_manifest("data/chrome.manifest");
  useHttpServer();

  run_next_test();
}

add_task(function* test_nocache() {
  let search = Services.search;

  let afterCachePromise = promiseAfterCache();

  yield new Promise((resolve, reject) => search.init(rv => {
    Components.isSuccessCode(rv) ? resolve() : reject();
  }));

  // Check that the cache is created at startup
  yield afterCachePromise;

  // Check that search.json has been created.
  let cacheFile = gProfD.clone();
  cacheFile.append(CACHE_FILENAME);
  do_check_true(cacheFile.exists());

  // Add engine and wait for cache update
  yield addTestEngines([
    { name: "Test search engine", xmlFileName: "engine.xml" },
  ]);

  do_print("Engine has been added, let's wait for the cache to be built");
  yield promiseAfterCache();

  do_print("Searching test engine in cache");
  let cache = yield promiseCacheData();
  let found = false;
  for (let engine of cache.engines) {
    if (engine._shortName == "test-search-engine") {
      found = true;
      break;
    }
  }
  do_check_true(found);

  removeCacheFile();
});