gecko/browser/devtools/debugger/test/browser_dbg_variables-view-frame-parameters-03.js
Mihai Sucan a2344897e5 Bug 843004 - Part 4: Tests for pretty output of objects; r=nfitzgerald
--HG--
rename : browser/devtools/webconsole/test/browser_webconsole_bug_598357_jsterm_output.js => browser/devtools/webconsole/test/browser_webconsole_output_01.js
2013-12-19 23:07:54 +02:00

156 lines
6.4 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/**
* Make sure that the variables view displays the right variables and
* properties in the global scope when debugger is paused.
*/
const TAB_URL = EXAMPLE_URL + "doc_frame-parameters.html";
let gTab, gDebuggee, gPanel, gDebugger;
let gVariables;
function test() {
// Debug test slaves are a bit slow at this test.
requestLongerTimeout(2);
initDebugger(TAB_URL).then(([aTab, aDebuggee, aPanel]) => {
gTab = aTab;
gDebuggee = aDebuggee;
gPanel = aPanel;
gDebugger = gPanel.panelWin;
gVariables = gDebugger.DebuggerView.Variables;
waitForSourceAndCaretAndScopes(gPanel, ".html", 24)
.then(expandGlobalScope)
.then(testGlobalScope)
.then(expandWindowVariable)
.then(testWindowVariable)
.then(() => resumeDebuggerThenCloseAndFinish(gPanel))
.then(null, aError => {
ok(false, "Got an error: " + aError.message + "\n" + aError.stack);
});
EventUtils.sendMouseEvent({ type: "click" },
gDebuggee.document.querySelector("button"),
gDebuggee);
});
}
function expandGlobalScope() {
let deferred = promise.defer();
let globalScope = gVariables.getScopeAtIndex(1);
is(globalScope.expanded, false,
"The global scope should not be expanded by default.");
gDebugger.once(gDebugger.EVENTS.FETCHED_VARIABLES, deferred.resolve);
EventUtils.sendMouseEvent({ type: "mousedown" },
globalScope.target.querySelector(".name"),
gDebugger);
return deferred.promise;
}
function testGlobalScope() {
let globalScope = gVariables.getScopeAtIndex(1);
is(globalScope.expanded, true,
"The global scope should now be expanded.");
is(globalScope.get("InstallTrigger").target.querySelector(".name").getAttribute("value"), "InstallTrigger",
"Should have the right property name for 'InstallTrigger'.");
is(globalScope.get("InstallTrigger").target.querySelector(".value").getAttribute("value"), "Object",
"Should have the right property value for 'InstallTrigger'.");
is(globalScope.get("SpecialPowers").target.querySelector(".name").getAttribute("value"), "SpecialPowers",
"Should have the right property name for 'SpecialPowers'.");
is(globalScope.get("SpecialPowers").target.querySelector(".value").getAttribute("value"), "Object",
"Should have the right property value for 'SpecialPowers'.");
is(globalScope.get("window").target.querySelector(".name").getAttribute("value"), "window",
"Should have the right property name for 'window'.");
is(globalScope.get("window").target.querySelector(".value").getAttribute("value"),
"Window \u2192 doc_frame-parameters.html",
"Should have the right property value for 'window'.");
is(globalScope.get("document").target.querySelector(".name").getAttribute("value"), "document",
"Should have the right property name for 'document'.");
is(globalScope.get("document").target.querySelector(".value").getAttribute("value"),
"HTMLDocument \u2192 doc_frame-parameters.html",
"Should have the right property value for 'document'.");
is(globalScope.get("undefined").target.querySelector(".name").getAttribute("value"), "undefined",
"Should have the right property name for 'undefined'.");
is(globalScope.get("undefined").target.querySelector(".value").getAttribute("value"), "undefined",
"Should have the right property value for 'undefined'.");
is(globalScope.get("undefined").target.querySelector(".enum").childNodes.length, 0,
"Should have no child enumerable properties for 'undefined'.");
is(globalScope.get("undefined").target.querySelector(".nonenum").childNodes.length, 0,
"Should have no child non-enumerable properties for 'undefined'.");
}
function expandWindowVariable() {
let deferred = promise.defer();
let windowVar = gVariables.getScopeAtIndex(1).get("window");
is(windowVar.expanded, false,
"The window variable should not be expanded by default.");
gDebugger.once(gDebugger.EVENTS.FETCHED_PROPERTIES, deferred.resolve);
EventUtils.sendMouseEvent({ type: "mousedown" },
windowVar.target.querySelector(".name"),
gDebugger);
return deferred.promise;
}
function testWindowVariable() {
let windowVar = gVariables.getScopeAtIndex(1).get("window");
is(windowVar.expanded, true,
"The window variable should now be expanded.");
is(windowVar.get("InstallTrigger").target.querySelector(".name").getAttribute("value"), "InstallTrigger",
"Should have the right property name for 'InstallTrigger'.");
is(windowVar.get("InstallTrigger").target.querySelector(".value").getAttribute("value"), "Object",
"Should have the right property value for 'InstallTrigger'.");
is(windowVar.get("SpecialPowers").target.querySelector(".name").getAttribute("value"), "SpecialPowers",
"Should have the right property name for 'SpecialPowers'.");
is(windowVar.get("SpecialPowers").target.querySelector(".value").getAttribute("value"), "Object",
"Should have the right property value for 'SpecialPowers'.");
is(windowVar.get("window").target.querySelector(".name").getAttribute("value"), "window",
"Should have the right property name for 'window'.");
is(windowVar.get("window").target.querySelector(".value").getAttribute("value"),
"Window \u2192 doc_frame-parameters.html",
"Should have the right property value for 'window'.");
is(windowVar.get("document").target.querySelector(".name").getAttribute("value"), "document",
"Should have the right property name for 'document'.");
is(windowVar.get("document").target.querySelector(".value").getAttribute("value"),
"HTMLDocument \u2192 doc_frame-parameters.html",
"Should have the right property value for 'document'.");
is(windowVar.get("undefined").target.querySelector(".name").getAttribute("value"), "undefined",
"Should have the right property name for 'undefined'.");
is(windowVar.get("undefined").target.querySelector(".value").getAttribute("value"), "undefined",
"Should have the right property value for 'undefined'.");
is(windowVar.get("undefined").target.querySelector(".enum").childNodes.length, 0,
"Should have no child enumerable properties for 'undefined'.");
is(windowVar.get("undefined").target.querySelector(".nonenum").childNodes.length, 0,
"Should have no child non-enumerable properties for 'undefined'.");
}
registerCleanupFunction(function() {
gTab = null;
gDebuggee = null;
gPanel = null;
gDebugger = null;
gVariables = null;
});