summaryrefslogtreecommitdiffstats
path: root/toolkit/components/search/tests/xpcshell/test_save_sorted_engines.js
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/components/search/tests/xpcshell/test_save_sorted_engines.js')
-rw-r--r--toolkit/components/search/tests/xpcshell/test_save_sorted_engines.js67
1 files changed, 0 insertions, 67 deletions
diff --git a/toolkit/components/search/tests/xpcshell/test_save_sorted_engines.js b/toolkit/components/search/tests/xpcshell/test_save_sorted_engines.js
deleted file mode 100644
index c509c5f77..000000000
--- a/toolkit/components/search/tests/xpcshell/test_save_sorted_engines.js
+++ /dev/null
@@ -1,67 +0,0 @@
-/* Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ */
-
-/*
- * test_save_sorted_engines: Start search engine
- * - without search-metadata.json
- * - without search.sqlite
- *
- * Ensure that search-metadata.json is correct after:
- * - moving an engine
- * - removing an engine
- * - adding a new engine
- *
- * Notes:
- * - we install the search engines of test "test_downloadAndAddEngines.js"
- * to ensure that this test is independent from locale, commercial agreements
- * and configuration of Firefox.
- */
-
-function run_test() {
- updateAppInfo();
- useHttpServer();
-
- run_next_test();
-}
-
-add_task(function* test_save_sorted_engines() {
- let [engine1, engine2] = yield addTestEngines([
- { name: "Test search engine", xmlFileName: "engine.xml" },
- { name: "A second test engine", xmlFileName: "engine2.xml"},
- ]);
- yield promiseAfterCache();
-
- let search = Services.search;
-
- // Test moving the engines
- search.moveEngine(engine1, 0);
- search.moveEngine(engine2, 1);
-
- // Changes should be commited immediately
- yield promiseAfterCache();
- do_print("Commit complete after moveEngine");
-
- // Check that the entries are placed as specified correctly
- let metadata = yield promiseEngineMetadata();
- do_check_eq(metadata["test-search-engine"].order, 1);
- do_check_eq(metadata["a-second-test-engine"].order, 2);
-
- // Test removing an engine
- search.removeEngine(engine1);
- yield promiseAfterCache();
- do_print("Commit complete after removeEngine");
-
- // Check that the order of the remaining engine was updated correctly
- metadata = yield promiseEngineMetadata();
- do_check_eq(metadata["a-second-test-engine"].order, 1);
-
- // Test adding a new engine
- search.addEngineWithDetails("foo", "", "foo", "", "GET",
- "http://searchget/?search={searchTerms}");
- yield promiseAfterCache();
- do_print("Commit complete after addEngineWithDetails");
-
- metadata = yield promiseEngineMetadata();
- do_check_eq(metadata["foo"].alias, "foo");
- do_check_true(metadata["foo"].order > 0);
-});