summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_cache2-03-oncacheentryavail-throws.js
blob: 2b1e230b1a23728104f76158cf760e3f14cbe14e (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 but let OCEA throw
  asyncOpenCacheEntry(
    "http://c/",
    "disk",
    Ci.nsICacheStorage.OPEN_NORMALLY,
    null,
    new OpenCallback(NEW | THROWAVAIL, null, null, function () {
      // Try it again, should go
      asyncOpenCacheEntry(
        "http://c/",
        "disk",
        Ci.nsICacheStorage.OPEN_NORMALLY,
        null,
        new OpenCallback(NEW, "c1m", "c1d", function () {
          // ...and check
          asyncOpenCacheEntry(
            "http://c/",
            "disk",
            Ci.nsICacheStorage.OPEN_NORMALLY,
            null,
            new OpenCallback(false, "c1m", "c1d", function () {
              finish_cache2_test();
            })
          );
        })
      );
    })
  );

  do_test_pending();
}