blob: 5a0c5f661e6c25a58204c17d137ba9e2103f199a (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Tests if the statistics panel displays correctly.
*/
add_task(async function () {
const { monitor } = await initNetMonitor(STATISTICS_URL, { requestCount: 1 });
info("Starting test... ");
const panel = monitor.panelWin;
const { document, store, windowRequire, connector } = panel;
const Actions = windowRequire("devtools/client/netmonitor/src/actions/index");
ok(
document.querySelector(".monitor-panel"),
"The current main panel is correct."
);
info("Displaying statistics panel");
store.dispatch(Actions.openStatistics(connector, true));
ok(
document.querySelector(".statistics-panel"),
"The current main panel is correct."
);
info("Waiting for placeholder to display");
await waitUntil(
() =>
document.querySelectorAll(".pie-chart-container[placeholder=true]")
.length == 2
);
ok(true, "Two placeholder pie charts appear to be rendered correctly.");
await waitUntil(
() =>
document.querySelectorAll(".table-chart-container[placeholder=true]")
.length == 2
);
ok(true, "Two placeholde table charts appear to be rendered correctly.");
info("Waiting for chart to display");
await waitUntil(
() =>
document.querySelectorAll(".pie-chart-container:not([placeholder=true])")
.length == 2
);
ok(true, "Two real pie charts appear to be rendered correctly.");
await waitUntil(
() =>
document.querySelectorAll(
".table-chart-container:not([placeholder=true])"
).length == 2
);
ok(true, "Two real table charts appear to be rendered correctly.");
await teardown(monitor);
});
|