mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
fe3519e975
- Bug 1257611 - Fix wrong CondVar::Wait() and Monitor::Wait() usage in netwerk/cache2, r=honzab (54f1a79f43) - Bug 1239687 - Leak invalid/doomed file handles immediately after HTTP cache shutdown. r=michal (a20bcf662b) - Bug 996836 - Merge CLOSE and WRITE priority in cache2 I/O thread. r=michal (8b0af50593) - Bug 1265243 - Do not initialize CacheObserver in the child process, r=honzab (87f69529d2) - Bug 1247432 - Don't do any unnecessary I/O in cache2 after shutdown. r=michal (7c5a2b89ac) - Bug 1220272 - Fix signalling in HTTP cache test code suspender. r=michal (293a16731d) - Bug 1160368 - Part 2: Clean up some cruft in nsCookie.h from PRBool/bool conversions. r=jdm (aa873f2dcc) - Bug 1160368 - Part 5: Clean up some confusing browser_storage_listings.js checks. r=jdm (b27f5930a9) - Bug 866380 - Null check for amlogic libc implementation. r=valentin (c3a487af9c) - Bug 1257320 - Disable C4577 to unblock compilation on VS2015; r=mayhemer (2f800ca85c) - Bug 1229726 - fix the data copy from sockaddr to NetAddr on OSX/FreeBSD. r=mcmanus. (fde11e004e) - Bug 1241368 - provide JS implemented MDNS service as a fallback. r=nwgh,nalexander. (afe1445eb8) - Bug 571126: Remove NECKO_SEPARATE_STACKS support, r=jduell (fb5b87bb3a) - Bug 1057689 - Add xpcshell test checking correct notifications and app-offline state r=jduell (89946b44ba) - Bug 1259459 - h2 0 length options puts end-stream on headers r=hurley (618480a609) - Bug 1234251 - Remove HttpChannelChild::mSynthesizedResponseHead; r=jdm (20981affea) - Bug 904559 - Veto redirect when target channel doesn't implement nsIParentRedirectingChannel. r=jduell (b3da2fae91) - Bug 1261784 Make sure InterceptedChannel body streams are always closed. r=jdm (cd50b1a52b) - Bug 1224508 - Use URI path without reference as the callback key. r=valentin. (b8a953f23a) - Bug 1226760 - ViewSource doesn't work for packaged app resources r=mcmanus (ec9b0297de) - Bug 1254061 - Rewrite nsHttp::ParseInt64 using strtoll r=mcmanus (2125b8ae6f) - Bug 1241565 - nsIHttpChannelInternal should be a builtinclass, r=honzab.moz (d24da6a95a) - Bug 1252386 - Removed debugging printf,r=me (c5d89f353c) - bug 277813 - autogenerated expires needs max r=mayhemer (6aa7c255a5) - Bug 1225384 - Change how the default resource "host names" are handled. r=michal (868732baab) - Bug 719905: Fix resolution of resource: URLs containing : and / characters. r=valentin (f60f4baacf) - Bug 1195173 - Convert ExtensionProtocolHandler to use channel->Open2() (r=maglione) (063f5d5d10) - Bug 1226909 followup to fix bustage. Make sure that the channel returned by NS_NewChannel doesn't have a loadinfo that indicates that the channel has already been opened (42ebe0f44e) - Bug 241698 - Fixed init and use of nsDirIndex::mLastModified (-1LL) + built in nullptr checks where they were missing. r=dragana (e9c2277a3d) - Bug 1261318 - make sure brotli context is created in onstoprequest r=bagder (6646fed64d) - Bug 1212223 - Update |bufLen| as well when we probed the multipart preamble. r=valentin. (ec878c5b0f) - Bug 1259561: Increase CRAZY_COORD (threshold for debug build layout warnings) by an order of magnitude. r=mats (c05c16dd85) - Bug 1261698. Make ReparentFrameViewTo return void because it always returns NS_OK. r=mats (e806d6abcb) - Bug 1261698. Remove comment that is not relevant in nsContainerFrame.cpp. (f570189d15) - Bug 1261698. Don't descend into child frames looking for views in ReparentFrameViewTo if the frame doesn't have the NS_FRAME_HAS_CHILD_WITH_VIEW bit set. r=mats (0d42befd46) - Bug 1265154 - Fix compile error in MSVC 2013 caused by ArrayLength; r=heycam (1c962f2840) - Bug 1260351 - Image: Enable ConvolveVertically/Horizontally in LS3 MMI. r=tnikkel (576b6bbdb3) - Bug 1209780 (Part 1) - Mark DrawResult MOZ_MUST_USE. r=tn (e6c113bef2) - Bug 1253753 - Remove unnecessary switch fallthrough to avoid -Wimplicit-fallthrough warning. r=karlt (96bd93fc5c) - bug 1260178 null check pattern from -unico-border-gradient r=acomminos (f63c9c7ffb) - Bug 1247796. Use keyboardFocusIndicatorColor for ActiveBorder system color keyword. r=mstange (7ed133de97) - Bug 1248675 - Update the cached mBounds in nsChildView when its backing scale factor (display DPI) changes. r=mstange (8197274118) - Bug 1256576 - Make sure texture is (re)initialized if the size changed. r=snorp (2c56790ca9) - Bug 1242449 - Fix confusion among CSS, desktop and device pixel units in nsXULWindow position/size and window staggering so as to work consistently across mixed resolution displays. r=emk (f73d2fd41d) - Bug 1255645 - Ensure nsXULWindow constrains the window to the bounds of its screen after applying intrinsic sizing (if appropriate), by re-doing positioning after the window has been sized properly. r=emk (e87e0cea81) - Bug 1259492 - Ensure window position is constrained to the screen after it has been sized properly in nsXULWindow::OnChromeLoaded. r=emk (7cf599b39b) - Bug 1832708 - Disable std::__throw_* wrapping on libc++ >= 14.0. r=firefox-build-system-reviewers,andi (29e0cc9319)
250 lines
6.7 KiB
JavaScript
250 lines
6.7 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
var test_generator = do_run_test();
|
|
|
|
function run_test()
|
|
{
|
|
do_test_pending();
|
|
do_run_generator(test_generator);
|
|
}
|
|
|
|
function continue_test()
|
|
{
|
|
do_run_generator(test_generator);
|
|
}
|
|
|
|
function repeat_test()
|
|
{
|
|
// The test is probably going to fail because setting a batch of cookies took
|
|
// a significant fraction of 'gPurgeAge'. Compensate by rerunning the
|
|
// test with a larger purge age.
|
|
do_check_true(gPurgeAge < 64);
|
|
gPurgeAge *= 2;
|
|
gShortExpiry *= 2;
|
|
|
|
do_execute_soon(function() {
|
|
test_generator.close();
|
|
test_generator = do_run_test();
|
|
do_run_generator(test_generator);
|
|
});
|
|
}
|
|
|
|
// Purge threshold, in seconds.
|
|
var gPurgeAge = 1;
|
|
|
|
// Short expiry age, in seconds.
|
|
var gShortExpiry = 2;
|
|
|
|
// Required delay to ensure a purge occurs, in milliseconds. This must be at
|
|
// least gPurgeAge + 10%, and includes a little fuzz to account for timer
|
|
// resolution and possible differences between PR_Now() and Date.now().
|
|
function get_purge_delay()
|
|
{
|
|
return gPurgeAge * 1100 + 100;
|
|
}
|
|
|
|
// Required delay to ensure a cookie set with an expiry time 'gShortExpiry' into
|
|
// the future will have expired.
|
|
function get_expiry_delay()
|
|
{
|
|
return gShortExpiry * 1000 + 100;
|
|
}
|
|
|
|
function do_run_test()
|
|
{
|
|
// Set up a profile.
|
|
let profile = do_get_profile();
|
|
|
|
// twiddle prefs to convenient values for this test
|
|
Services.prefs.setIntPref("network.cookie.purgeAge", gPurgeAge);
|
|
Services.prefs.setIntPref("network.cookie.maxNumber", 100);
|
|
|
|
let expiry = Date.now() / 1000 + 1000;
|
|
|
|
// eviction is performed based on two limits: when the total number of cookies
|
|
// exceeds maxNumber + 10% (110), and when cookies are older than purgeAge
|
|
// (1 second). purging is done when both conditions are satisfied, and only
|
|
// those cookies are purged.
|
|
|
|
// we test the following cases of eviction:
|
|
// 1) excess and age are satisfied, but only some of the excess are old enough
|
|
// to be purged.
|
|
Services.cookiemgr.removeAll();
|
|
if (!set_cookies(0, 5, expiry)) {
|
|
repeat_test();
|
|
return;
|
|
}
|
|
// Sleep a while, to make sure the first batch of cookies is older than
|
|
// the second (timer resolution varies on different platforms).
|
|
do_timeout(get_purge_delay(), continue_test);
|
|
yield;
|
|
if (!set_cookies(5, 111, expiry)) {
|
|
repeat_test();
|
|
return;
|
|
}
|
|
|
|
// Fake a profile change, to ensure eviction affects the database correctly.
|
|
do_close_profile(test_generator);
|
|
yield;
|
|
do_load_profile();
|
|
do_check_true(check_remaining_cookies(111, 5, 106));
|
|
|
|
// 2) excess and age are satisfied, and all of the excess are old enough
|
|
// to be purged.
|
|
Services.cookiemgr.removeAll();
|
|
if (!set_cookies(0, 10, expiry)) {
|
|
repeat_test();
|
|
return;
|
|
}
|
|
do_timeout(get_purge_delay(), continue_test);
|
|
yield;
|
|
if (!set_cookies(10, 111, expiry)) {
|
|
repeat_test();
|
|
return;
|
|
}
|
|
|
|
do_close_profile(test_generator);
|
|
yield;
|
|
do_load_profile();
|
|
do_check_true(check_remaining_cookies(111, 10, 101));
|
|
|
|
// 3) excess and age are satisfied, and more than the excess are old enough
|
|
// to be purged.
|
|
Services.cookiemgr.removeAll();
|
|
if (!set_cookies(0, 50, expiry)) {
|
|
repeat_test();
|
|
return;
|
|
}
|
|
do_timeout(get_purge_delay(), continue_test);
|
|
yield;
|
|
if (!set_cookies(50, 111, expiry)) {
|
|
repeat_test();
|
|
return;
|
|
}
|
|
|
|
do_close_profile(test_generator);
|
|
yield;
|
|
do_load_profile();
|
|
do_check_true(check_remaining_cookies(111, 50, 101));
|
|
|
|
// 4) excess but not age are satisfied.
|
|
Services.cookiemgr.removeAll();
|
|
if (!set_cookies(0, 120, expiry)) {
|
|
repeat_test();
|
|
return;
|
|
}
|
|
|
|
do_close_profile(test_generator);
|
|
yield;
|
|
do_load_profile();
|
|
do_check_true(check_remaining_cookies(120, 0, 120));
|
|
|
|
// 5) age but not excess are satisfied.
|
|
Services.cookiemgr.removeAll();
|
|
if (!set_cookies(0, 20, expiry)) {
|
|
repeat_test();
|
|
return;
|
|
}
|
|
do_timeout(get_purge_delay(), continue_test);
|
|
yield;
|
|
if (!set_cookies(20, 110, expiry)) {
|
|
repeat_test();
|
|
return;
|
|
}
|
|
|
|
do_close_profile(test_generator);
|
|
yield;
|
|
do_load_profile();
|
|
do_check_true(check_remaining_cookies(110, 20, 110));
|
|
|
|
// 6) Excess and age are satisfied, but the cookie limit can be satisfied by
|
|
// purging expired cookies.
|
|
Services.cookiemgr.removeAll();
|
|
let shortExpiry = Math.floor(Date.now() / 1000) + gShortExpiry;
|
|
if (!set_cookies(0, 20, shortExpiry)) {
|
|
repeat_test();
|
|
return;
|
|
}
|
|
do_timeout(get_expiry_delay(), continue_test);
|
|
yield;
|
|
if (!set_cookies(20, 110, expiry)) {
|
|
repeat_test();
|
|
return;
|
|
}
|
|
do_timeout(get_purge_delay(), continue_test);
|
|
yield;
|
|
if (!set_cookies(110, 111, expiry)) {
|
|
repeat_test();
|
|
return;
|
|
}
|
|
|
|
do_close_profile(test_generator);
|
|
yield;
|
|
do_load_profile();
|
|
do_check_true(check_remaining_cookies(111, 20, 91));
|
|
|
|
do_finish_generator_test(test_generator);
|
|
}
|
|
|
|
// Set 'end - begin' total cookies, with consecutively increasing hosts numbered
|
|
// 'begin' to 'end'.
|
|
function set_cookies(begin, end, expiry)
|
|
{
|
|
do_check_true(begin != end);
|
|
|
|
let beginTime;
|
|
for (let i = begin; i < end; ++i) {
|
|
let host = "eviction." + i + ".tests";
|
|
Services.cookiemgr.add(host, "", "test", "eviction", false, false, false,
|
|
expiry);
|
|
|
|
if (i == begin)
|
|
beginTime = get_creationTime(i);
|
|
}
|
|
|
|
let endTime = get_creationTime(end - 1);
|
|
do_check_true(begin == end - 1 || endTime > beginTime);
|
|
if (endTime - beginTime > gPurgeAge * 1000000) {
|
|
// Setting cookies took an amount of time very close to the purge threshold.
|
|
// Retry the test with a larger threshold.
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
function get_creationTime(i)
|
|
{
|
|
let host = "eviction." + i + ".tests";
|
|
let enumerator = Services.cookiemgr.getCookiesFromHost(host);
|
|
do_check_true(enumerator.hasMoreElements());
|
|
let cookie = enumerator.getNext().QueryInterface(Ci.nsICookie2);
|
|
return cookie.creationTime;
|
|
}
|
|
|
|
// Test that 'aNumberToExpect' cookies remain after purging is complete, and
|
|
// that the cookies that remain consist of the set expected given the number of
|
|
// of older and newer cookies -- eviction should occur by order of lastAccessed
|
|
// time, if both the limit on total cookies (maxNumber + 10%) and the purge age
|
|
// + 10% are exceeded.
|
|
function check_remaining_cookies(aNumberTotal, aNumberOld, aNumberToExpect) {
|
|
var enumerator = Services.cookiemgr.enumerator;
|
|
|
|
let i = 0;
|
|
while (enumerator.hasMoreElements()) {
|
|
var cookie = enumerator.getNext().QueryInterface(Ci.nsICookie2);
|
|
++i;
|
|
|
|
if (aNumberTotal != aNumberToExpect) {
|
|
// make sure the cookie is one of the batch we expect was purged.
|
|
var hostNumber = new Number(cookie.rawHost.split(".")[1]);
|
|
if (hostNumber < (aNumberOld - aNumberToExpect)) break;
|
|
}
|
|
}
|
|
|
|
return i == aNumberToExpect;
|
|
}
|