Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 5 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /fedcm/fedcm-reject-invalid-responses.https.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Federated Credential Management API network request tests.</title>
<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>
<script type="module">
import {fedcm_test,
request_options_with_mediation_required,
fedcm_get_and_select_first_account} from './support/fedcm-helper.sub.js';
fedcm_test(async t => {
let test_options = request_options_with_mediation_required();
test_options.identity.providers = [];
const cred = fedcm_get_and_select_first_account(t, test_options);
return promise_rejects_js(t, TypeError, cred);
}, "Reject when provider list is empty");
fedcm_test(async t => {
let test_options = request_options_with_mediation_required();
delete test_options.identity.providers[0].configURL;
const cred = fedcm_get_and_select_first_account(t, test_options);
return promise_rejects_js(t, TypeError, cred);
}, "Reject when configURL is missing" );
fedcm_test(async t => {
let test_options = request_options_with_mediation_required();
test_options.identity.providers[0].configURL = 'test';
const cred = fedcm_get_and_select_first_account(t, test_options);
return promise_rejects_dom(t, "InvalidStateError", cred);
}, "Reject when configURL is invalid");
fedcm_test(async t => {
let test_options = request_options_with_mediation_required();
test_options.identity.providers[0].clientId = '';
const cred = fedcm_get_and_select_first_account(t, test_options);
return promise_rejects_dom(t, "InvalidStateError", cred);
}, "Reject when clientId is empty");
fedcm_test(async t => {
let test_options = request_options_with_mediation_required();
delete test_options.identity.providers[0].clientId;
const cred = fedcm_get_and_select_first_account(t, test_options);
return promise_rejects_js(t, TypeError, cred);
}, "Reject when clientId is missing" );
</script>