summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/infrastructure/server/wpt-server-http.sub.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/infrastructure/server/wpt-server-http.sub.html')
-rw-r--r--testing/web-platform/tests/infrastructure/server/wpt-server-http.sub.html262
1 files changed, 262 insertions, 0 deletions
diff --git a/testing/web-platform/tests/infrastructure/server/wpt-server-http.sub.html b/testing/web-platform/tests/infrastructure/server/wpt-server-http.sub.html
new file mode 100644
index 0000000000..8d71e7e3a2
--- /dev/null
+++ b/testing/web-platform/tests/infrastructure/server/wpt-server-http.sub.html
@@ -0,0 +1,262 @@
+<!doctype html>
+<html>
+ <head>
+ <title>WPT Server checker</title>
+ <meta charset="utf-8" />
+ <script src="/resources/testharness.js"></script>
+ <script src="/resources/testharnessreport.js"></script>
+ </head>
+</body>
+<body>
+<script>
+function check(protocol, domain, port, done) {
+ var scheme = protocol == "h2" ? "https" : protocol;
+ var url = scheme + '://' + domain + ':' + port + '/media/1x1-green.png';
+ var img = document.createElement('img');
+ img.setAttribute('src', url);
+ img.style.display = 'none';
+ img.onerror = function() {
+ done(false);
+ };
+ img.onload = function() {
+ done(true);
+ };
+
+ document.body.appendChild(img);
+}
+
+async_test(function(t) {
+ check('http', '{{browser_host}}', {{ports[http][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTP protocol, no subdomain, port #1');
+
+async_test(function(t) {
+ check('http', '{{browser_host}}', {{ports[http][1]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTP protocol, no subdomain, port #2');
+
+async_test(function(t) {
+ check('http', '{{domains[www]}}', {{ports[http][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTP protocol, www subdomain #1, port #1');
+
+async_test(function(t) {
+ check('http', '{{domains[www]}}', {{ports[http][1]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTP protocol, www subdomain #1, port #2');
+
+async_test(function(t) {
+ check('http', '{{domains[www1]}}', {{ports[http][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTP protocol, www subdomain #2, port #1');
+
+async_test(function(t) {
+ check('http', '{{domains[www1]}}', {{ports[http][1]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTP protocol, www subdomain #2, port #2');
+
+async_test(function(t) {
+ check('http', '{{domains[www2]}}', {{ports[http][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTP protocol, www subdomain #3, port #1');
+
+async_test(function(t) {
+ check('http', '{{domains[www2]}}', {{ports[http][1]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTP protocol, www subdomain #3, port #2');
+
+async_test(function(t) {
+ check('http', '{{domains[élève]}}', {{ports[http][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTP protocol, punycode subdomain #1, port #1');
+
+async_test(function(t) {
+ check('http', '{{domains[élève]}}', {{ports[http][1]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTP protocol, punycode subdomain #1, port #2');
+
+async_test(function(t) {
+ check('http', '{{domains[天気の良い日]}}', {{ports[http][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTP protocol, punycode subdomain #2, port #1');
+
+async_test(function(t) {
+ check('http', '{{domains[天気の良い日]}}', {{ports[http][1]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTP protocol, punycode subdomain #2, port #2');
+
+async_test(function(t) {
+ check('http', 'nonexistent.{{domains[]}}', {{ports[http][0]}}, t.step_func(function(result) {
+ assert_false(result);
+
+ t.done();
+ }));
+}, 'HTTP protocol, non-existent domain, port #1');
+
+async_test(function(t) {
+ check('http', 'nonexistent.{{domains[]}}', {{ports[http][1]}}, t.step_func(function(result) {
+ assert_false(result);
+
+ t.done();
+ }));
+}, 'HTTP protocol, non-existent domain, port #2');
+
+async_test(function(t) {
+ check('https', '{{browser_host}}', {{ports[https][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTPS protocol, no subdomain');
+
+async_test(function(t) {
+ check('https', '{{domains[www]}}', {{ports[https][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTPS protocol, www subdomain #1');
+
+async_test(function(t) {
+ check('https', '{{domains[www1]}}', {{ports[https][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTPS protocol, www subdomain #2');
+
+async_test(function(t) {
+ check('https', '{{domains[www2]}}', {{ports[https][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTPS protocol, www subdomain #3');
+
+async_test(function(t) {
+ check('https', '{{domains[élève]}}', {{ports[https][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTPS protocol, punycode subdomain #1');
+
+async_test(function(t) {
+ check('https', '{{domains[天気の良い日]}}', {{ports[https][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'HTTPS protocol, punycode subdomain #2');
+
+async_test(function(t) {
+ check('https', 'nonexistent.{{domains[]}}', {{ports[http][0]}}, t.step_func(function(result) {
+ assert_false(result);
+
+ t.done();
+ }));
+}, 'HTTPS protocol, non-existent domain, port #1');
+
+async_test(function(t) {
+ check('https', 'nonexistent.{{domains[]}}', {{ports[http][1]}}, t.step_func(function(result) {
+ assert_false(result);
+
+ t.done();
+ }));
+}, 'HTTPS protocol, non-existent domain, port #2');
+
+async_test(function(t) {
+ check('h2', '{{browser_host}}', {{ports[h2][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'H2 protocol, no subdomain');
+
+async_test(function(t) {
+ check('h2', '{{domains[www]}}', {{ports[h2][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'H2 protocol, www subdomain #1');
+
+async_test(function(t) {
+ check('h2', '{{domains[www1]}}', {{ports[h2][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'H2 protocol, www subdomain #2');
+
+async_test(function(t) {
+ check('h2', '{{domains[www2]}}', {{ports[h2][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'H2 protocol, www subdomain #3');
+
+async_test(function(t) {
+ check('h2', '{{domains[élève]}}', {{ports[h2][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'H2 protocol, punycode subdomain #1');
+
+async_test(function(t) {
+ check('h2', '{{domains[天気の良い日]}}', {{ports[h2][0]}}, t.step_func(function(result) {
+ assert_true(result);
+
+ t.done();
+ }));
+}, 'H2 protocol, punycode subdomain #2');
+
+async_test(function(t) {
+ check('h2', 'nonexistent.{{domains[]}}', {{ports[http][0]}}, t.step_func(function(result) {
+ assert_false(result);
+
+ t.done();
+ }));
+}, 'H2 protocol, non-existent domain, port #1');
+
+</script>
+</body>
+</html>