summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_cache2-26-no-outputstream-open.js
blob: bdb116436c1a12a151d73ef75989df4ad318d832 (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 () {
        // 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 () {
              finish_cache2_test();
            })
          );
        });
      }
    )
  );

  do_test_pending();
}