mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-06-15 04:58:43 +00:00
94 lines
3.4 KiB
JavaScript
94 lines
3.4 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
/**
|
|
* Tests if JSONP responses are handled correctly.
|
|
*/
|
|
|
|
add_task(function* () {
|
|
let { L10N } = require("devtools/client/netmonitor/l10n");
|
|
|
|
let { tab, monitor } = yield initNetMonitor(JSONP_URL);
|
|
info("Starting test... ");
|
|
|
|
let { document, NetMonitorView } = monitor.panelWin;
|
|
let { RequestsMenu } = NetMonitorView;
|
|
|
|
RequestsMenu.lazyUpdate = false;
|
|
|
|
let wait = waitForNetworkEvents(monitor, 2);
|
|
yield ContentTask.spawn(tab.linkedBrowser, {}, function* () {
|
|
content.wrappedJSObject.performRequests();
|
|
});
|
|
yield wait;
|
|
|
|
verifyRequestItemTarget(RequestsMenu, RequestsMenu.getItemAtIndex(0),
|
|
"GET", CONTENT_TYPE_SJS + "?fmt=jsonp&jsonp=$_0123Fun", {
|
|
status: 200,
|
|
statusText: "OK",
|
|
type: "json",
|
|
fullMimeType: "text/json; charset=utf-8",
|
|
size: L10N.getFormatStrWithNumbers("networkMenu.sizeB", 41),
|
|
time: true
|
|
});
|
|
verifyRequestItemTarget(RequestsMenu, RequestsMenu.getItemAtIndex(1),
|
|
"GET", CONTENT_TYPE_SJS + "?fmt=jsonp2&jsonp=$_4567Sad", {
|
|
status: 200,
|
|
statusText: "OK",
|
|
type: "json",
|
|
fullMimeType: "text/json; charset=utf-8",
|
|
size: L10N.getFormatStrWithNumbers("networkMenu.sizeB", 54),
|
|
time: true
|
|
});
|
|
|
|
wait = waitForDOM(document, "#response-tabpanel");
|
|
EventUtils.sendMouseEvent({ type: "mousedown" },
|
|
document.getElementById("details-pane-toggle"));
|
|
EventUtils.sendMouseEvent({ type: "mousedown" },
|
|
document.querySelectorAll("#details-pane tab")[3]);
|
|
yield wait;
|
|
|
|
testResponseTab("$_0123Fun", "\"Hello JSONP!\"");
|
|
|
|
wait = waitForDOM(document, "#response-tabpanel .tree-section");
|
|
RequestsMenu.selectedIndex = 1;
|
|
yield wait;
|
|
|
|
testResponseTab("$_4567Sad", "\"Hello weird JSONP!\"");
|
|
|
|
yield teardown(monitor);
|
|
|
|
function testResponseTab(func, greeting) {
|
|
let tabpanel = document.querySelectorAll("#details-pane tabpanel")[3];
|
|
|
|
is(tabpanel.querySelector(".response-error-header") === null, true,
|
|
"The response error header doesn't have the intended visibility.");
|
|
is(tabpanel.querySelector(".tree-section .treeLabel").textContent,
|
|
L10N.getFormatStr("jsonpScopeName", func),
|
|
"The response json view has the intened visibility and correct title.");
|
|
is(tabpanel.querySelector(".editor-mount iframe") === null, true,
|
|
"The response editor doesn't have the intended visibility.");
|
|
is(tabpanel.querySelector(".responseImageBox") === null, true,
|
|
"The response image box doesn't have the intended visibility.");
|
|
|
|
is(tabpanel.querySelectorAll(".tree-section").length, 1,
|
|
"There should be 1 tree sections displayed in this tabpanel.");
|
|
is(tabpanel.querySelectorAll(".treeRow:not(.tree-section)").length, 1,
|
|
"There should be 1 json properties displayed in this tabpanel.");
|
|
is(tabpanel.querySelectorAll(".empty-notice").length, 0,
|
|
"The empty notice should not be displayed in this tabpanel.");
|
|
|
|
let labels = tabpanel
|
|
.querySelectorAll("tr:not(.tree-section) .treeLabelCell .treeLabel");
|
|
let values = tabpanel
|
|
.querySelectorAll("tr:not(.tree-section) .treeValueCell .objectBox");
|
|
|
|
is(labels[0].textContent, "greeting",
|
|
"The first json property name was incorrect.");
|
|
is(values[0].textContent, greeting,
|
|
"The first json property value was incorrect.");
|
|
}
|
|
});
|