mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00:47:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
37
toolkit/components/search/tests/xpcshell/test_nodb.js
Normal file
37
toolkit/components/search/tests/xpcshell/test_nodb.js
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/* Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||
|
||||
/*
|
||||
* test_nodb: Start search engine
|
||||
* - without search-metadata.json
|
||||
* - without search.sqlite
|
||||
*
|
||||
* Ensure that :
|
||||
* - nothing explodes;
|
||||
* - no search-metadata.json is created.
|
||||
*/
|
||||
|
||||
|
||||
function run_test()
|
||||
{
|
||||
removeMetadata();
|
||||
updateAppInfo();
|
||||
|
||||
let search = Services.search;
|
||||
|
||||
do_test_pending();
|
||||
search.init(function ss_initialized(rv) {
|
||||
do_check_true(Components.isSuccessCode(rv));
|
||||
do_timeout(500, function() {
|
||||
// Check that search-metadata.json has not been
|
||||
// created. Note that we cannot do much better
|
||||
// than a timeout for checking a non-event.
|
||||
let metadata = gProfD.clone();
|
||||
metadata.append("search-metadata.json");
|
||||
do_check_true(!metadata.exists());
|
||||
removeMetadata();
|
||||
|
||||
do_test_finished();
|
||||
});
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue