forked from mirrors/gecko-dev
Changed the way we to access contents of `.CodeMirror`, by using `CodeMirror.getValue()` instead of `.textContent` Differential Revision: https://phabricator.services.mozilla.com/D22079 --HG-- extra : moz-landing-system : lando
64 lines
2.5 KiB
JavaScript
64 lines
2.5 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
/**
|
|
* Tests if the POST requests display the correct information in the UI,
|
|
* for JSON payloads.
|
|
*/
|
|
|
|
add_task(async function() {
|
|
const { L10N } = require("devtools/client/netmonitor/src/utils/l10n");
|
|
|
|
const { tab, monitor } = await initNetMonitor(POST_JSON_URL);
|
|
info("Starting test... ");
|
|
|
|
const { document, store, windowRequire } = monitor.panelWin;
|
|
const Actions = windowRequire("devtools/client/netmonitor/src/actions/index");
|
|
|
|
store.dispatch(Actions.batchEnable(false));
|
|
|
|
// Execute requests.
|
|
await performRequests(monitor, tab, 1);
|
|
|
|
// Wait for all tree view updated by react, Bug 1514750 - wait for editor also
|
|
const waitSections = waitForDOM(document, "#params-panel .tree-section", 2);
|
|
const waitSourceEditor = waitForDOM(document, "#params-panel .CodeMirror-code");
|
|
store.dispatch(Actions.toggleNetworkDetails());
|
|
EventUtils.sendMouseEvent({ type: "click" },
|
|
document.querySelector("#params-tab"));
|
|
await Promise.all([waitSections, waitSourceEditor]);
|
|
const tabpanel = document.querySelector("#params-panel");
|
|
|
|
ok(tabpanel.querySelector(".treeTable"),
|
|
"The request params doesn't have the indended visibility.");
|
|
// Bug 1514750 - Show JSON params in plain text view also
|
|
ok(tabpanel.querySelector(".CodeMirror-code"),
|
|
"The request post data doesn't have the indended visibility.");
|
|
is(tabpanel.querySelectorAll(".tree-section").length, 2,
|
|
"There should be 2 tree sections displayed in this tabpanel.");
|
|
is(tabpanel.querySelectorAll(".empty-notice").length, 0,
|
|
"The empty notice should not be displayed in this tabpanel.");
|
|
|
|
const treeSections = tabpanel.querySelectorAll(".tree-section");
|
|
|
|
is(treeSections[0].querySelector(".treeLabel").textContent,
|
|
L10N.getStr("jsonScopeName"), "The post section doesn't have the correct title.");
|
|
is(treeSections[1].querySelector(".treeLabel").textContent,
|
|
L10N.getStr("paramsPostPayload"),
|
|
"The post section doesn't have the correct title.");
|
|
|
|
const labels = tabpanel
|
|
.querySelectorAll("tr:not(.tree-section) .treeLabelCell .treeLabel");
|
|
const values = tabpanel
|
|
.querySelectorAll("tr:not(.tree-section) .treeValueCell .objectBox");
|
|
|
|
is(labels[0].textContent, "a", "The JSON var name was incorrect.");
|
|
is(values[0].textContent, "1", "The JSON var value was incorrect.");
|
|
|
|
ok(getCodeMirrorValue(monitor).includes('{"a":1}'),
|
|
"The text shown in the source editor is incorrect.");
|
|
|
|
return teardown(monitor);
|
|
});
|