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

"use strict";

/**
 * Check that network logs created when the Net panel is not visible
 * are displayed when the user shows the panel again.
 */
add_task(async () => {
  const { tab, monitor, toolbox } = await initNetMonitor(CUSTOM_GET_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));

  // Execute two requests
  await performRequests(monitor, tab, 2);

  // Wait for two logs
  await waitUntil(
    () => document.querySelectorAll(".request-list-item").length == 2
  );

  info("Select the inspector");
  await toolbox.selectTool("inspector");

  info("Wait for Net panel to be hidden");
  await waitUntil(() => document.visibilityState == "hidden");

  // Execute another two requests
  await performRequests(monitor, tab, 2);

  // The number of rendered requests should be the same since
  // requests shouldn't be rendered while the net panel is in
  // background
  is(
    document.querySelectorAll(".request-list-item").length,
    2,
    "There should be expected number of requests"
  );

  info("Select the Net panel again");
  await toolbox.selectTool("netmonitor");

  // Wait for another two logs to be rendered since the panel
  // is selected now.
  await waitUntil(
    () => document.querySelectorAll(".request-list-item").length == 4
  );

  return teardown(monitor);
});