modules/libjar/test/unit/test_bug589292.js

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

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 // Make sure we behave appropriately when asking for content-disposition
michael@0 2
michael@0 3 const Cc = Components.classes;
michael@0 4 const Ci = Components.interfaces;
michael@0 5 const path = "data/test_bug589292.zip";
michael@0 6
michael@0 7 function run_test() {
michael@0 8 var ios = Cc["@mozilla.org/network/io-service;1"].
michael@0 9 getService(Ci.nsIIOService);
michael@0 10 var spec = "jar:" + ios.newFileURI(do_get_file(path)).spec + "!/foo.txt";
michael@0 11 var channel = ios.newChannel(spec, null, null);
michael@0 12 instr = channel.open();
michael@0 13 var val;
michael@0 14 try {
michael@0 15 val = channel.contentDisposition;
michael@0 16 do_check_true(false, "The channel has content disposition?!");
michael@0 17 } catch (e) {
michael@0 18 // This is what we want to happen - there's no underlying channel, so no
michael@0 19 // content-disposition header is available
michael@0 20 do_check_true(true, "How are you reading this?!");
michael@0 21 }
michael@0 22 }

mercurial