summaryrefslogtreecommitdiffstats
path: root/devtools/client/commandline/test/browser_cmd_paintflashing.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/commandline/test/browser_cmd_paintflashing.js')
-rw-r--r--devtools/client/commandline/test/browser_cmd_paintflashing.js60
1 files changed, 60 insertions, 0 deletions
diff --git a/devtools/client/commandline/test/browser_cmd_paintflashing.js b/devtools/client/commandline/test/browser_cmd_paintflashing.js
new file mode 100644
index 000000000..09d5edc59
--- /dev/null
+++ b/devtools/client/commandline/test/browser_cmd_paintflashing.js
@@ -0,0 +1,60 @@
+/* Any copyright is dedicated to the Public Domain.
+* http://creativecommons.org/publicdomain/zero/1.0/ */
+
+// Tests that the paintflashing command correctly sets its state.
+
+"use strict";
+
+const TEST_URI = "http://example.com/browser/devtools/client/commandline/" +
+ "test/browser_cmd_cookie.html";
+
+function test() {
+ return Task.spawn(testTask).then(finish, helpers.handleError);
+}
+
+var tests = {
+ testInput: function (options) {
+ let toggleCommand = options.requisition.system.commands.get("paintflashing toggle");
+
+ let _tab = options.tab;
+
+ let actions = [
+ {
+ command: "paintflashing on",
+ isChecked: true,
+ label: "checked after on"
+ },
+ {
+ command: "paintflashing off",
+ isChecked: false,
+ label: "unchecked after off"
+ },
+ {
+ command: "paintflashing toggle",
+ isChecked: true,
+ label: "checked after toggle"
+ },
+ {
+ command: "paintflashing toggle",
+ isChecked: false,
+ label: "unchecked after toggle"
+ }
+ ];
+
+ return helpers.audit(options, actions.map(spec => ({
+ setup: spec.command,
+ exec: {},
+ post: () => is(toggleCommand.state.isChecked({_tab}), spec.isChecked, spec.label)
+ })));
+ },
+};
+
+function* testTask() {
+ let options = yield helpers.openTab(TEST_URI);
+ yield helpers.openToolbar(options);
+
+ yield helpers.runTests(options, tests);
+
+ yield helpers.closeToolbar(options);
+ yield helpers.closeTab(options);
+}