summaryrefslogtreecommitdiffstats
path: root/dom/cache/test/mochitest/test_cache_match_request.js
blob: f7a7001444530c941c92240bfc5b65989c54e7e8 (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
/* global context testDone:true */

var req = new Request("//mochi.test:8888/?" + context + "#fragment");
var requestWithAltQS = new Request("//mochi.test:8888/?queryString");
var unknownReq = new Request("//mochi.test:8888/non/existing/path?" + context);
var response;
var c;
var responseText;
var name = "match-request" + context;

function checkResponse(r, expectedBody) {
  if (expectedBody === undefined) {
    expectedBody = responseText;
  }
  ok(r !== response, "The objects should not be the same");
  is(
    r.url,
    response.url.replace("#fragment", ""),
    "The URLs should be the same"
  );
  is(r.status, response.status, "The status codes should be the same");
  is(r.type, response.type, "The response types should be the same");
  is(r.ok, response.ok, "Both responses should have succeeded");
  is(
    r.statusText,
    response.statusText,
    "Both responses should have the same status text"
  );
  return r.text().then(function (text) {
    // Avoid dumping out the large response text to the log if they're equal.
    if (text !== expectedBody) {
      is(text, responseText, "The response body should be correct");
    }
  });
}
fetch(new Request(req))
  .then(function (r) {
    response = r;
    return response.text();
  })
  .then(function (text) {
    responseText = text;
    return testRequest(
      req,
      unknownReq,
      requestWithAltQS,
      req.url.replace("#fragment", "#other")
    );
  })
  .then(function () {
    return testRequest(
      req.url,
      unknownReq.url,
      requestWithAltQS.url,
      req.url.replace("#fragment", "#other")
    );
  })
  .then(function () {
    testDone();
  });
// The request argument can either be a URL string, or a Request object.
function testRequest(
  request,
  unknownRequest,
  requestWithAlternateQueryString,
  requestWithDifferentFragment
) {
  return caches
    .open(name)
    .then(function (cache) {
      c = cache;
      return c.add(request);
    })
    .then(function () {
      return Promise.all(
        ["HEAD", "POST", "PUT", "DELETE", "OPTIONS"].map(function (method) {
          var r = new Request(request, { method });
          return c.add(r).then(
            function () {
              ok(false, "Promise should be rejected");
            },
            function (err) {
              is(
                err.name,
                "TypeError",
                "Adding a request with type '" + method + "' should fail"
              );
            }
          );
        })
      );
    })
    .then(function () {
      return c.match(request);
    })
    .then(function (r) {
      return checkResponse(r);
    })
    .then(function () {
      return c.match(new Request(request, { method: "HEAD" }));
    })
    .then(function (r) {
      is(
        typeof r,
        "undefined",
        "Searching for an HEAD request should not succeed"
      );
      return c.match(new Request(request, { method: "HEAD" }), {
        ignoreMethod: true,
      });
    })
    .then(function (r) {
      return checkResponse(r);
    })
    .then(function () {
      return Promise.all(
        ["HEAD", "POST", "PUT", "DELETE", "OPTIONS"].map(function (method) {
          var req1 = new Request(request, { method });
          return c
            .match(req1)
            .then(function (r) {
              is(
                typeof r,
                "undefined",
                "Searching for a request with a non-GET method should not succeed"
              );
              return c.match(req1, { ignoreMethod: true });
            })
            .then(function (r) {
              return checkResponse(r);
            });
        })
      );
    })
    .then(function () {
      return caches.match(request);
    })
    .then(function (r) {
      return checkResponse(r);
    })
    .then(function () {
      return caches.match(requestWithDifferentFragment);
    })
    .then(function (r) {
      return checkResponse(r);
    })
    .then(function () {
      return caches.match(requestWithAlternateQueryString, {
        ignoreSearch: true,
        cacheName: name,
      });
    })
    .then(function (r) {
      return checkResponse(r);
    })
    .then(function () {
      return caches.match(request, { cacheName: name });
    })
    .then(function (r) {
      return checkResponse(r);
    })
    .then(function () {
      return caches
        .match(request, { cacheName: name + "mambojambo" })
        .then(function (result) {
          is(
            typeof r,
            "undefined",
            "Searching in the wrong cache should resolve to undefined"
          );
          return caches.has(name + "mambojambo");
        })
        .then(function (hasCache) {
          ok(!hasCache, "The wrong cache should still not exist");
        });
    })
    .then(function () {
      // Make sure that cacheName is ignored on Cache
      return c.match(request, { cacheName: name + "mambojambo" });
    })
    .then(function (r) {
      return checkResponse(r);
    })
    .then(function () {
      return c.match(unknownRequest);
    })
    .then(function (r) {
      is(
        typeof r,
        "undefined",
        "Searching for an unknown request should not succeed"
      );
      return caches.match(unknownRequest);
    })
    .then(function (r) {
      is(
        typeof r,
        "undefined",
        "Searching for an unknown request should not succeed"
      );
      return caches.match(unknownRequest, { cacheName: name });
    })
    .then(function (r) {
      is(
        typeof r,
        "undefined",
        "Searching for an unknown request should not succeed"
      );
      return caches.delete(name);
    })
    .then(function (success) {
      ok(success, "We should be able to delete the cache successfully");
      // Make sure that the cache is still usable after deletion.
      return c.match(request);
    })
    .then(function (r) {
      return checkResponse(r);
    })
    .then(function () {
      // Now, drop the cache, reopen and verify that we can't find the request any more.
      c = null;
      return caches.open(name);
    })
    .then(function (cache) {
      return cache.match(request);
    })
    .then(function (r) {
      is(
        typeof r,
        "undefined",
        "Searching in the cache after deletion should not succeed"
      );
      return caches.delete(name);
    })
    .then(function (deleted) {
      ok(deleted, "The cache should be deleted successfully");
    });
}