summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/storage-access-api/requestStorageAccess-web-socket.tentative.sub.https.window.js
blob: bc323bd95a09a0ed3192f5a67db1be5636f09961 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// META: script=helpers.js
// META: script=/cookies/resources/cookie-helper.sub.js
// META: script=/resources/testdriver.js
// META: script=/resources/testdriver-vendor.js

'use strict';

const altRoot = "https://{{hosts[alt][]}}:{{ports[https][0]}}";
const altRootWss = "wss://{{hosts[alt][]}}:{{ports[wss][0]}}";

const responderPath = "/storage-access-api/resources/script-with-cookie-header.py?script=embedded_responder.js";
const altRootResponder = `${altRoot}${responderPath}`;

async function SetUpResponderFrame(t, url) {
  const frame = await CreateFrame(url);

  await SetPermissionInFrame(frame, [{ name: 'storage-access' }, 'granted']);
  t.add_cleanup(async () => {
    await test_driver.delete_all_cookies();
    await SetPermissionInFrame(frame, [{ name: 'storage-access' }, 'prompt']);
    await MaybeSetStorageAccess("*", "*", "allowed");
  });

  return frame;
}

promise_test(async (t) => {
  await MaybeSetStorageAccess("*", "*", "blocked");
  await SetFirstPartyCookieAndUnsetStorageAccessPermission(altRoot);

  const frame = await SetUpResponderFrame(t, altRootResponder);

  assert_true(await RequestStorageAccessInFrame(frame), "requestStorageAccess resolves without requiring a gesture.");
  assert_true(await FrameHasStorageAccess(frame), "frame has storage access after request.");
  assert_true(await HasUnpartitionedCookie(frame), "frame has access to cookies after request.");

  assert_true(cookieStringHasCookie("cookie", "unpartitioned",
              await ReadCookiesFromWebSocketConnection(frame, altRootWss)),
          "WebSocket handshake should include unpartitioned cookie");
}, "WebSocket inherits storage access");

promise_test(async (t) => {

  await MaybeSetStorageAccess("*", "*", "blocked");
  await SetFirstPartyCookieAndUnsetStorageAccessPermission(altRoot);
  const frame = await SetUpResponderFrame(t, altRootResponder);

  assert_false(cookieStringHasCookie("cookie", "unpartitioned",
              await ReadCookiesFromWebSocketConnection(frame, altRootWss)),
          "request should not contain cookies");
}, "WebSocket omits unpartitioned cookies without storage access");