diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /dom/u2f/tests/frame_appid_facet_subdomain.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/u2f/tests/frame_appid_facet_subdomain.html')
-rw-r--r-- | dom/u2f/tests/frame_appid_facet_subdomain.html | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/dom/u2f/tests/frame_appid_facet_subdomain.html b/dom/u2f/tests/frame_appid_facet_subdomain.html new file mode 100644 index 000000000..10eecf0c0 --- /dev/null +++ b/dom/u2f/tests/frame_appid_facet_subdomain.html @@ -0,0 +1,56 @@ +<!DOCTYPE html> +<meta charset=utf-8> +<head> + <script src="u2futil.js"></script> +</head> +<body> +<p>Test for AppID / FacetID behavior for FIDO Universal Second Factor</p> +<script class="testbody" type="text/javascript"> +"use strict"; + +var version = "U2F_V2"; +var challenge = new Uint8Array(16); + +local_is(window.location.origin, "https://test1.example.com", "Is loaded correctly"); + +local_expectThisManyTests(4); + +// same domain check +u2f.register("https://test1.example.com/appId", [{ + version: version, + challenge: bytesToBase64UrlSafe(challenge), +}], [], function(res){ + local_is(res.errorCode, 0, "AppID should work from a different path of this domain"); + local_completeTest(); +}); + +// same domain check, but wrong scheme +u2f.register("http://test1.example.com/appId", [{ + version: version, + challenge: bytesToBase64UrlSafe(challenge), +}], [], function(res){ + local_isnot(res.errorCode, 0, "AppID should not work when using a different scheme"); + local_completeTest(); +}); + +// eTLD+1 subdomain check +u2f.register("https://example.com/appId", [{ + version: version, + challenge: bytesToBase64UrlSafe(challenge), +}], [], function(res){ + local_isnot(res.errorCode, 0, "AppID should not work from another subdomain in this registered domain"); + local_completeTest(); +}); + +// other domain check +u2f.register("https://mochi.test:8888/appId", [{ + version: version, + challenge: bytesToBase64UrlSafe(challenge), +}], [], function(res){ + local_isnot(res.errorCode, 0, "AppID should not work from other domains"); + local_completeTest(); +}); + +</script> +</body> +</html> |