Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
michael@0 | 1 | function exitPB() |
michael@0 | 2 | { |
michael@0 | 3 | var obsvc = Cc["@mozilla.org/observer-service;1"]. |
michael@0 | 4 | getService(Ci.nsIObserverService); |
michael@0 | 5 | obsvc.notifyObservers(null, "last-pb-context-exited", null); |
michael@0 | 6 | } |
michael@0 | 7 | |
michael@0 | 8 | function run_test() |
michael@0 | 9 | { |
michael@0 | 10 | do_get_profile(); |
michael@0 | 11 | |
michael@0 | 12 | // Store PB entry |
michael@0 | 13 | asyncOpenCacheEntry("http://p1/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, LoadContextInfo.private, |
michael@0 | 14 | new OpenCallback(NEW, "p1m", "p1d", function(entry) { |
michael@0 | 15 | asyncOpenCacheEntry("http://p1/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, LoadContextInfo.private, |
michael@0 | 16 | new OpenCallback(NORMAL, "p1m", "p1d", function(entry) { |
michael@0 | 17 | // Check it's there |
michael@0 | 18 | syncWithCacheIOThread(function() { |
michael@0 | 19 | var storage = getCacheStorage("disk", LoadContextInfo.private); |
michael@0 | 20 | storage.asyncVisitStorage( |
michael@0 | 21 | new VisitCallback(1, 12, ["http://p1/"], function() { |
michael@0 | 22 | // Simulate PB exit |
michael@0 | 23 | exitPB(); |
michael@0 | 24 | // Check the entry is gone |
michael@0 | 25 | storage.asyncVisitStorage( |
michael@0 | 26 | new VisitCallback(0, 0, [], function() { |
michael@0 | 27 | finish_cache2_test(); |
michael@0 | 28 | }), |
michael@0 | 29 | true |
michael@0 | 30 | ); |
michael@0 | 31 | }), |
michael@0 | 32 | true |
michael@0 | 33 | ); |
michael@0 | 34 | }); |
michael@0 | 35 | }) |
michael@0 | 36 | ); |
michael@0 | 37 | }) |
michael@0 | 38 | ); |
michael@0 | 39 | |
michael@0 | 40 | do_test_pending(); |
michael@0 | 41 | } |