2010-06-21 17:50:35 -07:00
|
|
|
/* Any copyright is dedicated to the Public Domain.
|
2010-11-12 09:32:36 -08:00
|
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
2010-06-21 17:50:35 -07:00
|
|
|
|
|
|
|
// test for cookie persistence across sessions, for the cases:
|
|
|
|
// 1) network.cookie.lifetimePolicy = 0 (expire naturally)
|
|
|
|
// 2) network.cookie.lifetimePolicy = 2 (expire at end of session)
|
|
|
|
|
|
|
|
let test_generator = do_run_test();
|
|
|
|
|
|
|
|
function run_test() {
|
|
|
|
do_test_pending();
|
|
|
|
test_generator.next();
|
|
|
|
}
|
|
|
|
|
|
|
|
function finish_test() {
|
|
|
|
do_execute_soon(function() {
|
|
|
|
test_generator.close();
|
|
|
|
do_test_finished();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function do_run_test() {
|
|
|
|
// Set up a profile.
|
|
|
|
let profile = do_get_profile();
|
|
|
|
|
|
|
|
// 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 = NetUtil.newURI(spec1);
|
|
|
|
var uri2 = NetUtil.newURI(spec2);
|
|
|
|
var channel1 = NetUtil.newChannel(uri1);
|
|
|
|
var channel2 = NetUtil.newChannel(uri2);
|
|
|
|
|
|
|
|
// 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, and third party cookies persistent.
|
|
|
|
Services.prefs.setIntPref("network.cookie.cookieBehavior", 0);
|
|
|
|
Services.prefs.setBoolPref("network.cookie.thirdparty.sessionOnly", false);
|
|
|
|
do_set_cookies(uri1, channel1, false, [1, 2, 3, 4]);
|
|
|
|
do_set_cookies(uri2, channel2, true, [1, 2, 3, 4]);
|
|
|
|
|
|
|
|
// fake a profile change
|
2010-07-29 12:17:43 -07:00
|
|
|
do_close_profile(test_generator);
|
2010-06-21 17:50:35 -07:00
|
|
|
yield;
|
2010-07-29 12:17:43 -07:00
|
|
|
do_load_profile();
|
|
|
|
do_check_eq(Services.cookies.countCookiesFromHost(uri1.host), 4);
|
|
|
|
do_check_eq(Services.cookies.countCookiesFromHost(uri2.host), 0);
|
|
|
|
|
|
|
|
// Again, but don't wait for the async close to complete. This should always
|
|
|
|
// work, since we blocked on close above and haven't kicked off any writes
|
|
|
|
// since then.
|
|
|
|
do_close_profile();
|
|
|
|
do_load_profile();
|
2010-06-21 17:50:35 -07:00
|
|
|
do_check_eq(Services.cookies.countCookiesFromHost(uri1.host), 4);
|
|
|
|
do_check_eq(Services.cookies.countCookiesFromHost(uri2.host), 0);
|
|
|
|
|
|
|
|
// cleanse them
|
2010-07-29 12:17:43 -07:00
|
|
|
do_close_profile(test_generator, "shutdown-cleanse");
|
2010-06-21 17:50:35 -07:00
|
|
|
yield;
|
2010-07-29 12:17:43 -07:00
|
|
|
do_load_profile();
|
2010-06-21 17:50:35 -07:00
|
|
|
do_check_eq(Services.cookies.countCookiesFromHost(uri1.host), 0);
|
|
|
|
do_check_eq(Services.cookies.countCookiesFromHost(uri2.host), 0);
|
|
|
|
|
|
|
|
// test with cookies set to session-only
|
|
|
|
Services.prefs.setIntPref("network.cookie.lifetimePolicy", 2);
|
|
|
|
do_set_cookies(uri1, channel1, false, [1, 2, 3, 4]);
|
|
|
|
do_set_cookies(uri2, channel2, true, [1, 2, 3, 4]);
|
|
|
|
|
|
|
|
// fake a profile change
|
2010-07-29 12:17:43 -07:00
|
|
|
do_close_profile(test_generator);
|
2010-06-21 17:50:35 -07:00
|
|
|
yield;
|
2010-07-29 12:17:43 -07:00
|
|
|
do_load_profile();
|
2010-06-21 17:50:35 -07:00
|
|
|
do_check_eq(Services.cookies.countCookiesFromHost(uri1.host), 0);
|
|
|
|
do_check_eq(Services.cookies.countCookiesFromHost(uri2.host), 0);
|
|
|
|
|
|
|
|
finish_test();
|
|
|
|
}
|
|
|
|
|