summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/test/browser_net_status-bar.js
blob: 3ca8ac2da61a49cbade4d2d10350d1de5eccf3f6 (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

/**
 * Test whether the StatusBar properly renders expected labels.
 */
add_task(async () => {
  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));

  await SpecialPowers.pushPrefEnv({
    set: [["privacy.reduceTimerPrecision", false]],
  });

  const requestsDone = waitForNetworkEvents(monitor, 1);
  const markersDone = waitForTimelineMarkers(monitor);
  await reloadBrowser();
  await Promise.all([requestsDone, markersDone]);

  const statusBar = document.querySelector(".devtools-toolbar-bottom");
  const requestCount = statusBar.querySelector(
    ".requests-list-network-summary-count"
  );
  const size = statusBar.querySelector(
    ".requests-list-network-summary-transfer"
  );
  const onContentLoad = statusBar.querySelector(".dom-content-loaded");
  const onLoad = statusBar.querySelector(".load");

  // All expected labels should be there
  ok(requestCount, "There must be request count label");
  ok(size, "There must be size label");
  ok(onContentLoad, "There must be DOMContentLoaded label");
  ok(onLoad, "There must be load label");

  // The content should not be empty. The UI update can also be async,
  // so use waitUntil.
  await waitUntil(() => requestCount.textContent);
  ok(true, "There must be request count label text");

  await waitUntil(() => size.textContent);
  ok(true, "There must be size label text");

  await waitUntil(() => onContentLoad.textContent);
  ok(true, "There must be DOMContentLoaded label text");

  await waitUntil(() => onLoad.textContent);
  ok(true, "There must be load label text");

  return teardown(monitor);
});