diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/meta/service-workers/cache-storage | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/meta/service-workers/cache-storage')
18 files changed, 931 insertions, 0 deletions
diff --git a/testing/web-platform/meta/service-workers/cache-storage/__dir__.ini b/testing/web-platform/meta/service-workers/cache-storage/__dir__.ini new file mode 100644 index 0000000000..82abf170d7 --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/__dir__.ini @@ -0,0 +1 @@ +lsan-allowed: [maybe_pod_malloc] diff --git a/testing/web-platform/meta/service-workers/cache-storage/cache-abort.https.any.js.ini b/testing/web-platform/meta/service-workers/cache-storage/cache-abort.https.any.js.ini new file mode 100644 index 0000000000..c101ecddfe --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/cache-abort.https.any.js.ini @@ -0,0 +1,74 @@ +[cache-abort.https.any.sharedworker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [put() followed by abort after headers received should reject with AbortError] + expected: FAIL + + [add() synchronously followed by abort should reject with AbortError] + expected: FAIL + + [add() followed by abort after headers received should reject with AbortError] + expected: FAIL + + [addAll() synchronously followed by abort should reject with AbortError] + expected: FAIL + + [addAll() followed by abort after headers received should reject with AbortError] + expected: FAIL + + +[cache-abort.https.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [put() followed by abort after headers received should reject with AbortError] + expected: FAIL + + [add() synchronously followed by abort should reject with AbortError] + expected: FAIL + + [add() followed by abort after headers received should reject with AbortError] + expected: FAIL + + [addAll() synchronously followed by abort should reject with AbortError] + expected: FAIL + + [addAll() followed by abort after headers received should reject with AbortError] + expected: FAIL + + +[cache-abort.https.any.serviceworker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [put() followed by abort after headers received should reject with AbortError] + expected: FAIL + + [add() synchronously followed by abort should reject with AbortError] + expected: FAIL + + [add() followed by abort after headers received should reject with AbortError] + expected: FAIL + + [addAll() synchronously followed by abort should reject with AbortError] + expected: FAIL + + [addAll() followed by abort after headers received should reject with AbortError] + expected: FAIL + + +[cache-abort.https.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [put() followed by abort after headers received should reject with AbortError] + expected: FAIL + + [add() synchronously followed by abort should reject with AbortError] + expected: FAIL + + [add() followed by abort after headers received should reject with AbortError] + expected: FAIL + + [addAll() synchronously followed by abort should reject with AbortError] + expected: FAIL + + [addAll() followed by abort after headers received should reject with AbortError] + expected: FAIL diff --git a/testing/web-platform/meta/service-workers/cache-storage/cache-add.https.any.js.ini b/testing/web-platform/meta/service-workers/cache-storage/cache-add.https.any.js.ini new file mode 100644 index 0000000000..589af1ad88 --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/cache-add.https.any.js.ini @@ -0,0 +1,51 @@ +[cache-add.https.any.html] + [Cache.addAll called with the same Request object specified twice] + expected: FAIL + + [Cache.addAll should succeed when entries differ by vary header] + expected: + if (os == "linux") and not swgl and not fission and not debug: [PASS, FAIL] + if (os == "win") and (processor == "x86_64") and not swgl: [PASS, FAIL] + if (os == "linux") and swgl and not fission: [PASS, FAIL] + if (os == "mac") and not debug: [PASS, FAIL] + if (os == "mac") and debug: [PASS, FAIL] + [FAIL, PASS] + + +[cache-add.https.any.sharedworker.html] + [Cache.addAll called with the same Request object specified twice] + expected: FAIL + + [Cache.addAll should succeed when entries differ by vary header] + expected: + if (os == "linux") and fission and (processor == "x86_64") and swgl: [PASS, FAIL] + if (os == "linux") and not fission and debug and not swgl: [PASS, FAIL] + if (os == "linux") and fission and (processor == "x86"): [PASS, FAIL] + if (os == "win") and debug and (processor == "x86"): [PASS, FAIL] + if (os == "android") and not swgl and debug: [PASS, FAIL] + if (os == "android") and not swgl and not debug: [PASS, FAIL] + [FAIL, PASS] + + +[cache-add.https.any.serviceworker.html] + [Cache.addAll called with the same Request object specified twice] + expected: FAIL + + [Cache.addAll should succeed when entries differ by vary header] + expected: + if (os == "linux") and not debug and (processor == "x86_64") and not fission: [PASS, FAIL] + if (os == "linux") and debug and fission and not swgl: [PASS, FAIL] + if (os == "android") and swgl: [PASS, FAIL] + if (os == "win") and swgl: [PASS, FAIL] + if (os == "mac") and not debug: [PASS, FAIL] + [FAIL, PASS] + + +[cache-add.https.any.worker.html] + [Cache.addAll called with the same Request object specified twice] + expected: FAIL + + [Cache.addAll should succeed when entries differ by vary header] + expected: + if (os == "win") and not debug and (processor == "x86"): [PASS, FAIL] + [FAIL, PASS] diff --git a/testing/web-platform/meta/service-workers/cache-storage/cache-delete.https.any.js.ini b/testing/web-platform/meta/service-workers/cache-storage/cache-delete.https.any.js.ini new file mode 100644 index 0000000000..3c4863611f --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/cache-delete.https.any.js.ini @@ -0,0 +1,15 @@ +[cache-delete.https.any.serviceworker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[cache-delete.https.any.sharedworker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[cache-delete.https.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[cache-delete.https.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/service-workers/cache-storage/cache-keys-attributes-for-service-worker.https.html.ini b/testing/web-platform/meta/service-workers/cache-storage/cache-keys-attributes-for-service-worker.https.html.ini new file mode 100644 index 0000000000..b6e1756abf --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/cache-keys-attributes-for-service-worker.https.html.ini @@ -0,0 +1,8 @@ +[cache-keys-attributes-for-service-worker.https.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Request.IsReloadNavigation should persist.] + expected: FAIL + + [Request.IsHistoryNavigation should persist.] + expected: FAIL diff --git a/testing/web-platform/meta/service-workers/cache-storage/cache-keys.https.any.js.ini b/testing/web-platform/meta/service-workers/cache-storage/cache-keys.https.any.js.ini new file mode 100644 index 0000000000..ba9ed2bbc3 --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/cache-keys.https.any.js.ini @@ -0,0 +1,141 @@ +[cache-keys.https.any.worker.html] + expected: + if (processor == "x86") and (os == "win") and not debug: [OK, TIMEOUT] + [Cache.keys with ignoreSearch option (request with no search parameters)] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys without parameters and VARY entries] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys with string fragment "http" as query] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys with new Request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, TIMEOUT] + + [Cache.keys with explicitly undefined request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys supports ignoreVary] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys supports ignoreMethod] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys with a HEAD Request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys with ignoreSearch option (request with search parameters)] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys without parameters] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys with URL containing fragment] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys with explicitly undefined request and empty options] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + +[cache-keys.https.any.sharedworker.html] + expected: + if (processor == "x86") and (os == "win") and not debug: [OK, TIMEOUT] + [Cache.keys with ignoreSearch option (request with no search parameters)] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys without parameters and VARY entries] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys with string fragment "http" as query] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys with new Request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, TIMEOUT] + + [Cache.keys with explicitly undefined request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys supports ignoreVary] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys supports ignoreMethod] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys with a HEAD Request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys with ignoreSearch option (request with search parameters)] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys without parameters] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys with URL containing fragment] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys with explicitly undefined request and empty options] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + +[cache-keys.https.any.serviceworker.html] + expected: + if (processor == "x86") and (os == "win") and not debug: [OK, TIMEOUT] + [Cache.keys without parameters and VARY entries] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys with string fragment "http" as query] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys with explicitly undefined request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys supports ignoreVary] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, TIMEOUT] + + [Cache.keys with a HEAD Request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys without parameters] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys with URL containing fragment] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.keys with explicitly undefined request and empty options] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + +[cache-keys.https.any.html] diff --git a/testing/web-platform/meta/service-workers/cache-storage/cache-match.https.any.js.ini b/testing/web-platform/meta/service-workers/cache-storage/cache-match.https.any.js.ini new file mode 100644 index 0000000000..ecc9d0cdb1 --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/cache-match.https.any.js.ini @@ -0,0 +1,358 @@ +[cache-match.https.any.html] + expected: + if (processor == "x86") and (os == "win") and not debug: [OK, TIMEOUT] + [Cache.match ignores vary headers on opaque response.] + expected: + if (processor == "x86") and (os == "win") and not debug: [FAIL, NOTRUN] + FAIL + + [Cache.match with string fragment "http" as query] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with ignoreSearch option (request with search parameter)] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [cors-exposed header should be stored correctly.] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match supports ignoreMethod] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [MIME type should reflect Content-Type headers of response.] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with POST Request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match invoked multiple times for the same Request/Response] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with ignoreSearch option (request with no search parameters)] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache produces large Responses that can be cloned and read correctly.] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with a non-2xx Response] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with Request and Response objects with different URLs] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match does not support cacheName option] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match blob should be sliceable] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with responses containing "Vary" header] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with new Request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [MIME type should be set from content-header correctly.] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with multiple cache hits] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, TIMEOUT] + + [Cache.match supports ignoreVary] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with URL containing fragment] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with HEAD] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with a network error Response] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + +[cache-match.https.any.worker.html] + expected: + if (processor == "x86") and (os == "win") and not debug: [OK, TIMEOUT] + [Cache.match ignores vary headers on opaque response.] + expected: + if (processor == "x86") and (os == "win") and not debug: [FAIL, NOTRUN] + FAIL + + [Cache.match with string fragment "http" as query] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with ignoreSearch option (request with search parameter)] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [cors-exposed header should be stored correctly.] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match supports ignoreMethod] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [MIME type should reflect Content-Type headers of response.] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with POST Request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match invoked multiple times for the same Request/Response] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with ignoreSearch option (request with no search parameters)] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, TIMEOUT] + + [Cache produces large Responses that can be cloned and read correctly.] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with a non-2xx Response] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with Request and Response objects with different URLs] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match does not support cacheName option] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match blob should be sliceable] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with responses containing "Vary" header] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [MIME type should be set from content-header correctly.] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match supports ignoreVary] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with URL containing fragment] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with a network error Response] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + +[cache-match.https.any.sharedworker.html] + expected: + if (processor == "x86") and (os == "win") and not debug: [OK, TIMEOUT] + [Cache.match ignores vary headers on opaque response.] + expected: + if (processor == "x86") and (os == "win") and not debug: [FAIL, NOTRUN] + FAIL + + [Cache.match with string fragment "http" as query] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with ignoreSearch option (request with search parameter)] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [cors-exposed header should be stored correctly.] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match supports ignoreMethod] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [MIME type should reflect Content-Type headers of response.] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with POST Request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match invoked multiple times for the same Request/Response] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with ignoreSearch option (request with no search parameters)] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache produces large Responses that can be cloned and read correctly.] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with a non-2xx Response] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with Request and Response objects with different URLs] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match does not support cacheName option] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match blob should be sliceable] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with responses containing "Vary" header] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with new Request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, TIMEOUT] + + [MIME type should be set from content-header correctly.] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match supports ignoreVary] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with URL containing fragment] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with HEAD] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with a network error Response] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + +[cache-match.https.any.serviceworker.html] + expected: + if (processor == "x86") and (os == "win") and not debug: [OK, TIMEOUT] + [Cache.match ignores vary headers on opaque response.] + expected: + if (processor == "x86") and (os == "win") and not debug: [FAIL, NOTRUN] + FAIL + + [Cache.match with string fragment "http" as query] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with ignoreSearch option (request with search parameter)] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [cors-exposed header should be stored correctly.] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match supports ignoreMethod] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [MIME type should reflect Content-Type headers of response.] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with POST Request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match invoked multiple times for the same Request/Response] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with ignoreSearch option (request with no search parameters)] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache produces large Responses that can be cloned and read correctly.] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with a non-2xx Response] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with Request and Response objects with different URLs] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match does not support cacheName option] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match blob should be sliceable] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with responses containing "Vary" header] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with new Request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [MIME type should be set from content-header correctly.] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with multiple cache hits] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with Request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, TIMEOUT] + + [Cache.match supports ignoreVary] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with URL containing fragment] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with HEAD] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.match with a network error Response] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] diff --git a/testing/web-platform/meta/service-workers/cache-storage/cache-matchAll.https.any.js.ini b/testing/web-platform/meta/service-workers/cache-storage/cache-matchAll.https.any.js.ini new file mode 100644 index 0000000000..12f391b893 --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/cache-matchAll.https.any.js.ini @@ -0,0 +1,146 @@ +[cache-matchAll.https.any.worker.html] + expected: + if (processor == "x86") and (os == "win") and not debug: [OK, TIMEOUT] + [Cache.matchAll with ignoreSearch option (request with no search parameters)] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, TIMEOUT] + + [Cache.matchAll with ignoreSearch option (request with search parameters)] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll supports ignoreMethod] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll supports ignoreVary] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with URL containing fragment] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with string fragment "http" as query] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll without parameters] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with explicitly undefined request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with explicitly undefined request and empty options] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with responses containing "Vary" header] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with multiple vary pairs] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + +[cache-matchAll.https.any.html] + expected: + if (processor == "x86") and (os == "win") and not debug: [OK, TIMEOUT] + [Cache.matchAll with Request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, TIMEOUT] + + [Cache.matchAll with new Request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with HEAD] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with ignoreSearch option (request with no search parameters)] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with ignoreSearch option (request with search parameters)] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll supports ignoreMethod] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll supports ignoreVary] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with URL containing fragment] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with string fragment "http" as query] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll without parameters] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with explicitly undefined request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with explicitly undefined request and empty options] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with responses containing "Vary" header] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with multiple vary pairs] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + +[cache-matchAll.https.any.serviceworker.html] + expected: + if (processor == "x86") and (os == "win") and not debug: [OK, TIMEOUT] + [Cache.matchAll with responses containing "Vary" header] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, TIMEOUT] + + [Cache.matchAll with multiple vary pairs] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + +[cache-matchAll.https.any.sharedworker.html] + expected: + if (processor == "x86") and (os == "win") and not debug: [OK, TIMEOUT] + [Cache.matchAll with string fragment "http" as query] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, TIMEOUT] + + [Cache.matchAll without parameters] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with explicitly undefined request] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with explicitly undefined request and empty options] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with responses containing "Vary" header] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] + + [Cache.matchAll with multiple vary pairs] + expected: + if (processor == "x86") and (os == "win") and not debug: [PASS, NOTRUN] diff --git a/testing/web-platform/meta/service-workers/cache-storage/cache-put.https.any.js.ini b/testing/web-platform/meta/service-workers/cache-storage/cache-put.https.any.js.ini new file mode 100644 index 0000000000..eb60675704 --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/cache-put.https.any.js.ini @@ -0,0 +1,26 @@ +[cache-put.https.any.serviceworker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Cache.put with a VARY:* opaque response should not reject] + expected: FAIL + + +[cache-put.https.any.sharedworker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Cache.put with a VARY:* opaque response should not reject] + expected: FAIL + + +[cache-put.https.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Cache.put with a VARY:* opaque response should not reject] + expected: FAIL + + +[cache-put.https.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Cache.put with a VARY:* opaque response should not reject] + expected: FAIL diff --git a/testing/web-platform/meta/service-workers/cache-storage/cache-storage-buckets.https.any.js.ini b/testing/web-platform/meta/service-workers/cache-storage/cache-storage-buckets.https.any.js.ini new file mode 100644 index 0000000000..2a93a960c0 --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/cache-storage-buckets.https.any.js.ini @@ -0,0 +1,38 @@ +[cache-storage-buckets.https.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [caches from different buckets have different contents] + expected: FAIL + + [cache.open promise is rejected when bucket is gone] + expected: FAIL + + +[cache-storage-buckets.https.any.sharedworker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [caches from different buckets have different contents] + expected: FAIL + + [cache.open promise is rejected when bucket is gone] + expected: FAIL + + +[cache-storage-buckets.https.any.serviceworker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [caches from different buckets have different contents] + expected: FAIL + + [cache.open promise is rejected when bucket is gone] + expected: FAIL + + +[cache-storage-buckets.https.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [caches from different buckets have different contents] + expected: FAIL + + [cache.open promise is rejected when bucket is gone] + expected: FAIL diff --git a/testing/web-platform/meta/service-workers/cache-storage/cache-storage-keys.https.any.js.ini b/testing/web-platform/meta/service-workers/cache-storage/cache-storage-keys.https.any.js.ini new file mode 100644 index 0000000000..ea55a4d27d --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/cache-storage-keys.https.any.js.ini @@ -0,0 +1,15 @@ +[cache-storage-keys.https.any.sharedworker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[cache-storage-keys.https.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[cache-storage-keys.https.any.serviceworker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[cache-storage-keys.https.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/service-workers/cache-storage/cache-storage-match.https.any.js.ini b/testing/web-platform/meta/service-workers/cache-storage/cache-storage-match.https.any.js.ini new file mode 100644 index 0000000000..02c116f271 --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/cache-storage-match.https.any.js.ini @@ -0,0 +1,15 @@ +[cache-storage-match.https.any.serviceworker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[cache-storage-match.https.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[cache-storage-match.https.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[cache-storage-match.https.any.sharedworker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/service-workers/cache-storage/cache-storage.https.any.js.ini b/testing/web-platform/meta/service-workers/cache-storage/cache-storage.https.any.js.ini new file mode 100644 index 0000000000..ab93bb30e8 --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/cache-storage.https.any.js.ini @@ -0,0 +1,15 @@ +[cache-storage.https.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[cache-storage.https.any.sharedworker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[cache-storage.https.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[cache-storage.https.any.serviceworker.html] + expected: + if (os == "android") and fission: [TIMEOUT, OK] diff --git a/testing/web-platform/meta/service-workers/cache-storage/common.https.window.js.ini b/testing/web-platform/meta/service-workers/cache-storage/common.https.window.js.ini new file mode 100644 index 0000000000..5423040e27 --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/common.https.window.js.ini @@ -0,0 +1,3 @@ +[common.https.window.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/service-workers/cache-storage/credentials.https.html.ini b/testing/web-platform/meta/service-workers/cache-storage/credentials.https.html.ini new file mode 100644 index 0000000000..8a342ea911 --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/credentials.https.html.ini @@ -0,0 +1,3 @@ +[credentials.https.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/service-workers/cache-storage/cross-partition.https.tentative.html.ini b/testing/web-platform/meta/service-workers/cache-storage/cross-partition.https.tentative.html.ini new file mode 100644 index 0000000000..3f2b9fe167 --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/cross-partition.https.tentative.html.ini @@ -0,0 +1,16 @@ +[cross-partition.https.tentative.html] + expected: + if (os == "android") and not fission: [OK, TIMEOUT] + if (os == "android") and fission: [OK, TIMEOUT] + [CacheStorage caches shouldn't be shared with a cross-partition iframe] + expected: FAIL + + [CacheStorage caches shouldn't be shared with a cross-partition dedicated worker] + expected: FAIL + + [CacheStorage caches shouldn't be shared with a cross-partition shared worker] + expected: FAIL + + [CacheStorage caches shouldn't be shared with a cross-partition service worker] + expected: + if os == "android": [FAIL, TIMEOUT] diff --git a/testing/web-platform/meta/service-workers/cache-storage/sandboxed-iframes.https.html.ini b/testing/web-platform/meta/service-workers/cache-storage/sandboxed-iframes.https.html.ini new file mode 100644 index 0000000000..1b23e1a6c6 --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/sandboxed-iframes.https.html.ini @@ -0,0 +1,3 @@ +[sandboxed-iframes.https.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/service-workers/cache-storage/serviceworker/__dir__.ini b/testing/web-platform/meta/service-workers/cache-storage/serviceworker/__dir__.ini new file mode 100644 index 0000000000..4a3391f164 --- /dev/null +++ b/testing/web-platform/meta/service-workers/cache-storage/serviceworker/__dir__.ini @@ -0,0 +1,3 @@ +prefs: [dom.serviceWorkers.enabled:true, dom.serviceWorkers.exemptFromPerDomainMax:true] +lsan-disabled: true +leak-threshold: [tab:51200] |