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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/* eslint no-unsafe-finally: "off"*/
/* Turning off this rule to allow control flow operations in finally block
* http://eslint.org/docs/rules/no-unsafe-finally */
function run_test() {
let greD = Services.dirsvc.get("GreD", Ci.nsIFile);
let defaultPrefD = Services.dirsvc.get("PrfDef", Ci.nsIFile);
let testDir = do_get_cwd();
try {
let autoConfigJS = testDir.clone();
autoConfigJS.append("autoconfig.js");
autoConfigJS.copyTo(defaultPrefD, "autoconfig.js");
// Make sure nsReadConfig is initialized.
Cc["@mozilla.org/readconfig;1"].getService(Ci.nsISupports);
Services.prefs.resetPrefs();
var tests = [
{
filename: "autoconfig-utf8.cfg",
prefs: {
"_test.string.ASCII": "UTF-8",
"_test.string.non-ASCII": "日本語",
"_test.string.getPref": "日本語",
"_test.string.gIsUTF8": "true",
},
},
{
filename: "autoconfig-latin1.cfg",
prefs: {
"_test.string.ASCII": "ASCII",
"_test.string.non-ASCII": "日本語",
"_test.string.getPref": "日本語",
"_test.string.gIsUTF8": "false",
},
},
{
filename: "autoconfig-chromecheck.cfg",
prefs: {
"_test.string.typeofComponents": "undefined",
"_test.string.typeofChromeUtils": "undefined",
"_test.string.typeofServices": "undefined",
},
},
];
function testAutoConfig(test) {
// Make sure pref values are unset.
for (let prefName in test.prefs) {
Assert.equal(
Ci.nsIPrefBranch.PREF_INVALID,
Services.prefs.getPrefType(prefName)
);
}
let autoConfigCfg = testDir.clone();
autoConfigCfg.append(test.filename);
autoConfigCfg.copyTo(greD, "autoconfig.cfg");
Services.obs.notifyObservers(
Services.prefs,
"prefservice:before-read-userprefs"
);
for (let prefName in test.prefs) {
Assert.equal(
test.prefs[prefName],
Services.prefs.getStringPref(prefName)
);
}
Services.prefs.resetPrefs();
// Make sure pref values are reset.
for (let prefName in test.prefs) {
Assert.equal(
Ci.nsIPrefBranch.PREF_INVALID,
Services.prefs.getPrefType(prefName)
);
}
}
tests.forEach(testAutoConfig);
} finally {
try {
let autoConfigJS = defaultPrefD.clone();
autoConfigJS.append("autoconfig.js");
autoConfigJS.remove(false);
} catch (e) {
if (e.result != Cr.NS_ERROR_FILE_NOT_FOUND) {
throw e;
}
}
try {
let autoConfigCfg = greD.clone();
autoConfigCfg.append("autoconfig.cfg");
autoConfigCfg.remove(false);
} catch (e) {
if (e.result != Cr.NS_ERROR_FILE_NOT_FOUND) {
throw e;
}
}
Services.prefs.resetPrefs();
}
}
|