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

  if (!newCacheBackEndUsed()) {
    do_check_true(true, "This test doesn't run when the old cache back end is used since the behavior is different");
    return;
  }

  // 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
      do_execute_soon(() => {
        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();
}