summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fetch/content-encoding/gzip/bad-gzip-body.any.js
blob: 17bc1261a3f5c36a9797c5a171990c522cfe7598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// META: global=window,worker

promise_test((test) => {
    return fetch("resources/bad-gzip-body.py").then(res => {
      assert_equals(res.status, 200);
    });
}, "Fetching a resource with bad gzip content should still resolve");

[
  "arrayBuffer",
  "blob",
  "formData",
  "json",
  "text"
].forEach(method => {
  promise_test(t => {
    return fetch("resources/bad-gzip-body.py").then(res => {
      assert_equals(res.status, 200);
      return promise_rejects_js(t, TypeError, res[method]());
    });
  }, "Consuming the body of a resource with bad gzip content with " + method + "() should reject");
});