summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/xhr-authorization-redirect.any.js
blob: beed7c31d70616cd66634b48b64ca8ae8eeeeee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// META: global=window,sharedworker,dedicatedworker
// META: script=/common/get-host-info.sub.js

const authorizationValue = "Basic " + btoa("user:pass");
function getAuthorizationHeaderValue(url)
{
  var client = new XMLHttpRequest();
  client.open("GET", url, false);
  client.setRequestHeader("Authorization", authorizationValue);
  const promise = new Promise(resolve => client.onloadend = () => resolve(client.responseText));
  client.send();
  return promise;
}

promise_test(async test => {
  const result = await getAuthorizationHeaderValue("/fetch/api/resources/dump-authorization-header.py");
  assert_equals(result, authorizationValue);
}, "getAuthorizationHeaderValue - no redirection");

promise_test(async test => {
  const result = await getAuthorizationHeaderValue("/fetch/api/resources/redirect.py?location=" + encodeURIComponent("/fetch/api/resources/dump-authorization-header.py"));
  assert_equals(result, authorizationValue);
}, "getAuthorizationHeaderValue - same origin redirection");

promise_test(async (test) => {
  const result = await getAuthorizationHeaderValue(get_host_info().HTTP_REMOTE_ORIGIN + "/fetch/api/resources/redirect.py?allow_headers=Authorization&location=" + encodeURIComponent(get_host_info().HTTP_ORIGIN + "/fetch/api/resources/dump-authorization-header.py"));
  assert_equals(result, "none");
}, "getAuthorizationHeaderValue - cross origin redirection");