summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/test/browser_net_post-data-01.js
blob: 6d5f8dc1b461558581ef3bb7e19a1dd88463e0ad (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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

/**
 * Tests if the POST requests display the correct information in the UI.
 */

add_task(function* () {
  let { L10N } = require("devtools/client/netmonitor/l10n");

  let { tab, monitor } = yield initNetMonitor(POST_DATA_URL);
  info("Starting test... ");

  let { document, EVENTS, Editor, NetMonitorView } = monitor.panelWin;
  let { RequestsMenu, NetworkDetails } = NetMonitorView;

  RequestsMenu.lazyUpdate = false;
  NetworkDetails._params.lazyEmpty = false;

  let wait = waitForNetworkEvents(monitor, 0, 2);
  yield ContentTask.spawn(tab.linkedBrowser, {}, function* () {
    content.wrappedJSObject.performRequests();
  });
  yield wait;

  verifyRequestItemTarget(RequestsMenu.getItemAtIndex(0),
    "POST", SIMPLE_SJS + "?foo=bar&baz=42&type=urlencoded", {
      status: 200,
      statusText: "Och Aye",
      type: "plain",
      fullMimeType: "text/plain; charset=utf-8",
      size: L10N.getFormatStrWithNumbers("networkMenu.sizeB", 12),
      time: true
    });
  verifyRequestItemTarget(RequestsMenu.getItemAtIndex(1),
    "POST", SIMPLE_SJS + "?foo=bar&baz=42&type=multipart", {
      status: 200,
      statusText: "Och Aye",
      type: "plain",
      fullMimeType: "text/plain; charset=utf-8",
      size: L10N.getFormatStrWithNumbers("networkMenu.sizeB", 12),
      time: true
    });

  let onEvent = monitor.panelWin.once(EVENTS.TAB_UPDATED);
  EventUtils.sendMouseEvent({ type: "mousedown" },
    document.getElementById("details-pane-toggle"));
  EventUtils.sendMouseEvent({ type: "mousedown" },
    document.querySelectorAll("#details-pane tab")[2]);
  yield onEvent;
  yield testParamsTab("urlencoded");

  onEvent = monitor.panelWin.once(EVENTS.TAB_UPDATED);
  RequestsMenu.selectedIndex = 1;
  yield onEvent;
  yield testParamsTab("multipart");

  return teardown(monitor);

  function* testParamsTab(type) {
    let tabEl = document.querySelectorAll("#details-pane tab")[2];
    let tabpanel = document.querySelectorAll("#details-pane tabpanel")[2];

    is(tabEl.getAttribute("selected"), "true",
      "The params tab in the network details pane should be selected.");

    function checkVisibility(box) {
      is(tabpanel.querySelector("#request-params-box")
        .hasAttribute("hidden"), !box.includes("params"),
        "The request params box doesn't have the indended visibility.");
      is(tabpanel.querySelector("#request-post-data-textarea-box")
        .hasAttribute("hidden"), !box.includes("textarea"),
        "The request post data textarea box doesn't have the indended visibility.");
    }

    is(tabpanel.querySelectorAll(".variables-view-scope").length, 2,
      "There should be 2 param scopes displayed in this tabpanel.");
    is(tabpanel.querySelectorAll(".variables-view-empty-notice").length, 0,
      "The empty notice should not be displayed in this tabpanel.");

    let queryScope = tabpanel.querySelectorAll(".variables-view-scope")[0];
    let postScope = tabpanel.querySelectorAll(".variables-view-scope")[1];

    is(queryScope.querySelector(".name").getAttribute("value"),
      L10N.getStr("paramsQueryString"),
      "The query scope doesn't have the correct title.");

    is(postScope.querySelector(".name").getAttribute("value"),
      L10N.getStr(type == "urlencoded" ? "paramsFormData" : "paramsPostPayload"),
      "The post scope doesn't have the correct title.");

    is(queryScope.querySelectorAll(".variables-view-variable .name")[0]
      .getAttribute("value"),
      "foo", "The first query param name was incorrect.");
    is(queryScope.querySelectorAll(".variables-view-variable .value")[0]
      .getAttribute("value"),
      "\"bar\"", "The first query param value was incorrect.");
    is(queryScope.querySelectorAll(".variables-view-variable .name")[1]
      .getAttribute("value"),
      "baz", "The second query param name was incorrect.");
    is(queryScope.querySelectorAll(".variables-view-variable .value")[1]
      .getAttribute("value"),
      "\"42\"", "The second query param value was incorrect.");
    is(queryScope.querySelectorAll(".variables-view-variable .name")[2]
      .getAttribute("value"),
      "type", "The third query param name was incorrect.");
    is(queryScope.querySelectorAll(".variables-view-variable .value")[2]
      .getAttribute("value"),
      "\"" + type + "\"", "The third query param value was incorrect.");

    if (type == "urlencoded") {
      checkVisibility("params");

      is(tabpanel.querySelectorAll(".variables-view-variable").length, 5,
        "There should be 5 param values displayed in this tabpanel.");
      is(queryScope.querySelectorAll(".variables-view-variable").length, 3,
        "There should be 3 param values displayed in the query scope.");
      is(postScope.querySelectorAll(".variables-view-variable").length, 2,
        "There should be 2 param values displayed in the post scope.");

      is(postScope.querySelectorAll(".variables-view-variable .name")[0]
        .getAttribute("value"),
        "foo", "The first post param name was incorrect.");
      is(postScope.querySelectorAll(".variables-view-variable .value")[0]
        .getAttribute("value"),
        "\"bar\"", "The first post param value was incorrect.");
      is(postScope.querySelectorAll(".variables-view-variable .name")[1]
        .getAttribute("value"),
        "baz", "The second post param name was incorrect.");
      is(postScope.querySelectorAll(".variables-view-variable .value")[1]
        .getAttribute("value"),
        "\"123\"", "The second post param value was incorrect.");
    } else {
      checkVisibility("params textarea");

      is(tabpanel.querySelectorAll(".variables-view-variable").length, 3,
        "There should be 3 param values displayed in this tabpanel.");
      is(queryScope.querySelectorAll(".variables-view-variable").length, 3,
        "There should be 3 param values displayed in the query scope.");
      is(postScope.querySelectorAll(".variables-view-variable").length, 0,
        "There should be 0 param values displayed in the post scope.");

      let editor = yield NetMonitorView.editor("#request-post-data-textarea");
      let text = editor.getText();

      ok(text.includes("Content-Disposition: form-data; name=\"text\""),
        "The text shown in the source editor is incorrect (1.1).");
      ok(text.includes("Content-Disposition: form-data; name=\"email\""),
        "The text shown in the source editor is incorrect (2.1).");
      ok(text.includes("Content-Disposition: form-data; name=\"range\""),
        "The text shown in the source editor is incorrect (3.1).");
      ok(text.includes("Content-Disposition: form-data; name=\"Custom field\""),
        "The text shown in the source editor is incorrect (4.1).");
      ok(text.includes("Some text..."),
        "The text shown in the source editor is incorrect (2.2).");
      ok(text.includes("42"),
        "The text shown in the source editor is incorrect (3.2).");
      ok(text.includes("Extra data"),
        "The text shown in the source editor is incorrect (4.2).");
      is(editor.getMode(), Editor.modes.text,
        "The mode active in the source editor is incorrect.");
    }
  }
});