Files
UXP-Fixed/devtools/client/inspector/test/browser_inspector_gcli-inspect-command.js
T
2018-02-02 04:16:08 -05:00

119 lines
3.1 KiB
JavaScript

/* vim: set ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
/* eslint key-spacing: 0 */
"use strict";
// Testing that the gcli 'inspect' command works as it should.
const TEST_URI = URL_ROOT + "doc_inspector_gcli-inspect-command.html";
add_task(function* () {
return helpers.addTabWithToolbar(TEST_URI, Task.async(function* (options) {
let {inspector} = yield openInspector();
let checkSelection = Task.async(function* (selector) {
let node = yield getNodeFront(selector, inspector);
is(inspector.selection.nodeFront, node, "the current selection is correct");
});
yield helpers.audit(options, [
{
setup: "inspect",
check: {
input: "inspect",
hints: " <selector>",
markup: "VVVVVVV",
status: "ERROR",
args: {
selector: {
message: "Value required for \u2018selector\u2019."
},
}
},
},
{
setup: "inspect div",
check: {
input: "inspect div",
hints: "",
markup: "VVVVVVVVVVV",
status: "VALID",
args: {
selector: { message: "" },
}
},
exec: {},
post: () => checkSelection("div"),
},
{
setup: "inspect .someclass",
check: {
input: "inspect .someclass",
hints: "",
markup: "VVVVVVVVVVVVVVVVVV",
status: "VALID",
args: {
selector: { message: "" },
}
},
exec: {},
post: () => checkSelection(".someclass"),
},
{
setup: "inspect #someid",
check: {
input: "inspect #someid",
hints: "",
markup: "VVVVVVVVVVVVVVV",
status: "VALID",
args: {
selector: { message: "" },
}
},
exec: {},
post: () => checkSelection("#someid"),
},
{
setup: "inspect button[disabled]",
check: {
input: "inspect button[disabled]",
hints: "",
markup: "VVVVVVVVVVVVVVVVVVVVVVVV",
status: "VALID",
args: {
selector: { message: "" },
}
},
exec: {},
post: () => checkSelection("button[disabled]"),
},
{
setup: "inspect p>strong",
check: {
input: "inspect p>strong",
hints: "",
markup: "VVVVVVVVVVVVVVVV",
status: "VALID",
args: {
selector: { message: "" },
}
},
exec: {},
post: () => checkSelection("p>strong"),
},
{
setup: "inspect :root",
check: {
input: "inspect :root",
hints: "",
markup: "VVVVVVVVVVVVV",
status: "VALID"
},
exec: {},
post: () => checkSelection(":root"),
},
]);
}));
});