mirror of
https://github.com/roytam1/UXP.git
synced 2026-06-12 03:18:36 +00:00
28 lines
806 B
JavaScript
28 lines
806 B
JavaScript
/* 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);
|
|
});
|