summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_cache2-26-no-outputstream-open.js
blob: dbcd699d67381d41aab9a0f77f56f02f5e65ddf6 (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
"use strict";

function run_test() {
  do_get_profile();

  // Open for write, but never write and never mark valid
  asyncOpenCacheEntry(
    "http://no-data/",
    "disk",
    Ci.nsICacheStorage.OPEN_NORMALLY,
    null,
    new OpenCallback(
      NEW | METAONLY | DONTSETVALID | WAITFORWRITE,
      "meta",
      "",
      function (entry) {
        // Open again, we must get the callback and zero-length data
        executeSoon(() => {
          Cu.forceGC(); // invokes OnHandleClosed on the entry

          asyncOpenCacheEntry(
            "http://no-data/",
            "disk",
            Ci.nsICacheStorage.OPEN_NORMALLY,
            null,
            new OpenCallback(NORMAL, "meta", "", function (entry) {
              finish_cache2_test();
            })
          );
        });
      }
    )
  );

  do_test_pending();
}