Bug 1575274 - WebSocket Inspector Test: Filtering using free text. r=Honza

Test for filtering messages using the filter input.

Differential Revision: https://phabricator.services.mozilla.com/D42694

--HG--
extra : moz-landing-system : lando
This commit is contained in:
tanhengyeow 2019-08-30 17:04:15 +00:00
parent 36e147f925
commit c3820a997f
3 changed files with 106 additions and 0 deletions

View File

@ -52,6 +52,11 @@ class Toolbar extends Component {
};
}
componentWillUnmount() {
const { setFrameFilterText } = this.props;
setFrameFilterText("");
}
/**
* Render a separator.
*/

View File

@ -238,3 +238,4 @@ skip-if = (os == 'win' && os_version == '6.1' && !debug) # Bug 1547150
[browser_net_ws-basic.js]
[browser_net_ws-clear.js]
[browser_net_ws-filter-dropdown.js]
[browser_net-ws-filter-freetext.js]

View File

@ -0,0 +1,100 @@
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Test that WS connection is established successfully and filtering messages using freetext works correctly.
*/
add_task(async function() {
await SpecialPowers.pushPrefEnv({
set: [["devtools.netmonitor.features.webSockets", true]],
});
const { tab, monitor } = await initNetMonitor(WS_PAGE_URL);
info("Starting test... ");
const { document, store, windowRequire } = monitor.panelWin;
const Actions = windowRequire("devtools/client/netmonitor/src/actions/index");
const { getDisplayedFrames } = windowRequire(
"devtools/client/netmonitor/src/selectors/web-sockets"
);
store.dispatch(Actions.batchEnable(false));
// Wait for WS connection(s) to be established + send messages
await ContentTask.spawn(tab.linkedBrowser, {}, async () => {
await content.wrappedJSObject.openConnection(3);
await content.wrappedJSObject.openConnection(1);
});
const requests = document.querySelectorAll(".request-list-item");
is(requests.length, 2, "There should be two requests");
// Wait for all sent/received messages to be displayed in DevTools
wait = waitForDOM(
document,
"#messages-panel .ws-frames-list-table .ws-frame-list-item",
6
);
// Select the first request
EventUtils.sendMouseEvent({ type: "mousedown" }, requests[0]);
// Click on the "Messages" panel
EventUtils.sendMouseEvent(
{ type: "click" },
document.querySelector("#messages-tab")
);
await wait;
// Get all messages present in the "Messages" panel
const frames = document.querySelectorAll(
"#messages-panel .ws-frames-list-table .ws-frame-list-item"
);
// Check expected results
is(frames.length, 6, "There should be six frames");
// Fill filter input with text and check displayed messages
const type = string => {
for (const ch of string) {
EventUtils.synthesizeKey(ch, {}, monitor.panelWin);
}
};
const filterInput = document.querySelector(
"#messages-panel .devtools-filterinput"
);
filterInput.focus();
type("Payload 2");
// Wait till the text filter is applied.
await waitUntil(() => getDisplayedFrames(store.getState()).length == 2);
const filteredFrames = document.querySelectorAll(
"#messages-panel .ws-frames-list-table .ws-frame-list-item"
);
is(filteredFrames.length, 2, "There should be two frames");
// Select the second request and check that the filter input is cleared
EventUtils.sendMouseEvent({ type: "mousedown" }, requests[1]);
// Wait till the text filter is applied. There should be two frames rendered
await waitUntil(
() =>
document.querySelectorAll(
"#messages-panel .ws-frames-list-table .ws-frame-list-item"
).length == 2
);
const secondRequestFrames = document.querySelectorAll(
"#messages-panel .ws-frames-list-table .ws-frame-list-item"
);
is(secondRequestFrames.length, 2, "There should be two frames");
is(filterInput.value, "", "The filter input is cleared");
// Close WS connection
await ContentTask.spawn(tab.linkedBrowser, {}, async () => {
await content.wrappedJSObject.closeConnection();
});
await teardown(monitor);
});