diff options
Diffstat (limited to 'toolkit/components/search/tests/xpcshell/test_async_migration.js')
-rw-r--r-- | toolkit/components/search/tests/xpcshell/test_async_migration.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/toolkit/components/search/tests/xpcshell/test_async_migration.js b/toolkit/components/search/tests/xpcshell/test_async_migration.js new file mode 100644 index 000000000..4d0335c45 --- /dev/null +++ b/toolkit/components/search/tests/xpcshell/test_async_migration.js @@ -0,0 +1,27 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ + +/* Test that legacy metadata from search-metadata.json is correctly + * transferred to the new metadata storage. */ + +function run_test() { + updateAppInfo(); + installTestEngine(); + + do_get_file("data/metadata.json").copyTo(gProfD, "search-metadata.json"); + + run_next_test(); +} + +add_task(function* test_async_metadata_migration() { + yield asyncInit(); + yield promiseAfterCache(); + + // Check that the entries are placed as specified correctly + let metadata = yield promiseEngineMetadata(); + do_check_eq(metadata["engine"].order, 1); + do_check_eq(metadata["engine"].alias, "foo"); + + metadata = yield promiseGlobalMetadata(); + do_check_eq(metadata["searchDefaultExpir"], 1471013469846); +}); |