blob: 3aa3353cef20de1e212edd6414fcff47fd018a09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/* -*- indent-tabs-mode: nil; js-indent-level: 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();
updateAppInfo();
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();
});
}
};
}
|