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 | <!DOCTYPE HTML> |
michael@0 | 2 | <html> |
michael@0 | 3 | <!-- |
michael@0 | 4 | https://bugzilla.mozilla.org/show_bug.cgi?id=654348 |
michael@0 | 5 | --> |
michael@0 | 6 | <head> |
michael@0 | 7 | <title>Test for Bug 654348</title> |
michael@0 | 8 | <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 9 | <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> |
michael@0 | 10 | </head> |
michael@0 | 11 | <body onload="startTest()"> |
michael@0 | 12 | <script class="testbody" type="text/javascript"> |
michael@0 | 13 | |
michael@0 | 14 | /** |
michael@0 | 15 | * This test checks we correctly ignore authentication entry |
michael@0 | 16 | * for a subpath and use creds from the URL when provided when XHR |
michael@0 | 17 | * is used with filled user name and password. |
michael@0 | 18 | * |
michael@0 | 19 | * 1. connect authenticate.sjs that excepts user1:pass1 password |
michael@0 | 20 | * 2. connect authenticate.sjs that this time expects differentuser2:pass2 password |
michael@0 | 21 | * we must use the creds that are provided to the xhr witch are different and expected |
michael@0 | 22 | */ |
michael@0 | 23 | |
michael@0 | 24 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 25 | |
michael@0 | 26 | function clearAuthCache() |
michael@0 | 27 | { |
michael@0 | 28 | var authMgr = SpecialPowers.Cc['@mozilla.org/network/http-auth-manager;1'] |
michael@0 | 29 | .getService(SpecialPowers.Ci.nsIHttpAuthManager); |
michael@0 | 30 | authMgr.clearAll(); |
michael@0 | 31 | } |
michael@0 | 32 | |
michael@0 | 33 | function doxhr(URL, user, pass, code, next) |
michael@0 | 34 | { |
michael@0 | 35 | var xhr = new XMLHttpRequest(); |
michael@0 | 36 | if (user && pass) |
michael@0 | 37 | xhr.open("POST", URL, true, user, pass); |
michael@0 | 38 | else |
michael@0 | 39 | xhr.open("POST", URL, true); |
michael@0 | 40 | xhr.onload = function() |
michael@0 | 41 | { |
michael@0 | 42 | is(xhr.status, code, "expected response code " + code); |
michael@0 | 43 | next(); |
michael@0 | 44 | } |
michael@0 | 45 | xhr.onerror = function() |
michael@0 | 46 | { |
michael@0 | 47 | ok(false, "request passed"); |
michael@0 | 48 | finishTest(); |
michael@0 | 49 | } |
michael@0 | 50 | xhr.send(); |
michael@0 | 51 | } |
michael@0 | 52 | |
michael@0 | 53 | function startTest() |
michael@0 | 54 | { |
michael@0 | 55 | clearAuthCache(); |
michael@0 | 56 | doxhr("authenticate.sjs?user=dummy&pass=pass1&realm=realm1&formauth=1", "dummy", "dummy", 403, function() { |
michael@0 | 57 | doxhr("authenticate.sjs?user=dummy&pass=pass1&realm=realm1&formauth=1", "dummy", "pass1", 200, finishTest); |
michael@0 | 58 | }); |
michael@0 | 59 | } |
michael@0 | 60 | |
michael@0 | 61 | function finishTest() |
michael@0 | 62 | { |
michael@0 | 63 | clearAuthCache(); |
michael@0 | 64 | SimpleTest.finish(); |
michael@0 | 65 | } |
michael@0 | 66 | |
michael@0 | 67 | </script> |
michael@0 | 68 | </body> |
michael@0 | 69 | </html> |
michael@0 | 70 |