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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/**
* Run a series of edit-outer-html tests.
* This function will iterate over the provided tests array and run each test.
* Each test's goal is to provide a node (a selector) and a new outer-HTML to be
* inserted in place of the current one for that node.
* This test runner will wait for the mutation event to be fired and will check
* a few things. Each test may also provide its own validate function to perform
* assertions and verify that the new outer html is correct.
* @param {Array} tests See runEditOuterHTMLTest for the structure
* @param {InspectorPanel} inspector The instance of InspectorPanel currently
* opened
* @return a promise that resolves when the tests have run
*/
function runEditOuterHTMLTests(tests, inspector) {
info("Running " + tests.length + " edit-outer-html tests");
return Task.spawn(function* () {
for (let step of TEST_DATA) {
yield runEditOuterHTMLTest(step, inspector);
}
});
}
/**
* Run a single edit-outer-html test.
* See runEditOuterHTMLTests for a description.
* @param {Object} test A test object should contain the following properties:
* - selector {String} a css selector targeting the node to edit
* - oldHTML {String}
* - newHTML {String}
* - validate {Function} will be executed when the edition test is done,
* after the new outer-html has been inserted. Should be used to verify
* the actual DOM, see if it corresponds to the newHTML string provided
* @param {InspectorPanel} inspector The instance of InspectorPanel currently
* opened
*/
function* runEditOuterHTMLTest(test, inspector) {
info("Running an edit outerHTML test on '" + test.selector + "'");
yield selectNode(test.selector, inspector);
let oldNodeFront = inspector.selection.nodeFront;
let onUpdated = inspector.once("inspector-updated");
info("Listen for reselectedonremoved and edit the outerHTML");
let onReselected = inspector.markup.once("reselectedonremoved");
yield inspector.markup.updateNodeOuterHTML(inspector.selection.nodeFront,
test.newHTML, test.oldHTML);
yield onReselected;
// Typically selectedNode will === pageNode, but if a new element has been injected in front
// of it, this will not be the case. If this happens.
let selectedNodeFront = inspector.selection.nodeFront;
let pageNodeFront = yield inspector.walker.querySelector(inspector.walker.rootNode, test.selector);
let pageNode = getNode(test.selector);
if (test.validate) {
yield test.validate(pageNode, pageNodeFront, selectedNodeFront, inspector);
} else {
is(pageNodeFront, selectedNodeFront, "Original node (grabbed by selector) is selected");
is(pageNode.outerHTML, test.newHTML, "Outer HTML has been updated");
}
// Wait for the inspector to be fully updated to avoid causing errors by
// abruptly closing hanging requests when the test ends
yield onUpdated;
}
|