summaryrefslogtreecommitdiffstats
path: root/toolkit/components/search/tests/xpcshell/test_nocache.js
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2019-04-23 13:38:38 -0400
committerMatt A. Tobin <email@mattatobin.com>2019-04-23 13:38:38 -0400
commit0c84220a4f93a3e4f48d8d183aa0f5d8b15eb7ab (patch)
tree9bd44f6fe33bc8217cec52d5a3ba0c9b4ae03c40 /toolkit/components/search/tests/xpcshell/test_nocache.js
parent228e55129b510f259535810ac31f1777b75ba526 (diff)
downloadUXP-0c84220a4f93a3e4f48d8d183aa0f5d8b15eb7ab.tar
UXP-0c84220a4f93a3e4f48d8d183aa0f5d8b15eb7ab.tar.gz
UXP-0c84220a4f93a3e4f48d8d183aa0f5d8b15eb7ab.tar.lz
UXP-0c84220a4f93a3e4f48d8d183aa0f5d8b15eb7ab.tar.xz
UXP-0c84220a4f93a3e4f48d8d183aa0f5d8b15eb7ab.zip
Remove tests from search service
Diffstat (limited to 'toolkit/components/search/tests/xpcshell/test_nocache.js')
-rw-r--r--toolkit/components/search/tests/xpcshell/test_nocache.js60
1 files changed, 0 insertions, 60 deletions
diff --git a/toolkit/components/search/tests/xpcshell/test_nocache.js b/toolkit/components/search/tests/xpcshell/test_nocache.js
deleted file mode 100644
index 42776aef0..000000000
--- a/toolkit/components/search/tests/xpcshell/test_nocache.js
+++ /dev/null
@@ -1,60 +0,0 @@
-/* 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();
-});