// test third party cookie blocking, for the cases: // 1) with null channel // 2) with channel, but with no docshell parent const Cc = Components.classes; const Ci = Components.interfaces; function run_test() { var cs = Cc["@mozilla.org/cookieService;1"].getService(Ci.nsICookieService); var cm = Cc["@mozilla.org/cookiemanager;1"].getService(Ci.nsICookieManager2); var ios = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService); var prefs = Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefBranch); // Create URIs and channels pointing to foo.com and bar.com. // We will use these to put foo.com into first and third party contexts. var spec1 = "http://foo.com/foo.html"; var spec2 = "http://bar.com/bar.html"; var uri1 = ios.newURI(spec1, null, null); var uri2 = ios.newURI(spec2, null, null); var channel1 = ios.newChannelFromURI(uri1); var channel2 = ios.newChannelFromURI(uri2); // test with cookies enabled prefs.setIntPref("network.cookie.cookieBehavior", 0); do_set_cookies(uri1, channel1, true, [1, 2, 3, 4]); cs.removeAll(); do_set_cookies(uri1, channel2, true, [1, 2, 3, 4]); cs.removeAll(); // test with third party cookies blocked prefs.setIntPref("network.cookie.cookieBehavior", 1); do_set_cookies(uri1, channel1, true, [0, 0, 0, 0]); cs.removeAll(); do_set_cookies(uri1, channel2, true, [0, 0, 0, 0]); cs.removeAll(); // Force the channel URI to be used when determining the originating URI of // the channel. var httpchannel1 = channel1.QueryInterface(Ci.nsIHttpChannelInternal); var httpchannel2 = channel1.QueryInterface(Ci.nsIHttpChannelInternal); httpchannel1.forceAllowThirdPartyCookie = true; httpchannel2.forceAllowThirdPartyCookie = true; // test with cookies enabled prefs.setIntPref("network.cookie.cookieBehavior", 0); do_set_cookies(uri1, channel1, true, [1, 2, 3, 4]); cs.removeAll(); do_set_cookies(uri1, channel2, true, [1, 2, 3, 4]); cs.removeAll(); // test with third party cookies blocked prefs.setIntPref("network.cookie.cookieBehavior", 1); do_set_cookies(uri1, channel1, true, [0, 1, 1, 2]); cs.removeAll(); do_set_cookies(uri1, channel2, true, [0, 0, 0, 0]); cs.removeAll(); }