summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_cache2-21-anon-storage.js
blob: 1db0047475e261328044313304394af99b23d28f (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
"use strict";

function run_test() {
  do_get_profile();

  // Create and check an entry anon disk storage
  asyncOpenCacheEntry(
    "http://anon1/",
    "disk",
    Ci.nsICacheStorage.OPEN_NORMALLY,
    Services.loadContextInfo.anonymous,
    new OpenCallback(NEW, "an1", "an1", function () {
      asyncOpenCacheEntry(
        "http://anon1/",
        "disk",
        Ci.nsICacheStorage.OPEN_NORMALLY,
        Services.loadContextInfo.anonymous,
        new OpenCallback(NORMAL, "an1", "an1", function () {
          // Create and check an entry non-anon disk storage
          asyncOpenCacheEntry(
            "http://anon1/",
            "disk",
            Ci.nsICacheStorage.OPEN_NORMALLY,
            Services.loadContextInfo.default,
            new OpenCallback(NEW, "na1", "na1", function () {
              asyncOpenCacheEntry(
                "http://anon1/",
                "disk",
                Ci.nsICacheStorage.OPEN_NORMALLY,
                Services.loadContextInfo.default,
                new OpenCallback(NORMAL, "na1", "na1", function () {
                  // check the anon entry is still there and intact
                  asyncOpenCacheEntry(
                    "http://anon1/",
                    "disk",
                    Ci.nsICacheStorage.OPEN_NORMALLY,
                    Services.loadContextInfo.anonymous,
                    new OpenCallback(NORMAL, "an1", "an1", function () {
                      finish_cache2_test();
                    })
                  );
                })
              );
            })
          );
        })
      );
    })
  );

  do_test_pending();
}