summaryrefslogtreecommitdiff
path: root/toolkit/devtools/netmonitor/test/browser_net_footer-summary.js
blob: 9677afaa46d0f6cb9e7d77c096a5c845923140cb (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

/**
 * Test if the summary text displayed in the network requests menu footer
 * is correct.
 */

function test() {
  requestLongerTimeout(2);
  let { PluralForm } = Cu.import("resource://gre/modules/PluralForm.jsm", {});

  initNetMonitor(FILTERING_URL).then(([aTab, aDebuggee, aMonitor]) => {
    info("Starting test... ");

    let { $, L10N, NetMonitorView } = aMonitor.panelWin;
    let { RequestsMenu } = NetMonitorView;

    RequestsMenu.lazyUpdate = false;
    testStatus();

    waitForNetworkEvents(aMonitor, 8).then(() => {
      testStatus();

      EventUtils.sendMouseEvent({ type: "click" }, $("#requests-menu-filter-html-button"));
      testStatus();

      EventUtils.sendMouseEvent({ type: "click" }, $("#requests-menu-filter-css-button"));
      testStatus();

      EventUtils.sendMouseEvent({ type: "click" }, $("#requests-menu-filter-js-button"));
      testStatus();

      EventUtils.sendMouseEvent({ type: "click" }, $("#requests-menu-filter-xhr-button"));
      testStatus();

      EventUtils.sendMouseEvent({ type: "click" }, $("#requests-menu-filter-fonts-button"));
      testStatus();

      EventUtils.sendMouseEvent({ type: "click" }, $("#requests-menu-filter-images-button"));
      testStatus();

      EventUtils.sendMouseEvent({ type: "click" }, $("#requests-menu-filter-media-button"));
      testStatus();

      EventUtils.sendMouseEvent({ type: "click" }, $("#requests-menu-filter-flash-button"));
      testStatus();

      info("Performing more requests.");
      aDebuggee.performRequests('{ "getMedia": true, "getFlash": true }');
      return waitForNetworkEvents(aMonitor, 8);
    })
    .then(() => {
      testStatus();

      EventUtils.sendMouseEvent({ type: "click" }, $("#requests-menu-filter-html-button"));
      testStatus();

      EventUtils.sendMouseEvent({ type: "click" }, $("#requests-menu-filter-css-button"));
      testStatus();

      EventUtils.sendMouseEvent({ type: "click" }, $("#requests-menu-filter-js-button"));
      testStatus();

      EventUtils.sendMouseEvent({ type: "click" }, $("#requests-menu-filter-xhr-button"));
      testStatus();

      EventUtils.sendMouseEvent({ type: "click" }, $("#requests-menu-filter-fonts-button"));
      testStatus();

      EventUtils.sendMouseEvent({ type: "click" }, $("#requests-menu-filter-images-button"));
      testStatus();

      EventUtils.sendMouseEvent({ type: "click" }, $("#requests-menu-filter-media-button"));
      testStatus();

      EventUtils.sendMouseEvent({ type: "click" }, $("#requests-menu-filter-flash-button"));
      testStatus();

      teardown(aMonitor).then(finish);
    })

    function testStatus() {
      let summary = $("#requests-menu-network-summary-label");
      let value = summary.getAttribute("value");
      info("Current summary: " + value);

      let visibleItems = RequestsMenu.visibleItems;
      let visibleRequestsCount = visibleItems.length;
      let totalRequestsCount = RequestsMenu.itemCount;
      info("Current requests: " + visibleRequestsCount + " of " + totalRequestsCount + ".");

      if (!totalRequestsCount || !visibleRequestsCount) {
        is(value, L10N.getStr("networkMenu.empty"),
          "The current summary text is incorrect, expected an 'empty' label.");
        return;
      }

      let totalBytes = RequestsMenu._getTotalBytesOfRequests(visibleItems);
      let totalMillis =
        RequestsMenu._getNewestRequest(visibleItems).attachment.endedMillis -
        RequestsMenu._getOldestRequest(visibleItems).attachment.startedMillis;

      info("Computed total bytes: " + totalBytes);
      info("Computed total millis: " + totalMillis);

      is(value, PluralForm.get(visibleRequestsCount, L10N.getStr("networkMenu.summary"))
        .replace("#1", visibleRequestsCount)
        .replace("#2", L10N.numberWithDecimals((totalBytes || 0) / 1024, 2))
        .replace("#3", L10N.numberWithDecimals((totalMillis || 0) / 1000, 2))
      , "The current summary text is incorrect.")
    }

    aDebuggee.performRequests('{ "getMedia": true, "getFlash": true }');
  });
}