summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/test/browser_net_persistent_logs.js
blob: ed44f8dfd1cbb0385e2eba75c751d2a68a11b6d5 (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
66
67
68
69
70
71
72
73
74
75
76
77
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

/**
 * Tests if the network monitor leaks on initialization and sudden destruction.
 * You can also use this initialization format as a template for other tests.
 */

add_task(async function () {
  const { monitor } = await initNetMonitor(SINGLE_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));

  Services.prefs.setBoolPref("devtools.netmonitor.persistlog", false);

  await reloadAndWait();

  // Using waitUntil in the test is necessary to ensure all requests are added correctly.
  // Because reloadAndWait call may catch early uncaught requests from initNetMonitor, so
  // the actual number of requests after reloadAndWait could be wrong since all requests
  // haven't finished.
  await waitUntil(
    () => document.querySelectorAll(".request-list-item").length === 2
  );
  is(
    document.querySelectorAll(".request-list-item").length,
    2,
    "The request list should have two items at this point."
  );

  await reloadAndWait();

  await waitUntil(
    () => document.querySelectorAll(".request-list-item").length === 2
  );
  // Since the reload clears the log, we still expect two requests in the log
  is(
    document.querySelectorAll(".request-list-item").length,
    2,
    "The request list should still have two items at this point."
  );

  // Now we toggle the persistence logs on
  Services.prefs.setBoolPref("devtools.netmonitor.persistlog", true);

  await reloadAndWait();

  await waitUntil(
    () => document.querySelectorAll(".request-list-item").length === 4
  );
  // Since we togged the persistence logs, we expect four items after the reload
  is(
    document.querySelectorAll(".request-list-item").length,
    4,
    "The request list should now have four items at this point."
  );

  Services.prefs.setBoolPref("devtools.netmonitor.persistlog", false);
  return teardown(monitor);

  /**
   * Reload the page and wait for 2 GET requests.
   */
  async function reloadAndWait() {
    const wait = waitForNetworkEvents(monitor, 2);
    await reloadBrowser();
    return wait;
  }
});