Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #include "gtest/gtest.h" |
michael@0 | 7 | |
michael@0 | 8 | #include "gfxPrefs.h" |
michael@0 | 9 | #ifdef GFX_DECL_PREF |
michael@0 | 10 | #error "This is not supposed to be defined outside of gfxPrefs.h" |
michael@0 | 11 | #endif |
michael@0 | 12 | |
michael@0 | 13 | // If the default values for any of these preferences change, |
michael@0 | 14 | // just modify the test to match. We are only testing against |
michael@0 | 15 | // a particular value to make sure we receive the correct |
michael@0 | 16 | // result through this API. |
michael@0 | 17 | |
michael@0 | 18 | TEST(GfxPrefs, Singleton) { |
michael@0 | 19 | ASSERT_FALSE(gfxPrefs::SingletonExists()); |
michael@0 | 20 | gfxPrefs::GetSingleton(); |
michael@0 | 21 | ASSERT_TRUE(gfxPrefs::SingletonExists()); |
michael@0 | 22 | gfxPrefs::DestroySingleton(); |
michael@0 | 23 | ASSERT_FALSE(gfxPrefs::SingletonExists()); |
michael@0 | 24 | } |
michael@0 | 25 | |
michael@0 | 26 | TEST(GfxPrefs, LiveValues) { |
michael@0 | 27 | ASSERT_FALSE(gfxPrefs::SingletonExists()); |
michael@0 | 28 | gfxPrefs::GetSingleton(); |
michael@0 | 29 | ASSERT_TRUE(gfxPrefs::SingletonExists()); |
michael@0 | 30 | |
michael@0 | 31 | // Live boolean, default false |
michael@0 | 32 | ASSERT_FALSE(gfxPrefs::CanvasAzureAccelerated()); |
michael@0 | 33 | |
michael@0 | 34 | // Live int32_t, default 23456 |
michael@0 | 35 | ASSERT_TRUE(gfxPrefs::LayerScopePort() == 23456); |
michael@0 | 36 | |
michael@0 | 37 | // Live uint32_t, default 2 |
michael@0 | 38 | ASSERT_TRUE(gfxPrefs::MSAALevel() == 2); |
michael@0 | 39 | |
michael@0 | 40 | gfxPrefs::DestroySingleton(); |
michael@0 | 41 | ASSERT_FALSE(gfxPrefs::SingletonExists()); |
michael@0 | 42 | } |
michael@0 | 43 | |
michael@0 | 44 | TEST(GfxPrefs, OnceValues) { |
michael@0 | 45 | ASSERT_FALSE(gfxPrefs::SingletonExists()); |
michael@0 | 46 | gfxPrefs::GetSingleton(); |
michael@0 | 47 | ASSERT_TRUE(gfxPrefs::SingletonExists()); |
michael@0 | 48 | |
michael@0 | 49 | // Once boolean, default true |
michael@0 | 50 | ASSERT_TRUE(gfxPrefs::WorkAroundDriverBugs()); |
michael@0 | 51 | |
michael@0 | 52 | // Once boolean, default false |
michael@0 | 53 | ASSERT_FALSE(gfxPrefs::LayersDump()); |
michael@0 | 54 | |
michael@0 | 55 | // Once int32_t, default 95 |
michael@0 | 56 | ASSERT_TRUE(gfxPrefs::CanvasSkiaGLCacheSize() == 96); |
michael@0 | 57 | |
michael@0 | 58 | // Once uint32_t, default 5 |
michael@0 | 59 | ASSERT_TRUE(gfxPrefs::APZMaxVelocityQueueSize() == 5); |
michael@0 | 60 | |
michael@0 | 61 | // Once float, default -1 (should be OK with ==) |
michael@0 | 62 | ASSERT_TRUE(gfxPrefs::APZMaxVelocity() == -1.0f); |
michael@0 | 63 | |
michael@0 | 64 | gfxPrefs::DestroySingleton(); |
michael@0 | 65 | ASSERT_FALSE(gfxPrefs::SingletonExists()); |
michael@0 | 66 | } |
michael@0 | 67 |