2012-06-10 16:44:50 -07:00
|
|
|
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test nsSearchService with with the following initialization scenario:
|
|
|
|
* - launch asynchronous initialization several times;
|
|
|
|
* - all asynchronous initializations must complete.
|
|
|
|
*
|
|
|
|
* Test case comes from test_645970.js
|
|
|
|
*/
|
|
|
|
function run_test() {
|
|
|
|
do_print("Setting up test");
|
|
|
|
|
|
|
|
do_test_pending();
|
2013-02-15 08:55:53 -08:00
|
|
|
updateAppInfo();
|
2012-06-10 16:44:50 -07:00
|
|
|
|
|
|
|
do_print("Test starting");
|
|
|
|
let numberOfInitializers = 4;
|
|
|
|
let pending = [];
|
|
|
|
let numberPending = numberOfInitializers;
|
|
|
|
|
|
|
|
// Start asynchronous initializations
|
|
|
|
for (let i = 0; i < numberOfInitializers; ++i) {
|
|
|
|
let me = i;
|
|
|
|
pending[me] = true;
|
|
|
|
Services.search.init(function search_initialized_0(aStatus) {
|
|
|
|
do_check_true(Components.isSuccessCode(aStatus));
|
|
|
|
init_complete(me);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wait until all initializers have completed
|
|
|
|
let init_complete = function init_complete(i) {
|
|
|
|
do_check_true(pending[i]);
|
|
|
|
pending[i] = false;
|
|
|
|
numberPending--;
|
|
|
|
do_check_true(numberPending >= 0);
|
|
|
|
do_check_true(Services.search.isInitialized);
|
|
|
|
if (numberPending == 0) {
|
|
|
|
// Just check that we can access a list of engines.
|
|
|
|
let engines = Services.search.getEngines();
|
|
|
|
do_check_neq(engines, null);
|
|
|
|
|
|
|
|
// Wait a little before quitting: if some initializer is
|
|
|
|
// triggered twice, we want to catch that error.
|
|
|
|
do_timeout(1000, function() {
|
|
|
|
do_test_finished();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|