-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathset-authorization.https.html
More file actions
28 lines (23 loc) · 1.2 KB
/
set-authorization.https.html
File metadata and controls
28 lines (23 loc) · 1.2 KB
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
<!DOCTYPE html>
<meta charset="utf-8">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="helper.js" type="module"></script>
<script type="module">
import { expireCookie, documentHasCookie, waitForCookie, addCookieAndSessionCleanup, configureServer, setupShardedServerState } from "./helper.js";
promise_test(async t => {
await setupShardedServerState();
const expectedCookieAndValue = "auth_cookie=abcdef0123";
addCookieAndSessionCleanup(t);
// Configure server send back an authorization header for registration.
await configureServer({ authorizationValue: "authcode" });
// Prompt starting a session, and wait until registration completes.
// The server will confirm that the authorization is sent in registration.
const loginResponse = await fetch('login.py');
assert_equals(loginResponse.status, 200);
await waitForCookie(expectedCookieAndValue, /*expectCookie=*/true);
// Confirm that registration succeeded (cookie was set).
const authResponse = await fetch('verify_authenticated.py');
assert_equals(authResponse.status, 200);
}, "Session registration sends the authorization value");
</script>