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 /testing/web-platform/tests/app-uri | |
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 'testing/web-platform/tests/app-uri')
-rw-r--r-- | testing/web-platform/tests/app-uri/OWNERS | 1 | ||||
-rw-r--r-- | testing/web-platform/tests/app-uri/README.md | 13 | ||||
-rw-r--r-- | testing/web-platform/tests/app-uri/appURI_test.html | 393 | ||||
-rw-r--r-- | testing/web-platform/tests/app-uri/resources/ExamPLE/mmY/index.html | 1 | ||||
-rw-r--r-- | testing/web-platform/tests/app-uri/resources/ExamPLE/mmY/sth.txt | 1 | ||||
-rw-r--r-- | testing/web-platform/tests/app-uri/resources/ExamPLE/{mY}/z...z/index.html | 1 | ||||
-rw-r--r-- | testing/web-platform/tests/app-uri/resources/ImaGes/{{a}}/Test_1/$a/sth34!.png | bin | 0 -> 3059 bytes | |||
-rw-r--r-- | testing/web-platform/tests/app-uri/resources/ImaGes/~t/{!a}/corrupted_file.png | bin | 0 -> 2964 bytes | |||
-rw-r--r-- | testing/web-platform/tests/app-uri/resources/ImaGes/~t/{!a}/~sth.png | bin | 0 -> 3059 bytes | |||
-rw-r--r-- | testing/web-platform/tests/app-uri/resources/icons/w3c-128.png | bin | 0 -> 2447 bytes | |||
-rw-r--r-- | testing/web-platform/tests/app-uri/resources/icons/w3c-16.png | bin | 0 -> 984 bytes | |||
-rw-r--r-- | testing/web-platform/tests/app-uri/resources/icons/w3c-48.png | bin | 0 -> 1453 bytes |
12 files changed, 410 insertions, 0 deletions
diff --git a/testing/web-platform/tests/app-uri/OWNERS b/testing/web-platform/tests/app-uri/OWNERS new file mode 100644 index 000000000..261dea7df --- /dev/null +++ b/testing/web-platform/tests/app-uri/OWNERS @@ -0,0 +1 @@ +@happyoungj diff --git a/testing/web-platform/tests/app-uri/README.md b/testing/web-platform/tests/app-uri/README.md new file mode 100644 index 000000000..a33f0b0b4 --- /dev/null +++ b/testing/web-platform/tests/app-uri/README.md @@ -0,0 +1,13 @@ +app-URI test suite +========== + +Test suites for [app-URI scheme](http://app-uri.sysapps.org/) specification + +You can find here: + +[app-URI test suite html file](appURI_test.html) + + +If you want to use System application packages there is manifest file on Sysapps github repo: + +[Manifest file - can be used for building application](https://github.com/sysapps/testsuites/blob/gh-pages/app-URI/manifest.webapp)
\ No newline at end of file diff --git a/testing/web-platform/tests/app-uri/appURI_test.html b/testing/web-platform/tests/app-uri/appURI_test.html new file mode 100644 index 000000000..722c210b5 --- /dev/null +++ b/testing/web-platform/tests/app-uri/appURI_test.html @@ -0,0 +1,393 @@ +<!DOCTYPE html> +<html> + <head> + <title>app:URI compliance tests</title> + <script src='/resources/testharness.js'></script> + <script src='/resources/testharnessreport.js'></script> + <link rel="help" href="http://app-uri.sysapps.org/" data-tested-assertations="following::OL[1]/LI[2]" /> + <style> + div {padding:5px 5px 10px 5px;} + </style> + </head> + <body> + <div id="logs"></div> + <div id="log"></div> + + + <script> + /********************************************************************************************** + * This test suite checks your implementation for compliance with the app-URI specification * + **********************************************************************************************/ + + /* Check if protocol is "app" */ + if (window.location.protocol === "app:") { + + /* Logging current domain */ + var domain = window.location.protocol + "//" + window.location.host + "/"; + document.getElementById("logs").innerHTML = "Current domain: " + domain; + + /* Function that will change HOST value if it is equal to currect application host */ + function ChangeHostIfEqCurrent(URI){ + /* Check if URI host is NOT the same as current application host */ + if (URI.substring(6, 35) === window.location.host) { + if (URI.substring(6, 7) !== 4) + URI = URI.replace(URI.substring(6, 7), "4"); + else + URI = URI.replace(URI.substring(6, 7), "5"); + } + return URI; + } + + /******************************************************** + * 6.1 Synthesizing an app: URI + * + * link: http://app-uri.sysapps.org/#synthesizing + * + ********************************************************/ + + /** + * Syntax-Based Normalization + * + * rules for dereferencing an app: URI => 3. Let URI be the value of the [HTTP] Request URI. + */ + + var TC_name = "Test: Synthesizing an app:URI. Syntax-Based Normalization"; + + // variable needed to test scheme-based normalization + var tmp_domain = window.location.protocol + "//" + window.location.host; + + var CaseNormalizationXHRtests = [ /* scheme: [ TC name, URI] */ + [TC_name + " XHR full path: {} => %7b%7d", + domain + 'resources/ExamPLE/%7bmY%7d/z...z/index.html'], + [TC_name + " XHR full path: } => %7D", + domain + 'resources/ExamPLE/%7bmY%7D/z...z/index.html'], + [TC_name + " XHR full path: {} => %7B%7D", + domain + 'resources/ExamPLE/%7BmY%7D/z...z/index.html'], + [TC_name + " XHR full path: Capital letters in patch", + domain + 'resources/ExamPLE/mmY/index.html'], + [TC_name + " XHR relative path: {} => %7b%7d", + 'resources/ExamPLE/%7bmY%7d/z...z/index.html'], + [TC_name + " XHR relative path: } => %7D", + 'resources/ExamPLE/%7bmY%7D/z...z/index.html'], + [TC_name + " XHR relative path: P. => %50%2e", + 'resources/Exam%50LE/%7bmY%7d/z%2e..z/index.html'], + [TC_name + " XHR relative path: Capital letters in patch", + 'resources/ExamPLE/mmY/index.html'], + [TC_name + " XHR relative path: ~ => ~", + 'resources/ImaGes/~t/{!a}/~sth.png'], + [TC_name + " XHR relative path: ~{} => ~%7b%7d", + 'resources/ImaGes/~t/%7b!a%7d/~sth.png'], + + /* Percent-Encoding Normalization*/ + [TC_name + " Percent-Encoding Normalization - XHR full path: c. => %63%2e", + domain + 'resources/ExamPLE/%7bmY%7d/z%2e..z/index.html'], + [TC_name + " Percent-Encoding Normalization - XHR full path: P. => %50%2e", + domain + 'resources/Exam%50LE/%7bmY%7d/z%2e..z/index.html'], + [TC_name + " Percent-Encoding Normalization - XHR relative path: {} => %7B%7D", + 'resources/ExamPLE/%7BmY%7D/z...z/index.html'], + [TC_name + " Percent-Encoding Normalization - XHR relative path: c. => %63%2e", + 'resources/ExamPLE/%7bmY%7d/z%2e..z/index.html'], + [TC_name + " XHR relative path: ~{} => ~%7b%7d", + 'resources/ImaGes/~t/%7b!a%7d/~sth.png'], + + /* Path Segment Normalization */ + [TC_name + " Path Segment Normalization: using '../..' in path ", + 'resources/ExamPLE/mmY/../../ImaGes/~t/%7b!a%7d/~sth.png'], + + /* Scheme-Based Normalization */ + [TC_name + " Scheme-Based Normalization: domain:/", + tmp_domain + ':/resources/ImaGes/~t/%7b!a%7d/~sth.png'] + ]; + + CaseNormalizationXHRtests.forEach(function (data, i) { + var name = data[0]; + var URI = data[1]; + var xhrTest = async_test(name + " [case " + i + "]"); + var xhr; + xhrTest.step(function () { + xhr = new XMLHttpRequest(); + xhr.open("GET", URI, true); + xhr.onreadystatechange = xhrTest.step_func(function (ev) { + if (xhr.readyState === 4 && xhr.status === 200) { + assert_true(true); + xhrTest.done(); + } + if (xhr.readyState !== 4 && xhr.status !== 200 && xhr.status !== 0) { + assert_true(false, + "[ Error: readyState=" + xhr.readyState + " satus=" + xhr.status + "] "); + } + }); + xhr.send(); + }); + delete name, URI, xhr, xhrTest; + }); + delete CaseNormalizationXHRtests; + + + /** + * ContentType response + * + * rules for dereferencing an app: URI => + 8. Let potential-file be the result of attempting locate the file at path + */ + + TC_name = "Test: [HTTP] 200 response status (OK),value of content-type as the [HTTP] "; + TC_name += "Content-Type header, and the contents of potential-file as the response body"; + + var ContentTypeResponsetests = [ /* scheme:[ TC name, URI, content-type] */ + [TC_name + ' [text/html]', 'resources/ExamPLE/mmY/index.html', 'text/html'], + [TC_name + " [image/png]", 'resources/ImaGes/~t/%7b!a%7d/~sth.png', "image/png"], + [TC_name + " [text/plain]", 'resources/ExamPLE/mmY/sth.txt', "text/plain"] + ]; + + ContentTypeResponsetests.forEach(function (data, i) { + var name = data[0]; + var URI = data[1]; + var content_type = data[2]; + var xhrTest = async_test(name + " [case " + i + "]"); + var xhr; + xhrTest.step(function () { + xhr = new XMLHttpRequest(); + xhr.open("GET", URI, true); + xhr.onreadystatechange = xhrTest.step_func(function (ev) { + if (xhr.readyState === 4 && xhr.status === 200) { + assert_true(xhr.getResponseHeader("Content-Type") === content_type, + "[Content-Type does not mach with expected, it is: " + + xhr.getResponseHeader("Content-Type") + "]"); + + xhrTest.done(); + } + if (xhr.readyState !== 4 && xhr.status !== 200 && xhr.status !== 0) { + assert_true(false, + "[ Error: readyState=" + xhr.readyState + " satus=" + xhr.status + "] "); + } + }); + xhr.send(); + }); + delete name, URI, xhr, xhrTest, content_type; + }); + delete ContentTypeResponsetests; + + + /** + * Case Normalization in Path + * + * rules for dereferencing an app: URI => + 4. Resolve URI into an absolute URL using the document's origin as the base. + * rules for dereferencing an app: URI => 7. Let path be the path component of URI. + * + * Character Normalization in domain name + */ + + + + TC_name = "Test: Synthesizing an app:URI. Syntax-Based Normalization: Case Normalization"; + var PathCaseNormalizationtests = [ /* scheme: [ TC name, URI] */ + [TC_name, "resources/ImaGes/{{a}}/Test_1/$a/sth34!.png", + domain + "resources/ImaGes/%7B%7Ba%7D%7D/Test_1/$a/sth34!.png", true], + [TC_name, "resources/ImaGes/{{a}}/Test_1/$a/sth34!.png", + domain + "resources/ImaGes/%7b%7Ba%7D%7D/Test_1/$a/sth34!.png", false], + + /* Character Normalization in Domain */ + [TC_name, window.location.protocol + "//" + window.location.host.toUpperCase() + + "/resources/ImaGes/{{a}}/Test_1/$a/sth34!.png", + domain + "resources/ImaGes/%7B%7Ba%7D%7D/Test_1/$a/sth34!.png", true] + ]; + + PathCaseNormalizationtests.forEach(function (data, i) { + var name = data[0]; + var elem_path = data[1]; + var path_expected = data[2]; + var expected = data[3]; + test(function () { + var img = document.createElement("img"); + img.src = elem_path; + if (expected) + assert_true(img.src === path_expected, + "[Error, path=" + img.src + " Expected=" + domain + path_expected + "]"); + else + assert_false(img.src === path_expected, + "[Error, path=" + img.src + " Expected=" + domain + path_expected + "]"); + delete img; + + }, name + " [case " + i + "]"); + delete elem_path, path_expected, expected, name; + }); + delete PathCaseNormalizationtests; + + + + + /******************************************************************************************** + * 6.4 Dereferencing and retrieval of files from a container + * + * link: http://app-uri.sysapps.org/#dereferencing-and-retrieval-of-files-from-a-container + * + ********************************************************************************************/ + + + + /** + * 501 Method Not Implemented error - response body MUST be empty + * + * rules for dereferencing an app: URI => + 1. If the request is not a [HTTP] GET request, + return a [HTTP] 501 Not Implemented response and terminate this algorithm. + */ + + + function Get_501_reponse(name, URI, expected_response) { + var xhrTest = async_test(name); + xhrTest.step(function () { + var xhr = new XMLHttpRequest(); + /* on purpose wrong method "gett" instead of "get" was used */ + xhr.open("gett", URI, true); + xhr.onreadystatechange = xhrTest.step_func(function (ev) { + if (xhr.readyState !== 4 && xhr.status === 501) { + assert_true(xhr.response === expected_response, + "[" + xhr.status + " error, response:[" + xhr.response + "] " + "]"); + + xhrTest.done(); + } + if (xhr.readyState === 4 && xhr.status === 200) { + assert_true(false, + "[Should get 501 but got 200 OK, " + +"file found while it should not find it, " + +" non existing 'gett' method used"); + } + }); + xhr.send(); + }); + delete xhrTest; + } + Get_501_reponse(TC_name + " 501 Method Not Implemented error expected", + 'resources/ExamPLE/mmY/index.html', ""); + + + /** + * 400 Bad Request error - response body MUST be empty + * + * rules for dereferencing an app: URI => + 5. If the URI does not conform to the appuri ABNF, return a + [HTTP] 400 Bad Request response and terminate this algorithm. + */ + + function Get_400_reponse(name, URI, expected_response) { + var xhrTest = async_test(name); + xhrTest.step(function () { + var xhr = new XMLHttpRequest(); + //alert(URI); + xhr.open("GET", URI, true); + xhr.onreadystatechange = xhrTest.step_func(function (ev) { + if (xhr.readyState !== 4 && xhr.status === 400) { + assert_true(xhr.response === expected_response, + "[" + xhr.status + " error, response:[" + xhr.response + "] " + "]"); + + xhrTest.done(); + } + if (xhr.readyState === 4 && xhr.status === 200) { + assert_true(false, + "[Should get 400 but got 200 OK, " + +"file found while it should not find it, " + +"since no specific file requested]"); + } + }); + xhr.send(); + }); + delete xhrTest; + } + Get_400_reponse(TC_name + " 400 Method Not Implemented error expected, no path", + tmp_domain, ""); + Get_400_reponse(TC_name + " 400 Method Not Implemented error expected, different domain with no path", + ChangeHostIfEqCurrent("app://f15a6d20-cefa-13e5-1972-800e20d19a76"), ""); + + + /** + * 403 Forbidden error - response body MUST be empty + * + * rules for dereferencing an app: URI => + 6. If the URI uses the scheme 'app', but the authority does not match + the one assigned to this document, return a [HTTP] 403 Forbidden + response and terminate this algorithm + (i.e., prevent inter-application content access). + */ + + function Get_403_reponse(name, URI, expected_response) { + var xhrTest = async_test(name); + xhrTest.step(function () { + /* Change if URI host is the same as current application host */ + URI = ChangeHostIfEqCurrent(URI); + var xhr = new XMLHttpRequest(); + xhr.open("GET", URI, true); + xhr.onreadystatechange = xhrTest.step_func(function (ev) { + if (xhr.readyState === 4 && xhr.status === 200) { + assert_true(false, "[403 error expected, got: 200 OK instead]"); + } + if (xhr.readyState !== 4 && xhr.status === 403) { + assert_true(xhr.response === expected_response, "[" + + xhr.status + " error, response:[" + xhr.response + "] " + + "]"); + xhrTest.done(); + } + }); + xhr.send(); + }); + } + Get_403_reponse(TC_name + " Access to restricted URI - 403 Forbidden error expected", + window.location.protocol + "//f15a6d20-cefa-13e5-1972-800e20d19a76/" + 'resources/ExamPLE/mmY/index.html', ""); + + + /** + * 404 Not Found error - response body MUST be empty + * + * rules for dereferencing an app: URI => + 9. If potential-file is not found at the given path inside the container, + return a [HTTP] 404 Not Found response. + */ + + TC_name = "Test: 6.4 Dereferencing and retrieval of files from a container"; + + var CompareResponseBodytests = [ /* scheme: [TC name, URI, expected_response]*/ + [TC_name + " 404 Not Found error expected", + 'resources/ImaGes/~t/%7b!a%7d/~sth11.png', ""] + ]; + + CompareResponseBodytests.forEach(function (data, i) { + var name = data[0]; + var URI = data[1]; + var expected_response = data[2]; + var xhrTest = async_test(name); + var xhr; + xhrTest.step(function () { + xhr = new XMLHttpRequest(); + xhr.open("GET", URI, true); + xhr.onreadystatechange = xhrTest.step_func(function (ev) { + if (xhr.readyState !== 4 && xhr.status === 404) { + assert_true(xhr.response === expected_response, + "[" + xhr.status + " error, response:[" + xhr.response + "] " + "]"); + xhrTest.done(); + } + if (xhr.readyState === 4 && xhr.status === 200) { + assert_true(false, "[404 error expected, got: 200 OK instead]"); + } + }); + xhr.send(); + }); + delete xhrTest, xhr; + }); + delete CompareResponseBodytests; + + + + } else { + document.getElementById("logs").innerHTML = + "This is a test suite for app protocol only. Test aborted due to current protocol " + + window.location.protocol; + } + + </script> + </body> +</html> + + + diff --git a/testing/web-platform/tests/app-uri/resources/ExamPLE/mmY/index.html b/testing/web-platform/tests/app-uri/resources/ExamPLE/mmY/index.html new file mode 100644 index 000000000..7ef22e9a4 --- /dev/null +++ b/testing/web-platform/tests/app-uri/resources/ExamPLE/mmY/index.html @@ -0,0 +1 @@ +PASS diff --git a/testing/web-platform/tests/app-uri/resources/ExamPLE/mmY/sth.txt b/testing/web-platform/tests/app-uri/resources/ExamPLE/mmY/sth.txt new file mode 100644 index 000000000..5e3cbc931 --- /dev/null +++ b/testing/web-platform/tests/app-uri/resources/ExamPLE/mmY/sth.txt @@ -0,0 +1 @@ +This is simple text file diff --git a/testing/web-platform/tests/app-uri/resources/ExamPLE/{mY}/z...z/index.html b/testing/web-platform/tests/app-uri/resources/ExamPLE/{mY}/z...z/index.html new file mode 100644 index 000000000..7ef22e9a4 --- /dev/null +++ b/testing/web-platform/tests/app-uri/resources/ExamPLE/{mY}/z...z/index.html @@ -0,0 +1 @@ +PASS diff --git a/testing/web-platform/tests/app-uri/resources/ImaGes/{{a}}/Test_1/$a/sth34!.png b/testing/web-platform/tests/app-uri/resources/ImaGes/{{a}}/Test_1/$a/sth34!.png Binary files differnew file mode 100644 index 000000000..4a775ded2 --- /dev/null +++ b/testing/web-platform/tests/app-uri/resources/ImaGes/{{a}}/Test_1/$a/sth34!.png diff --git a/testing/web-platform/tests/app-uri/resources/ImaGes/~t/{!a}/corrupted_file.png b/testing/web-platform/tests/app-uri/resources/ImaGes/~t/{!a}/corrupted_file.png Binary files differnew file mode 100644 index 000000000..d05eb6ea2 --- /dev/null +++ b/testing/web-platform/tests/app-uri/resources/ImaGes/~t/{!a}/corrupted_file.png diff --git a/testing/web-platform/tests/app-uri/resources/ImaGes/~t/{!a}/~sth.png b/testing/web-platform/tests/app-uri/resources/ImaGes/~t/{!a}/~sth.png Binary files differnew file mode 100644 index 000000000..4a775ded2 --- /dev/null +++ b/testing/web-platform/tests/app-uri/resources/ImaGes/~t/{!a}/~sth.png diff --git a/testing/web-platform/tests/app-uri/resources/icons/w3c-128.png b/testing/web-platform/tests/app-uri/resources/icons/w3c-128.png Binary files differnew file mode 100644 index 000000000..c01015625 --- /dev/null +++ b/testing/web-platform/tests/app-uri/resources/icons/w3c-128.png diff --git a/testing/web-platform/tests/app-uri/resources/icons/w3c-16.png b/testing/web-platform/tests/app-uri/resources/icons/w3c-16.png Binary files differnew file mode 100644 index 000000000..105194bba --- /dev/null +++ b/testing/web-platform/tests/app-uri/resources/icons/w3c-16.png diff --git a/testing/web-platform/tests/app-uri/resources/icons/w3c-48.png b/testing/web-platform/tests/app-uri/resources/icons/w3c-48.png Binary files differnew file mode 100644 index 000000000..a19c55d67 --- /dev/null +++ b/testing/web-platform/tests/app-uri/resources/icons/w3c-48.png |