Update web-platform-tests to revision 5084587f6b05bf99ad09e7844be66dcc61070cdf

This commit is contained in:
WPT Sync Bot 2018-04-25 21:10:30 -04:00 committed by Anthony Ramine
parent 6d42d2f1e8
commit 7d1071a6a4
408 changed files with 8968 additions and 2608 deletions

View file

@ -5,50 +5,46 @@
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/utils.js"></script>
<link rel="help" href="https://xhr.spec.whatwg.org/#the-open()-method" data-tested-assertations="following::ol[1]/li[9]/ol[1]/li[1] following::ol[1]/li[9]/ol[1]/li[2]" />
<link rel="help" href="https://xhr.spec.whatwg.org/#the-send()-method" data-tested-assertations="following::code[contains(@title,'http-authorization')]/.." /> </head>
</head>
<body>
<div id="log"></div>
<script>
function request(user1, pass1, user2, pass2, name) {
// user1, pass1 will if given become userinfo part of URL
// user2, pass2 will if given be passed to open() call
test(function() {
var client = new XMLHttpRequest(),
urlstart = "", userwin, passwin
// if user2 is set, winning user name and password is 2
if(user2)
userwin = user2, passwin = pass2
// if user1 is set, and user2 is not set, user1 and pass1 win
if(user1 && ! user2)
userwin = user1, passwin = pass1
// if neither user name is set, pass 2 wins (there will be no userinfo in URL)
if (!(user1 || user2))
passwin = pass2
if(user1) { // should add userinfo to URL (there is no way to create userinfo part of URL with only password in)
urlstart = "http://" + user1
if(pass1)
urlstart += ":" + pass1
urlstart += "@" + location.host + location.pathname.replace(/\/[^\/]*$/, '/')
const client = new XMLHttpRequest(),
userwin = user2 || user1,
passwin = pass2 || pass1;
let urlstart = "";
if (user1 || pass1) {
urlstart = "http://";
if (user1) {
urlstart += user1;
}
if (pass1) {
urlstart += ":" + pass1;
}
urlstart += "@" + location.host + location.pathname.replace(/\/[^\/]*$/, '/');
}
client.open("GET", urlstart + "resources/authentication.py", false, user2, pass2)
client.setRequestHeader("x-user", userwin)
client.send(null)
assert_true(client.responseText == ((userwin||'') + "\n" + (passwin||'')), 'responseText should contain the right user and password')
// We want to send multiple requests to the same realm here, so we try to make the UA forget its (cached) credentials between each test..
// forcing a 401 response to (hopefully) "log out"
// NOTE: This is commented out because it causes authentication prompts while running the test
//client.open('GET', "resources/authentication.py?logout=1", false)
//client.send()
}, document.title+' '+name)
client.open("GET", urlstart + "resources/authentication.py", false, user2, pass2);
client.setRequestHeader("x-user", userwin);
client.send(null);
assert_equals(client.responseText, ((userwin||'') + "\n" + (passwin||'')), 'responseText should contain the right user and password');
}, "XMLHttpRequest user/pass options: " + name);
}
request(null, null, token(), token(), 'user/pass in open() call')
request(null, null, token(), token(), 'another user/pass in open() call - must override cached credentials from previous test')
request("userinfo-user", "userinfo-pass", token(), token(), 'user/pass both in URL userinfo AND open() call - expexted that open() wins')
request(token(), token(), null, null, 'user/pass *only* in URL userinfo')
request(token(), null, null, token(), 'user name in URL userinfo, password in open() call: user name wins and password is thrown away')
request("1", token(), token(), null, 'user name and password in URL userinfo, only user name in open() call: user name in open() wins')
// Cannot have just a password
request(null, null, token(), null, "user in open()");
request(null, null, token(), token(), "user/pass in open()");
request(null, null, token(), token(), "another user/pass in open(); must override cached credentials from previous test");
request(null, token(), token(), null, "pass in URL, user in open()");
request(null, token(), token(), token(), "pass in URL, user/pass in open()");
request(token(), null, null, null, "user in URL");
request(token(), null, null, token(), "user in URL, pass in open()");
request(token(), token(), null, null, "user/pass in URL");
request(token(), null, token(), null, "user in URL and open()");
request(token(), null, token(), token(), "user in URL; user/pass in open()");
request(token(), token(), token(), null, "user/pass in URL; user in open()");
request(token(), token(), null, token(), "user/pass in URL; pass in open()");
request(token(), token(), token(), token(), "user/pass in URL and open()");
</script>
</body>
</html>