summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/fetch/test_response.js
blob: 40a124bfc0bf44e26e394b5d6ae77d7cf2acff72 (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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
function testDefaultCtor() {
  var res = new Response();
  is(res.type, "default", "Default Response type is default");
  ok(
    res.headers instanceof Headers,
    "Response should have non-null Headers object"
  );
  is(res.url, "", "URL should be empty string");
  is(res.status, 200, "Default status is 200");
  is(res.statusText, "", "Default statusText is an empty string");
}

function testClone() {
  var orig = new Response("This is a body", {
    status: 404,
    statusText: "Not Found",
    headers: { "Content-Length": 5 },
  });
  var clone = orig.clone();
  is(clone.status, 404, "Response status is 404");
  is(clone.statusText, "Not Found", "Response statusText is POST");
  ok(
    clone.headers instanceof Headers,
    "Response should have non-null Headers object"
  );

  is(
    clone.headers.get("content-length"),
    "5",
    "Response content-length should be 5."
  );
  orig.headers.set("content-length", 6);
  is(
    clone.headers.get("content-length"),
    "5",
    "Response content-length should be 5."
  );

  ok(!orig.bodyUsed, "Original body is not consumed.");
  ok(!clone.bodyUsed, "Clone body is not consumed.");

  var origBody = null;
  var clone2 = null;
  return orig
    .text()
    .then(function (body) {
      origBody = body;
      is(origBody, "This is a body", "Original body string matches");
      ok(orig.bodyUsed, "Original body is consumed.");
      ok(!clone.bodyUsed, "Clone body is not consumed.");

      try {
        orig.clone();
        ok(false, "Cannot clone Response whose body is already consumed");
      } catch (e) {
        is(
          e.name,
          "TypeError",
          "clone() of consumed body should throw TypeError"
        );
      }

      clone2 = clone.clone();
      return clone.text();
    })
    .then(function (body) {
      is(body, origBody, "Clone body matches original body.");
      ok(clone.bodyUsed, "Clone body is consumed.");

      try {
        clone.clone();
        ok(false, "Cannot clone Response whose body is already consumed");
      } catch (e) {
        is(
          e.name,
          "TypeError",
          "clone() of consumed body should throw TypeError"
        );
      }

      return clone2.text();
    })
    .then(function (body) {
      is(body, origBody, "Clone body matches original body.");
      ok(clone2.bodyUsed, "Clone body is consumed.");

      try {
        clone2.clone();
        ok(false, "Cannot clone Response whose body is already consumed");
      } catch (e) {
        is(
          e.name,
          "TypeError",
          "clone() of consumed body should throw TypeError"
        );
      }
    });
}

function testCloneUnfiltered() {
  var url =
    "http://example.com/tests/dom/security/test/cors/file_CrossSiteXHR_server.sjs?status=200";
  return fetch(url, { mode: "no-cors" }).then(function (response) {
    // By default the chrome-only function should not be available.
    is(response.type, "opaque", "response should be opaque");
    is(
      response.cloneUnfiltered,
      undefined,
      "response.cloneUnfiltered should be undefined"
    );

    // When the test is run in a worker context we can't actually try to use
    // the chrome-only function.  SpecialPowers is not defined.
    if (typeof SpecialPowers !== "object") {
      return;
    }

    // With a chrome code, however, should be able to get an unfiltered response.
    var chromeResponse = SpecialPowers.wrap(response);
    is(
      typeof chromeResponse.cloneUnfiltered,
      "function",
      "chromeResponse.cloneFiltered should be a function"
    );
    var unfiltered = chromeResponse.cloneUnfiltered();
    is(unfiltered.type, "default", "unfiltered response should be default");
    is(unfiltered.status, 200, "unfiltered response should have 200 status");
  });
}

function testError() {
  var res = Response.error();
  is(res.status, 0, "Error response status should be 0");
  try {
    res.headers.set("someheader", "not allowed");
    ok(false, "Error response should have immutable headers");
  } catch (e) {
    ok(true, "Error response should have immutable headers");
  }
}

function testRedirect() {
  var res = Response.redirect("./redirect.response");
  is(res.status, 302, "Default redirect has status code 302");
  is(res.statusText, "", "Default redirect has status text empty");
  var h = res.headers.get("location");
  ok(
    h === new URL("./redirect.response", self.location.href).href,
    "Location header should be correct absolute URL"
  );
  try {
    res.headers.set("someheader", "not allowed");
    ok(false, "Redirects should have immutable headers");
  } catch (e) {
    ok(true, "Redirects should have immutable headers");
  }

  var successStatus = [301, 302, 303, 307, 308];
  for (var i = 0; i < successStatus.length; ++i) {
    var res = Response.redirect("./redirect.response", successStatus[i]);
    is(res.status, successStatus[i], "Status code should match");
  }

  var failStatus = [300, 0, 304, 305, 306, 309, 500];
  for (var i = 0; i < failStatus.length; ++i) {
    try {
      var res = Response.redirect(".", failStatus[i]);
      ok(false, "Invalid status code should fail " + failStatus[i]);
    } catch (e) {
      is(
        e.name,
        "RangeError",
        "Invalid status code should fail " + failStatus[i]
      );
    }
  }
}

function testOk() {
  var r1 = new Response("", { status: 200 });
  ok(r1.ok, "Response with status 200 should have ok true");

  var r2 = new Response(undefined, { status: 204 });
  ok(r2.ok, "Response with status 204 should have ok true");

  var r3 = new Response("", { status: 299 });
  ok(r3.ok, "Response with status 299 should have ok true");

  var r4 = new Response("", { status: 302 });
  ok(!r4.ok, "Response with status 302 should have ok false");
}

function testBodyUsed() {
  var res = new Response("Sample body");
  ok(!res.bodyUsed, "bodyUsed is initially false.");
  return res
    .text()
    .then(v => {
      is(v, "Sample body", "Body should match");
      ok(res.bodyUsed, "After reading body, bodyUsed should be true.");
    })
    .then(() => {
      return res.blob().then(
        v => {
          ok(false, "Attempting to read body again should fail.");
        },
        e => {
          ok(true, "Attempting to read body again should fail.");
        }
      );
    });
}

function testBodyCreation() {
  var text = "κόσμε";
  var res1 = new Response(text);
  var p1 = res1.text().then(function (v) {
    ok(typeof v === "string", "Should resolve to string");
    is(text, v, "Extracted string should match");
  });

  var res2 = new Response(new Uint8Array([72, 101, 108, 108, 111]));
  var p2 = res2.text().then(function (v) {
    is("Hello", v, "Extracted string should match");
  });

  var res2b = new Response(new Uint8Array([72, 101, 108, 108, 111]).buffer);
  var p2b = res2b.text().then(function (v) {
    is("Hello", v, "Extracted string should match");
  });

  var resblob = new Response(new Blob([text]));
  var pblob = resblob.text().then(function (v) {
    is(v, text, "Extracted string should match");
  });

  var params = new URLSearchParams();
  params.append("item", "Geckos");
  params.append("feature", "stickyfeet");
  params.append("quantity", "700");
  var res3 = new Response(params);
  var p3 = res3.text().then(function (v) {
    var extracted = new URLSearchParams(v);
    is(extracted.get("item"), "Geckos", "Param should match");
    is(extracted.get("feature"), "stickyfeet", "Param should match");
    is(extracted.get("quantity"), "700", "Param should match");
  });

  return Promise.all([p1, p2, p2b, pblob, p3]);
}

function testBodyExtraction() {
  var text = "κόσμε";
  var newRes = function () {
    return new Response(text);
  };
  return newRes()
    .text()
    .then(function (v) {
      ok(typeof v === "string", "Should resolve to string");
      is(text, v, "Extracted string should match");
    })
    .then(function () {
      return newRes()
        .blob()
        .then(function (v) {
          ok(v instanceof Blob, "Should resolve to Blob");
          return readAsText(v).then(function (result) {
            is(result, text, "Decoded Blob should match original");
          });
        });
    })
    .then(function () {
      return newRes()
        .json()
        .then(
          function (v) {
            ok(false, "Invalid json should reject");
          },
          function (e) {
            ok(true, "Invalid json should reject");
          }
        );
    })
    .then(function () {
      return newRes()
        .arrayBuffer()
        .then(function (v) {
          ok(v instanceof ArrayBuffer, "Should resolve to ArrayBuffer");
          var dec = new TextDecoder();
          is(
            dec.decode(new Uint8Array(v)),
            text,
            "UTF-8 decoded ArrayBuffer should match original"
          );
        });
    });
}

function testNullBodyStatus() {
  [204, 205, 304].forEach(function (status) {
    try {
      var res = new Response(new Blob(), { status });
      ok(
        false,
        "Response body provided but status code does not permit a body"
      );
    } catch (e) {
      ok(true, "Response body provided but status code does not permit a body");
    }
  });

  [204, 205, 304].forEach(function (status) {
    try {
      var res = new Response(undefined, { status });
      ok(true, "Response body provided but status code does not permit a body");
    } catch (e) {
      ok(
        false,
        "Response body provided but status code does not permit a body"
      );
    }
  });
}

function runTest() {
  testDefaultCtor();
  testError();
  testRedirect();
  testOk();
  testNullBodyStatus();

  return (
    Promise.resolve()
      .then(testBodyCreation)
      .then(testBodyUsed)
      .then(testBodyExtraction)
      .then(testClone)
      .then(testCloneUnfiltered)
      // Put more promise based tests here.
      .catch(function (e) {
        dump("### ### " + e + "\n");
        ok(false, "got unexpected error!");
      })
  );
}