summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/credential-management/fedcm-multi-idp/get-before-and-after-onload.https.html
blob: 12e0eb4d813eed1cd358ad072ed1c48ed7e78f36 (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
<!DOCTYPE html>
<title>Federated Credential Management API multi IDP get before and after onload test.</title>
<link rel="help" href="https://fedidcg.github.io/FedCM">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>

<body>

<script type="module">
import {set_fedcm_cookie, set_alt_fedcm_cookie,
        request_options_with_mediation_required,
        alt_request_options_with_mediation_required,
        fedcm_select_account_promise} from '../support/fedcm-helper.sub.js';

let cookies_promise = Promise.all([set_fedcm_cookie(), set_alt_fedcm_cookie()]);
let has_window_loaded = false;
const window_loaded = new Promise(resolve => {
  window.addEventListener('load', () => {
    has_window_loaded = true;
    resolve();
  });
});

promise_test(async t => {
  let first_cred_resolved = false;
  assert_false(has_window_loaded);
  // First navigator.credentials.get() is called prior to window.onload
  const first_cred = navigator.credentials.get(request_options_with_mediation_required()).finally(() => { first_cred_resolved = true; });
  await Promise.all([cookies_promise, window_loaded]);
  assert_true(has_window_loaded);
  assert_false(first_cred_resolved);

  // Second navigator.credentials.get() is called after window.onload but before first navigator.credentials.get()
  // resolves. Should be rejected because it occurs after onload, and the first get() call is pending.
  const second_cred = navigator.credentials.get(alt_request_options_with_mediation_required());
  const rejection = promise_rejects_dom(t, 'NotAllowedError', second_cred);

  // Select first account from the first get() call.
  await fedcm_select_account_promise(t, 0);
  const first = await first_cred;
  assert_equals(first.token, "token");
  return rejection;
}, "When there's a `get` call before onload, a `get` call which occurs after onload but before the first `get` call resolves, should be rejected.");

</script>