summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_cache2-02b-open-non-existing-and-doom.js
blob: d54aeeb9eba34b679c665be25aff04000c4062e5 (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
"use strict";

add_task(async function test() {
  do_get_profile();
  do_test_pending();

  await new Promise(resolve => {
    // Open non-existing for read, should fail
    asyncOpenCacheEntry(
      "http://b/",
      "disk",
      Ci.nsICacheStorage.OPEN_READONLY,
      null,
      new OpenCallback(NOTFOUND, null, null, function (entry) {
        resolve(entry);
      })
    );
  });

  await new Promise(resolve => {
    // Open the same non-existing for read again, should fail second time
    asyncOpenCacheEntry(
      "http://b/",
      "disk",
      Ci.nsICacheStorage.OPEN_READONLY,
      null,
      new OpenCallback(NOTFOUND, null, null, function (entry) {
        resolve(entry);
      })
    );
  });

  await new Promise(resolve => {
    // Try it again normally, should go
    asyncOpenCacheEntry(
      "http://b/",
      "disk",
      Ci.nsICacheStorage.OPEN_NORMALLY,
      null,
      new OpenCallback(NEW, "b1m", "b1d", function (entry) {
        resolve(entry);
      })
    );
  });

  await new Promise(resolve => {
    // ...and check
    asyncOpenCacheEntry(
      "http://b/",
      "disk",
      Ci.nsICacheStorage.OPEN_NORMALLY,
      null,
      new OpenCallback(NORMAL, "b1m", "b1d", function (entry) {
        resolve(entry);
      })
    );
  });

  Services.prefs.setBoolPref("network.cache.bug1708673", true);
  registerCleanupFunction(() => {
    Services.prefs.clearUserPref("network.cache.bug1708673");
  });

  let asyncDoomVisitor = new Promise(resolve => {
    let doomTasks = [];
    let visitor = {
      onCacheStorageInfo() {},
      async onCacheEntryInfo(
        aURI,
        aIdEnhance,
        aDataSize,
        aAltDataSize,
        aFetchCount,
        aLastModifiedTime,
        aExpirationTime,
        aPinned,
        aInfo
      ) {
        doomTasks.push(
          new Promise(resolve1 => {
            Services.cache2
              .diskCacheStorage(aInfo, false)
              .asyncDoomURI(aURI, aIdEnhance, {
                onCacheEntryDoomed() {
                  info("doomed");
                  resolve1();
                },
              });
          })
        );
      },
      onCacheEntryVisitCompleted() {
        Promise.allSettled(doomTasks).then(resolve);
      },
      QueryInterface: ChromeUtils.generateQI(["nsICacheStorageVisitor"]),
    };
    Services.cache2.asyncVisitAllStorages(visitor, true);
  });

  let asyncOpenVisitor = new Promise(resolve => {
    let openTasks = [];
    let visitor = {
      onCacheStorageInfo() {},
      async onCacheEntryInfo(
        aURI,
        aIdEnhance,
        aDataSize,
        aAltDataSize,
        aFetchCount,
        aLastModifiedTime,
        aExpirationTime,
        aPinned,
        aInfo
      ) {
        info(`found ${aURI.spec}`);
        openTasks.push(
          new Promise(r2 => {
            Services.cache2
              .diskCacheStorage(aInfo, false)
              .asyncOpenURI(
                aURI,
                "",
                Ci.nsICacheStorage.OPEN_READONLY |
                  Ci.nsICacheStorage.OPEN_SECRETLY,
                {
                  onCacheEntryCheck() {
                    return Ci.nsICacheEntryOpenCallback.ENTRY_WANTED;
                  },
                  onCacheEntryAvailable(entry, isnew, status) {
                    info("opened");
                    r2();
                  },
                  QueryInterface: ChromeUtils.generateQI([
                    "nsICacheEntryOpenCallback",
                  ]),
                }
              );
          })
        );
      },
      onCacheEntryVisitCompleted() {
        Promise.all(openTasks).then(resolve);
      },
      QueryInterface: ChromeUtils.generateQI(["nsICacheStorageVisitor"]),
    };
    Services.cache2.asyncVisitAllStorages(visitor, true);
  });

  await Promise.all([asyncDoomVisitor, asyncOpenVisitor]);

  info("finished visiting");

  await new Promise(resolve => {
    let entryCount = 0;
    let visitor = {
      onCacheStorageInfo() {},
      async onCacheEntryInfo(
        aURI,
        aIdEnhance,
        aDataSize,
        aAltDataSize,
        aFetchCount,
        aLastModifiedTime,
        aExpirationTime,
        aPinned,
        aInfo
      ) {
        entryCount++;
      },
      onCacheEntryVisitCompleted() {
        Assert.equal(entryCount, 0);
        resolve();
      },
      QueryInterface: ChromeUtils.generateQI(["nsICacheStorageVisitor"]),
    };
    Services.cache2.asyncVisitAllStorages(visitor, true);
  });

  finish_cache2_test();
});