blob: d4e3e9eaab40af3bd524da24c90ebe79b84449c8 (
plain)
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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Tests that the request for a domain that is not found shows
* correctly.
*/
add_task(async function () {
const URL = "https://not-existed.com/";
const { monitor } = await initNetMonitor(URL, {
requestCount: 1,
waitForLoad: false,
});
info("Starting test... ");
const { document, store, windowRequire } = monitor.panelWin;
const Actions = windowRequire("devtools/client/netmonitor/src/actions/index");
store.dispatch(Actions.batchEnable(false));
const wait = waitForNetworkEvents(monitor, 1);
reloadBrowser({ waitForLoad: false });
await wait;
const firstItem = document.querySelectorAll(".request-list-item")[0];
is(
firstItem.querySelector(".requests-list-url").innerText,
URL,
"The url in the displayed request is correct"
);
is(
firstItem.querySelector(".requests-list-transferred").innerText,
"NS_ERROR_UNKNOWN_HOST",
"The error in the displayed request is correct"
);
await teardown(monitor);
});
|