summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_cache2-03-oncacheentryavail-throws.js
blob: 79c367410d8b8a169dccedac5306ce1c1ec14164 (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
function run_test()
{
  do_get_profile();

  // Open but let OCEA throw
  asyncOpenCacheEntry("http://c/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
    new OpenCallback(NEW|THROWAVAIL, null, null, function(entry) {
      // Try it again, should go
      asyncOpenCacheEntry("http://c/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
        new OpenCallback(NEW, "c1m", "c1d", function(entry) {
          // ...and check
          asyncOpenCacheEntry("http://c/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
            new OpenCallback(false, "c1m", "c1d", function(entry) {
              finish_cache2_test();
            })
          );
        })
      );
    })
  );

  do_test_pending();
}