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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Test whether the UI state properly reflects existence of requests
* displayed in the Net panel. The following parts of the UI are
* tested:
* 1) Side panel visibility
* 2) Side panel toggle button
* 3) Empty user message visibility
* 4) Number of requests displayed
*/
add_task(async function () {
const { monitor } = await initNetMonitor(SIMPLE_URL, {
requestCount: 1,
});
info("Starting test... ");
const { document, store, windowRequire } = monitor.panelWin;
const Actions = windowRequire("devtools/client/netmonitor/src/actions/index");
store.dispatch(Actions.batchEnable(false));
ok(
document.querySelector(".request-list-empty-notice"),
"An empty notice should be displayed when the frontend is opened."
);
is(
store.getState().requests.requests.length,
0,
"The requests menu should be empty when the frontend is opened."
);
is(
!!document.querySelector(".network-details-bar"),
false,
"The network details panel should be hidden when the frontend is opened."
);
await reloadAndWait();
ok(
!document.querySelector(".request-list-empty-notice"),
"The empty notice should be hidden after the first request."
);
is(
store.getState().requests.requests.length,
1,
"The requests menu should not be empty after the first request."
);
is(
!!document.querySelector(".network-details-bar"),
false,
"The network details panel should still be hidden after the first request."
);
await reloadAndWait();
ok(
!document.querySelector(".request-list-empty-notice"),
"The empty notice should be still hidden after a reload."
);
is(
store.getState().requests.requests.length,
1,
"The requests menu should not be empty after a reload."
);
is(
!!document.querySelector(".network-details-bar"),
false,
"The network details panel should still be hidden after a reload."
);
await clearNetworkEvents(monitor);
ok(
document.querySelector(".request-list-empty-notice"),
"An empty notice should be displayed again after clear."
);
is(
store.getState().requests.requests.length,
0,
"The requests menu should be empty after clear."
);
is(
!!document.querySelector(".network-details-bar"),
false,
"The network details panel should still be hidden after clear."
);
return teardown(monitor);
async function reloadAndWait() {
const wait = waitForNetworkEvents(monitor, 1);
await reloadBrowser();
return wait;
}
});
|