summaryrefslogtreecommitdiffstats
path: root/dom/u2f/tests/frame_appid_facet_subdomain.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/u2f/tests/frame_appid_facet_subdomain.html')
-rw-r--r--dom/u2f/tests/frame_appid_facet_subdomain.html56
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>