summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_cache2-01f-basic-openTruncate.js
blob: d1ef54b5fc76d5bcb1c645fdd34ab35fa2f135c4 (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();

  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;
  }

  var storage = getCacheStorage("disk");
  var entry = storage.openTruncate(createURI("http://new1/"), "");
  do_check_true(!!entry);

  // Fill the entry, and when done, check it's content
  (new OpenCallback(NEW, "meta", "data", function() {
    asyncOpenCacheEntry("http://new1/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
      new OpenCallback(NORMAL, "meta", "data", function() {
        finish_cache2_test();
      })
    );
  })).onCacheEntryAvailable(entry, true, null, 0);

  do_test_pending();
}