Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | function run_test() |
michael@0 | 2 | { |
michael@0 | 3 | do_get_profile(); |
michael@0 | 4 | |
michael@0 | 5 | if (!newCacheBackEndUsed()) { |
michael@0 | 6 | do_check_true(true, "This test doesn't run when the old cache back end is used since the behavior is different"); |
michael@0 | 7 | return; |
michael@0 | 8 | } |
michael@0 | 9 | |
michael@0 | 10 | // Open for write, write |
michael@0 | 11 | asyncOpenCacheEntry("http://r206/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null, |
michael@0 | 12 | new OpenCallback(NEW, "206m", "206part1-", function(entry) { |
michael@0 | 13 | // Open normally but wait for validation from the server |
michael@0 | 14 | asyncOpenCacheEntry("http://r206/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null, |
michael@0 | 15 | new OpenCallback(PARTIAL, "206m", "206part1-", function(entry) { |
michael@0 | 16 | // emulate 206 from the server, i.e. resume transaction and write content to the output stream |
michael@0 | 17 | (new OpenCallback(NEW|WAITFORWRITE|PARTIAL, "206m", "-part2", function(entry) { |
michael@0 | 18 | entry.setValid(); |
michael@0 | 19 | })).onCacheEntryAvailable(entry, true, null, Cr.NS_OK); |
michael@0 | 20 | }) |
michael@0 | 21 | ); |
michael@0 | 22 | |
michael@0 | 23 | var mc = new MultipleCallbacks(3, finish_cache2_test); |
michael@0 | 24 | |
michael@0 | 25 | asyncOpenCacheEntry("http://r206/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null, |
michael@0 | 26 | new OpenCallback(NORMAL, "206m", "206part1--part2", function(entry) { |
michael@0 | 27 | mc.fired(); |
michael@0 | 28 | }) |
michael@0 | 29 | ); |
michael@0 | 30 | asyncOpenCacheEntry("http://r206/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null, |
michael@0 | 31 | new OpenCallback(NORMAL, "206m", "206part1--part2", function(entry) { |
michael@0 | 32 | mc.fired(); |
michael@0 | 33 | }) |
michael@0 | 34 | ); |
michael@0 | 35 | asyncOpenCacheEntry("http://r206/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null, |
michael@0 | 36 | new OpenCallback(NORMAL, "206m", "206part1--part2", function(entry) { |
michael@0 | 37 | mc.fired(); |
michael@0 | 38 | }) |
michael@0 | 39 | ); |
michael@0 | 40 | }) |
michael@0 | 41 | ); |
michael@0 | 42 | |
michael@0 | 43 | do_test_pending(); |
michael@0 | 44 | } |