diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /devtools/client/commandline/test/browser_cmd_pref1.js | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'devtools/client/commandline/test/browser_cmd_pref1.js')
-rw-r--r-- | devtools/client/commandline/test/browser_cmd_pref1.js | 154 |
1 files changed, 154 insertions, 0 deletions
diff --git a/devtools/client/commandline/test/browser_cmd_pref1.js b/devtools/client/commandline/test/browser_cmd_pref1.js new file mode 100644 index 000000000..4dc34f7ae --- /dev/null +++ b/devtools/client/commandline/test/browser_cmd_pref1.js @@ -0,0 +1,154 @@ +/* Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/publicdomain/zero/1.0/ */ + +// Tests that the pref commands work + +var prefBranch = Cc["@mozilla.org/preferences-service;1"] + .getService(Ci.nsIPrefService).getBranch(null) + .QueryInterface(Ci.nsIPrefBranch2); + +const TEST_URI = "data:text/html;charset=utf-8,gcli-pref1"; + +function test() { + return Task.spawn(spawnTest).then(finish, helpers.handleError); +} + +function* spawnTest() { + let options = yield helpers.openTab(TEST_URI); + yield helpers.openToolbar(options); + + let netmonEnabledOrig = prefBranch.getBoolPref("devtools.netmonitor.enabled"); + info("originally: devtools.netmonitor.enabled = " + netmonEnabledOrig); + + yield helpers.audit(options, [ + { + setup: "pref", + check: { + input: "pref", + hints: " reset", + markup: "IIII", + status: "ERROR" + }, + }, + { + setup: "pref s", + check: { + input: "pref s", + hints: "et", + markup: "IIIIVI", + status: "ERROR" + }, + }, + { + setup: "pref sh", + check: { + input: "pref sh", + hints: "ow", + markup: "IIIIVII", + status: "ERROR" + }, + }, + { + setup: "pref show ", + check: { + input: "pref show ", + markup: "VVVVVVVVVV", + status: "ERROR" + }, + }, + { + setup: "pref show usetexttospeech", + check: { + input: "pref show usetexttospeech", + hints: " -> accessibility.usetexttospeech", + markup: "VVVVVVVVVVIIIIIIIIIIIIIII", + status: "ERROR" + }, + }, + { + setup: "pref show devtools.netmoni", + check: { + input: "pref show devtools.netmoni", + hints: "tor.enabled", + markup: "VVVVVVVVVVIIIIIIIIIIIIIIII", + status: "ERROR", + tooltipState: "true:importantFieldFlag", + args: { + setting: { value: undefined, status: "INCOMPLETE" }, + } + }, + }, + { + setup: "pref reset devtools.netmonitor.enabled", + check: { + input: "pref reset devtools.netmonitor.enabled", + hints: "", + markup: "VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV", + status: "VALID" + }, + }, + { + setup: "pref show devtools.netmonitor.enabled 4", + check: { + input: "pref show devtools.netmonitor.enabled 4", + hints: "", + markup: "VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVE", + status: "ERROR" + }, + }, + { + setup: "pref set devtools.netmonitor.enabled 4", + check: { + input: "pref set devtools.netmonitor.enabled 4", + hints: "", + markup: "VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVE", + status: "ERROR", + args: { + setting: { arg: " devtools.netmonitor.enabled" }, + value: { status: "ERROR", message: "Can\u2019t use \u20184\u2019." }, + } + }, + }, + { + setup: "pref set devtools.editor.tabsize 4", + check: { + input: "pref set devtools.editor.tabsize 4", + hints: "", + markup: "VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV", + status: "VALID", + args: { + setting: { arg: " devtools.editor.tabsize" }, + value: { value: 4 }, + } + }, + }, + { + setup: "pref list", + check: { + input: "pref list", + hints: " -> pref set", + markup: "IIIIVIIII", + status: "ERROR" + }, + }, + { + setup: "pref show devtools.netmonitor.enabled", + check: { + args: { + setting: { + value: options.requisition.system.settings.get("devtools.netmonitor.enabled") + } + }, + }, + exec: { + output: "devtools.netmonitor.enabled: " + netmonEnabledOrig, + }, + post: function () { + prefBranch.setBoolPref("devtools.netmonitor.enabled", netmonEnabledOrig); + } + }, + ]); + + yield helpers.closeToolbar(options); + yield helpers.closeTab(options); +} |