Thu, 15 Jan 2015 15:59:08 +0100
Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | function run_test() |
michael@0 | 2 | { |
michael@0 | 3 | do_get_profile(); |
michael@0 | 4 | |
michael@0 | 5 | var storage = getCacheStorage("disk"); |
michael@0 | 6 | var mc = new MultipleCallbacks(4, function() { |
michael@0 | 7 | syncWithCacheIOThread(function() { |
michael@0 | 8 | storage.asyncVisitStorage( |
michael@0 | 9 | // Test should store 4 entries |
michael@0 | 10 | new VisitCallback(4, 48, ["http://a/", "http://b/", "http://c/", "http://d/"], function() { |
michael@0 | 11 | storage.asyncVisitStorage( |
michael@0 | 12 | // Still 4 entries expected, now don't walk them |
michael@0 | 13 | new VisitCallback(4, 48, null, function() { |
michael@0 | 14 | finish_cache2_test(); |
michael@0 | 15 | }), |
michael@0 | 16 | false |
michael@0 | 17 | ); |
michael@0 | 18 | }), |
michael@0 | 19 | true |
michael@0 | 20 | ); |
michael@0 | 21 | }); |
michael@0 | 22 | }, !newCacheBackEndUsed()); |
michael@0 | 23 | |
michael@0 | 24 | asyncOpenCacheEntry("http://a/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null, |
michael@0 | 25 | new OpenCallback(NEW, "a1m", "a1d", function(entry) { |
michael@0 | 26 | asyncOpenCacheEntry("http://a/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null, |
michael@0 | 27 | new OpenCallback(NORMAL, "a1m", "a1d", function(entry) { |
michael@0 | 28 | mc.fired(); |
michael@0 | 29 | }) |
michael@0 | 30 | ); |
michael@0 | 31 | }) |
michael@0 | 32 | ); |
michael@0 | 33 | |
michael@0 | 34 | asyncOpenCacheEntry("http://b/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null, |
michael@0 | 35 | new OpenCallback(NEW, "b1m", "b1d", function(entry) { |
michael@0 | 36 | asyncOpenCacheEntry("http://b/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null, |
michael@0 | 37 | new OpenCallback(NORMAL, "b1m", "b1d", function(entry) { |
michael@0 | 38 | mc.fired(); |
michael@0 | 39 | }) |
michael@0 | 40 | ); |
michael@0 | 41 | }) |
michael@0 | 42 | ); |
michael@0 | 43 | |
michael@0 | 44 | asyncOpenCacheEntry("http://c/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null, |
michael@0 | 45 | new OpenCallback(NEW, "c1m", "c1d", function(entry) { |
michael@0 | 46 | asyncOpenCacheEntry("http://c/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null, |
michael@0 | 47 | new OpenCallback(NORMAL, "c1m", "c1d", function(entry) { |
michael@0 | 48 | mc.fired(); |
michael@0 | 49 | }) |
michael@0 | 50 | ); |
michael@0 | 51 | }) |
michael@0 | 52 | ); |
michael@0 | 53 | |
michael@0 | 54 | asyncOpenCacheEntry("http://d/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null, |
michael@0 | 55 | new OpenCallback(NEW, "d1m", "d1d", function(entry) { |
michael@0 | 56 | asyncOpenCacheEntry("http://d/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null, |
michael@0 | 57 | new OpenCallback(NORMAL, "d1m", "d1d", function(entry) { |
michael@0 | 58 | mc.fired(); |
michael@0 | 59 | }) |
michael@0 | 60 | ); |
michael@0 | 61 | }) |
michael@0 | 62 | ); |
michael@0 | 63 | |
michael@0 | 64 | do_test_pending(); |
michael@0 | 65 | } |