blob: 8b1f9eb3d35f15205e039a313d8884d5c7f250d8 (
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
|
const Cu = Components.utils;
function run_test() {
// Existing module.
do_check_true(!Cu.isModuleLoaded("resource://gre/modules/ISO8601DateUtils.jsm"),
"isModuleLoaded returned correct value for non-loaded module");
Cu.import("resource://gre/modules/ISO8601DateUtils.jsm");
do_check_true(Cu.isModuleLoaded("resource://gre/modules/ISO8601DateUtils.jsm"),
"isModuleLoaded returned true after loading that module");
Cu.unload("resource://gre/modules/ISO8601DateUtils.jsm");
do_check_true(!Cu.isModuleLoaded("resource://gre/modules/ISO8601DateUtils.jsm"),
"isModuleLoaded returned false after unloading that module");
// Non-existing module
do_check_true(!Cu.isModuleLoaded("resource://gre/modules/ISO8601DateUtils1.jsm"),
"isModuleLoaded returned correct value for non-loaded module");
try {
Cu.import("resource://gre/modules/ISO8601DateUtils1.jsm");
do_check_true(false,
"Should have thrown while trying to load a non existing file");
} catch (ex) {}
do_check_true(!Cu.isModuleLoaded("resource://gre/modules/ISO8601DateUtils1.jsm"),
"isModuleLoaded returned correct value for non-loaded module");
// incorrect url
try {
Cu.isModuleLoaded("resource://modules/ISO8601DateUtils1.jsm");
do_check_true(false,
"Should have thrown while trying to load a non existing file");
} catch (ex) {
do_check_true(true, "isModuleLoaded threw an exception while loading incorrect uri");
}
}
|