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: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* vim:set ts=2 sw=2 sts=2 et: */ |
michael@0 | 3 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | const Cc = Components.classes; |
michael@0 | 8 | const Ci = Components.interfaces; |
michael@0 | 9 | const Cr = Components.results; |
michael@0 | 10 | const CC = Components.Constructor; |
michael@0 | 11 | |
michael@0 | 12 | var Pipe = CC("@mozilla.org/pipe;1", "nsIPipe", "init"); |
michael@0 | 13 | |
michael@0 | 14 | function run_test() |
michael@0 | 15 | { |
michael@0 | 16 | test_not_initialized(); |
michael@0 | 17 | test_ends_are_threadsafe(); |
michael@0 | 18 | } |
michael@0 | 19 | |
michael@0 | 20 | function test_not_initialized() |
michael@0 | 21 | { |
michael@0 | 22 | var p = Cc["@mozilla.org/pipe;1"] |
michael@0 | 23 | .createInstance(Ci.nsIPipe); |
michael@0 | 24 | try |
michael@0 | 25 | { |
michael@0 | 26 | var dummy = p.outputStream; |
michael@0 | 27 | throw Cr.NS_ERROR_FAILURE; |
michael@0 | 28 | } |
michael@0 | 29 | catch (e) |
michael@0 | 30 | { |
michael@0 | 31 | if (e.result != Cr.NS_ERROR_NOT_INITIALIZED) |
michael@0 | 32 | do_throw("using a pipe before initializing it should throw NS_ERROR_NOT_INITIALIZED"); |
michael@0 | 33 | } |
michael@0 | 34 | } |
michael@0 | 35 | |
michael@0 | 36 | function test_ends_are_threadsafe() |
michael@0 | 37 | { |
michael@0 | 38 | var p, is, os; |
michael@0 | 39 | |
michael@0 | 40 | p = new Pipe(true, true, 1024, 1, null); |
michael@0 | 41 | is = p.inputStream.QueryInterface(Ci.nsIClassInfo); |
michael@0 | 42 | os = p.outputStream.QueryInterface(Ci.nsIClassInfo); |
michael@0 | 43 | do_check_true(Boolean(is.flags & Ci.nsIClassInfo.THREADSAFE)); |
michael@0 | 44 | do_check_true(Boolean(os.flags & Ci.nsIClassInfo.THREADSAFE)); |
michael@0 | 45 | |
michael@0 | 46 | p = new Pipe(true, false, 1024, 1, null); |
michael@0 | 47 | is = p.inputStream.QueryInterface(Ci.nsIClassInfo); |
michael@0 | 48 | os = p.outputStream.QueryInterface(Ci.nsIClassInfo); |
michael@0 | 49 | do_check_true(Boolean(is.flags & Ci.nsIClassInfo.THREADSAFE)); |
michael@0 | 50 | do_check_true(Boolean(os.flags & Ci.nsIClassInfo.THREADSAFE)); |
michael@0 | 51 | |
michael@0 | 52 | p = new Pipe(false, true, 1024, 1, null); |
michael@0 | 53 | is = p.inputStream.QueryInterface(Ci.nsIClassInfo); |
michael@0 | 54 | os = p.outputStream.QueryInterface(Ci.nsIClassInfo); |
michael@0 | 55 | do_check_true(Boolean(is.flags & Ci.nsIClassInfo.THREADSAFE)); |
michael@0 | 56 | do_check_true(Boolean(os.flags & Ci.nsIClassInfo.THREADSAFE)); |
michael@0 | 57 | |
michael@0 | 58 | p = new Pipe(false, false, 1024, 1, null); |
michael@0 | 59 | is = p.inputStream.QueryInterface(Ci.nsIClassInfo); |
michael@0 | 60 | os = p.outputStream.QueryInterface(Ci.nsIClassInfo); |
michael@0 | 61 | do_check_true(Boolean(is.flags & Ci.nsIClassInfo.THREADSAFE)); |
michael@0 | 62 | do_check_true(Boolean(os.flags & Ci.nsIClassInfo.THREADSAFE)); |
michael@0 | 63 | } |