mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 07:18:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Fetch in worker: Authorisation header management for basic authentication</title>
|
||||
<meta name="author" title="Canon Research France" href="https://www.crf.canon.fr">
|
||||
<meta name="help" href="https://fetch.spec.whatwg.org/#http-fetch">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
fetch_tests_from_worker(new Worker("authentication-basic.js"));
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Fetch: Authorisation header management for basic authentication</title>
|
||||
<meta name="author" title="Canon Research France" href="https://www.crf.canon.fr">
|
||||
<meta name="help" href="https://fetch.spec.whatwg.org/#http-fetch">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<script src="../resources/utils.js"></script>
|
||||
<script src="authentication-basic.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
if (this.document === undefined) {
|
||||
importScripts("/resources/testharness.js");
|
||||
importScripts("../resources/utils.js");
|
||||
}
|
||||
|
||||
function basicAuth(desc, user, pass, mode, status) {
|
||||
promise_test(function(test) {
|
||||
var headers = { "Authorization": "Basic " + btoa(user + ":" + pass)};
|
||||
var requestInit = {"credentials": mode, "headers": headers};
|
||||
return fetch(RESOURCES_DIR + "authentication.py?realm=test", requestInit).then(function(resp) {
|
||||
assert_equals(resp.status, status, "HTTP status is " + status);
|
||||
assert_equals(resp.type , "basic", "Response's type is basic");
|
||||
});
|
||||
}, desc);
|
||||
}
|
||||
|
||||
basicAuth("User-added Authorization header with include mode", "user", "password", "include", 200);
|
||||
basicAuth("User-added Authorization header with same-origin mode", "user", "password", "same-origin", 200);
|
||||
basicAuth("User-added Authorization header with omit mode", "user", "password", "omit", 200);
|
||||
|
||||
done();
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Fetch in worker: cookies management</title>
|
||||
<meta name="author" title="Canon Research France" href="https://www.crf.canon.fr">
|
||||
<meta name="help" href="https://fetch.spec.whatwg.org/#main-fetch">
|
||||
<meta name="help" href="https://fetch.spec.whatwg.org/#http-fetch">
|
||||
<meta name="help" href="https://fetch.spec.whatwg.org/#http-network-fetch">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
fetch_tests_from_worker(new Worker("cookies.js"));
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Fetch: cookies management</title>
|
||||
<meta name="author" title="Canon Research France" href="https://www.crf.canon.fr">
|
||||
<meta name="help" href="https://fetch.spec.whatwg.org/#main-fetch">
|
||||
<meta name="help" href="https://fetch.spec.whatwg.org/#http-fetch">
|
||||
<meta name="help" href="https://fetch.spec.whatwg.org/#http-network-fetch">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<script src="../resources/utils.js"></script>
|
||||
<script src="cookies.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
53
testing/web-platform/tests/fetch/api/credentials/cookies.js
Normal file
53
testing/web-platform/tests/fetch/api/credentials/cookies.js
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
if (this.document === undefined) {
|
||||
importScripts("/resources/testharness.js");
|
||||
importScripts("../resources/utils.js");
|
||||
}
|
||||
|
||||
function cookies(desc, credentials1, credentials2 ,cookies) {
|
||||
var url = RESOURCES_DIR + "top.txt"
|
||||
var urlParameters = "";
|
||||
var urlCleanParameters = "";
|
||||
if (cookies) {
|
||||
urlParameters +="?pipe=header(Set-Cookie,";
|
||||
urlParameters += cookies.join(",True)|header(Set-Cookie,") + ",True)";
|
||||
urlCleanParameters +="?pipe=header(Set-Cookie,";
|
||||
urlCleanParameters += cookies.join("%3B%20max-age=0,True)|header(Set-Cookie,") + "%3B%20max-age=0,True)";
|
||||
}
|
||||
|
||||
var requestInit = {"credentials": credentials1}
|
||||
promise_test(function(test){
|
||||
var requestInit = {"credentials": credentials1}
|
||||
return fetch(url + urlParameters, requestInit).then(function(resp) {
|
||||
assert_equals(resp.status, 200, "HTTP status is 200");
|
||||
assert_equals(resp.type , "basic", "Response's type is basic");
|
||||
//check cookies sent
|
||||
return fetch(RESOURCES_DIR + "inspect-headers.py?headers=cookie" , {"credentials": credentials2});
|
||||
}).then(function(resp) {
|
||||
assert_equals(resp.status, 200, "HTTP status is 200");
|
||||
assert_equals(resp.type , "basic", "Response's type is basic");
|
||||
assert_false(resp.headers.has("Cookie") , "Cookie header is not exposed in response");
|
||||
if (credentials1 != "omit" && credentials2 != "omit") {
|
||||
assert_equals(resp.headers.get("x-request-cookie") , cookies.join("; "), "Request include cookie(s)");
|
||||
}
|
||||
else {
|
||||
assert_false(resp.headers.has("x-request-cookie") , "Request does not have cookie(s)");
|
||||
}
|
||||
//clean cookies
|
||||
return fetch(url + urlCleanParameters, {"credentials": "include"});
|
||||
}).catch(function(e) {
|
||||
return fetch(url + urlCleanParameters, {"credentials": "include"}).then(function() {
|
||||
return Promise.reject(e);
|
||||
});
|
||||
});
|
||||
}, desc);
|
||||
}
|
||||
|
||||
cookies("Include mode: 1 cookie", "include", "include", ["a=1"]);
|
||||
cookies("Include mode: 2 cookies", "include", "include", ["b=2", "c=3"]);
|
||||
cookies("Omit mode: discard cookies", "omit", "omit", ["d=4"]);
|
||||
cookies("Omit mode: no cookie is stored", "omit", "include", ["e=5"]);
|
||||
cookies("Omit mode: no cookie is sent", "include", "omit", ["f=6"]);
|
||||
cookies("Same-origin mode: 1 cookie", "same-origin", "same-origin", ["a=1"]);
|
||||
cookies("Same-origin mode: 2 cookies", "same-origin", "same-origin", ["b=2", "c=3"]);
|
||||
|
||||
done();
|
||||
Loading…
Add table
Add a link
Reference in a new issue