blob: 6b06f22218b9f1d472c0163cc375db26e4f5fa0b (
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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
const PREF_STRING_NO_DEFAULT = "test.aboutconfig.a";
add_setup(async function () {
await SpecialPowers.pushPrefEnv({
set: [[PREF_STRING_NO_DEFAULT, "some value"]],
});
});
add_task(async function test_locked() {
registerCleanupFunction(() => {
Services.prefs.unlockPref(PREF_STRING_DEFAULT_NOTEMPTY);
Services.prefs.unlockPref(PREF_BOOLEAN_DEFAULT_TRUE);
Services.prefs.unlockPref(PREF_STRING_NO_DEFAULT);
});
Services.prefs.lockPref(PREF_STRING_DEFAULT_NOTEMPTY);
Services.prefs.lockPref(PREF_BOOLEAN_DEFAULT_TRUE);
Services.prefs.lockPref(PREF_STRING_NO_DEFAULT);
await AboutConfigTest.withNewTab(async function () {
// Test locked default string pref.
let lockedPref = this.getRow(PREF_STRING_DEFAULT_NOTEMPTY);
Assert.ok(lockedPref.hasClass("locked"));
Assert.equal(lockedPref.value, PREF_STRING_DEFAULT_NOTEMPTY_VALUE);
Assert.ok(lockedPref.editColumnButton.classList.contains("button-edit"));
Assert.ok(lockedPref.editColumnButton.disabled);
// Test locked default boolean pref.
lockedPref = this.getRow(PREF_BOOLEAN_DEFAULT_TRUE);
Assert.ok(lockedPref.hasClass("locked"));
Assert.equal(lockedPref.value, "true");
Assert.ok(lockedPref.editColumnButton.classList.contains("button-toggle"));
Assert.ok(lockedPref.editColumnButton.disabled);
// Test locked user added pref.
lockedPref = this.getRow(PREF_STRING_NO_DEFAULT);
Assert.ok(lockedPref.hasClass("locked"));
Assert.equal(lockedPref.value, "");
Assert.ok(lockedPref.editColumnButton.classList.contains("button-edit"));
Assert.ok(lockedPref.editColumnButton.disabled);
// Test pref not locked.
let unlockedPref = this.getRow(PREF_BOOLEAN_USERVALUE_TRUE);
Assert.ok(!unlockedPref.hasClass("locked"));
Assert.equal(unlockedPref.value, "true");
Assert.ok(
unlockedPref.editColumnButton.classList.contains("button-toggle")
);
Assert.ok(!unlockedPref.editColumnButton.disabled);
});
});
|