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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/**
* Tests that creating, collpasing and expanding variables in the
* variables view works as expected.
*/
const TAB_URL = EXAMPLE_URL + "doc_recursion-stack.html";
function test() {
initDebugger(TAB_URL).then(([aTab, aDebuggee, aPanel]) => {
let variables = aPanel.panelWin.DebuggerView.Variables;
let testScope = variables.addScope("test");
let testVar = testScope.addItem("something");
let duplVar = testScope.addItem("something");
info("Scope id: " + testScope.id);
info("Scope name: " + testScope.name);
info("Variable id: " + testVar.id);
info("Variable name: " + testVar.name);
ok(testScope,
"Should have created a scope.");
is(duplVar, null,
"Shouldn't be able to duplicate variables in the same scope.");
ok(testVar,
"Should have created a variable.");
ok(testVar.id.contains("something"),
"The newly created variable should have the default id set.");
is(testVar.name, "something",
"The newly created variable should have the desired name set.");
ok(!testVar.displayValue,
"The newly created variable should not have a displayed value yet (1).");
ok(!testVar.displayValueClassName,
"The newly created variable should not have a displayed value yet (2).");
ok(testVar.target,
"The newly created scope should point to a target node.");
ok(testVar.target.id.contains("something"),
"Should have the correct variable id on the element.");
is(testVar.target.querySelector(".name").getAttribute("value"), "something",
"Any new variable should have the designated name.");
is(testVar.target.querySelector(".variables-view-element-details.enum").childNodes.length, 0,
"Any new variable should have a container with no enumerable child nodes.");
is(testVar.target.querySelector(".variables-view-element-details.nonenum").childNodes.length, 0,
"Any new variable should have a container with no non-enumerable child nodes.");
ok(!testVar.expanded,
"Any new created scope should be initially collapsed.");
ok(testVar.visible,
"Any new created scope should be initially visible.");
let expandCallbackArg = null;
let collapseCallbackArg = null;
let toggleCallbackArg = null;
let hideCallbackArg = null;
let showCallbackArg = null;
testVar.onexpand = aScope => expandCallbackArg = aScope;
testVar.oncollapse = aScope => collapseCallbackArg = aScope;
testVar.ontoggle = aScope => toggleCallbackArg = aScope;
testVar.onhide = aScope => hideCallbackArg = aScope;
testVar.onshow = aScope => showCallbackArg = aScope;
testVar.expand();
ok(testVar.expanded,
"The testVar shouldn't be collapsed anymore.");
is(expandCallbackArg, testVar,
"The expandCallback wasn't called as it should.");
testVar.collapse();
ok(!testVar.expanded,
"The testVar should be collapsed again.");
is(collapseCallbackArg, testVar,
"The collapseCallback wasn't called as it should.");
testVar.expanded = true;
ok(testVar.expanded,
"The testVar shouldn't be collapsed anymore.");
testVar.toggle();
ok(!testVar.expanded,
"The testVar should be collapsed again.");
is(toggleCallbackArg, testVar,
"The toggleCallback wasn't called as it should.");
testVar.hide();
ok(!testVar.visible,
"The testVar should be invisible after hiding.");
is(hideCallbackArg, testVar,
"The hideCallback wasn't called as it should.");
testVar.show();
ok(testVar.visible,
"The testVar should be visible again.");
is(showCallbackArg, testVar,
"The showCallback wasn't called as it should.");
testVar.visible = false;
ok(!testVar.visible,
"The testVar should be invisible after hiding.");
ok(!testVar.expanded,
"The testVar should remember it is collapsed even if it is hidden.");
testVar.visible = true;
ok(testVar.visible,
"The testVar should be visible after reshowing.");
ok(!testVar.expanded,
"The testVar should remember it is collapsed after it is reshown.");
EventUtils.sendMouseEvent({ type: "mousedown" },
testVar.target.querySelector(".name"),
aPanel.panelWin);
ok(testVar.expanded,
"Clicking the testVar name should expand it.");
EventUtils.sendMouseEvent({ type: "mousedown" },
testVar.target.querySelector(".name"),
aPanel.panelWin);
ok(!testVar.expanded,
"Clicking again the testVar name should collapse it.");
EventUtils.sendMouseEvent({ type: "mousedown" },
testVar.target.querySelector(".arrow"),
aPanel.panelWin);
ok(testVar.expanded,
"Clicking the testVar arrow should expand it.");
EventUtils.sendMouseEvent({ type: "mousedown" },
testVar.target.querySelector(".arrow"),
aPanel.panelWin);
ok(!testVar.expanded,
"Clicking again the testVar arrow should collapse it.");
EventUtils.sendMouseEvent({ type: "mousedown" },
testVar.target.querySelector(".title"),
aPanel.panelWin);
ok(testVar.expanded,
"Clicking the testVar title should expand it again.");
testVar.addItem("child", {
value: {
type: "object",
class: "Object"
}
});
let testChild = testVar.get("child");
ok(testChild,
"Should have created a child property.");
ok(testChild.id.contains("child"),
"The newly created property should have the default id set.");
is(testChild.name, "child",
"The newly created property should have the desired name set.");
is(testChild.displayValue, "Object",
"The newly created property should not have a displayed value yet (1).");
is(testChild.displayValueClassName, "token-other",
"The newly created property should not have a displayed value yet (2).");
ok(testChild.target,
"The newly created scope should point to a target node.");
ok(testChild.target.id.contains("child"),
"Should have the correct property id on the element.");
is(testChild.target.querySelector(".name").getAttribute("value"), "child",
"Any new property should have the designated name.");
is(testChild.target.querySelector(".variables-view-element-details.enum").childNodes.length, 0,
"Any new property should have a container with no enumerable child nodes.");
is(testChild.target.querySelector(".variables-view-element-details.nonenum").childNodes.length, 0,
"Any new property should have a container with no non-enumerable child nodes.");
ok(!testChild.expanded,
"Any new created scope should be initially collapsed.");
ok(testChild.visible,
"Any new created scope should be initially visible.");
EventUtils.sendMouseEvent({ type: "mousedown" },
testChild.target.querySelector(".name"),
aPanel.panelWin);
ok(testChild.expanded,
"Clicking the testChild name should expand it.");
EventUtils.sendMouseEvent({ type: "mousedown" },
testChild.target.querySelector(".name"),
aPanel.panelWin);
ok(!testChild.expanded,
"Clicking again the testChild name should collapse it.");
EventUtils.sendMouseEvent({ type: "mousedown" },
testChild.target.querySelector(".arrow"),
aPanel.panelWin);
ok(testChild.expanded,
"Clicking the testChild arrow should expand it.");
EventUtils.sendMouseEvent({ type: "mousedown" },
testChild.target.querySelector(".arrow"),
aPanel.panelWin);
ok(!testChild.expanded,
"Clicking again the testChild arrow should collapse it.");
EventUtils.sendMouseEvent({ type: "mousedown" },
testChild.target.querySelector(".title"),
aPanel.panelWin);
closeDebuggerAndFinish(aPanel);
});
}
|