blob: c5875c2c9d492b0022b6c349d2c92af91eebfa95 (
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
|
/* global context testDone:true */
var name = "putreorder" + context;
var c;
var reqs = [
"//mochi.test:8888/?foo" + context,
"//mochi.test:8888/?bar" + context,
"//mochi.test:8888/?baz" + context,
];
caches
.open(name)
.then(function (cache) {
c = cache;
return c.addAll(reqs);
})
.then(function () {
return c.put(reqs[1], new Response("overwritten"));
})
.then(function () {
return c.keys();
})
.then(function (keys) {
is(keys.length, 3, "Correct number of entries expected");
ok(keys[0].url.includes(reqs[0]), "The first entry should be untouched");
ok(
keys[2].url.includes(reqs[1]),
"The second entry should be moved to the end"
);
ok(
keys[1].url.includes(reqs[2]),
"The third entry should now be the second one"
);
return c.match(reqs[1]);
})
.then(function (r) {
return r.text();
})
.then(function (body) {
is(body, "overwritten", "The body should be overwritten");
return caches.delete(name);
})
.then(function (deleted) {
ok(deleted, "The cache should be deleted successfully");
testDone();
});
|