summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_cache2-01b-basic-datasize.js
blob: f7b090958fb7665c991ead2c684b5452d9c67f4c (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
"use strict";

function run_test() {
  do_get_profile();

  // Open for write, write
  asyncOpenCacheEntry(
    "http://a/",
    "disk",
    Ci.nsICacheStorage.OPEN_NORMALLY,
    null,
    new OpenCallback(NEW | WAITFORWRITE, "a1m", "a1d", function (entry) {
      // Open for read and check
      Assert.equal(entry.dataSize, 3);
      asyncOpenCacheEntry(
        "http://a/",
        "disk",
        Ci.nsICacheStorage.OPEN_NORMALLY,
        null,
        new OpenCallback(NORMAL, "a1m", "a1d", function (entry) {
          // Open for rewrite (truncate), write different meta and data
          Assert.equal(entry.dataSize, 3);
          asyncOpenCacheEntry(
            "http://a/",
            "disk",
            Ci.nsICacheStorage.OPEN_TRUNCATE,
            null,
            new OpenCallback(NEW | WAITFORWRITE, "a2m", "a2d", function (
              entry
            ) {
              // Open for read and check
              Assert.equal(entry.dataSize, 3);
              asyncOpenCacheEntry(
                "http://a/",
                "disk",
                Ci.nsICacheStorage.OPEN_NORMALLY,
                null,
                new OpenCallback(NORMAL, "a2m", "a2d", function (entry) {
                  Assert.equal(entry.dataSize, 3);
                  finish_cache2_test();
                })
              );
            })
          );
        })
      );
    })
  );

  do_test_pending();
}