summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fetch/http-cache/credentials.tentative.any.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/fetch/http-cache/credentials.tentative.any.js
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/fetch/http-cache/credentials.tentative.any.js')
-rw-r--r--testing/web-platform/tests/fetch/http-cache/credentials.tentative.any.js62
1 files changed, 62 insertions, 0 deletions
diff --git a/testing/web-platform/tests/fetch/http-cache/credentials.tentative.any.js b/testing/web-platform/tests/fetch/http-cache/credentials.tentative.any.js
new file mode 100644
index 0000000000..31770925cd
--- /dev/null
+++ b/testing/web-platform/tests/fetch/http-cache/credentials.tentative.any.js
@@ -0,0 +1,62 @@
+// META: global=window,worker
+// META: title=HTTP Cache - Content
+// META: timeout=long
+// META: script=/common/utils.js
+// META: script=http-cache.js
+
+// This is a tentative test.
+// Firefox behavior is used as expectations.
+//
+// whatwg/fetch issue:
+// https://github.com/whatwg/fetch/issues/1253
+//
+// Chrome design doc:
+// https://docs.google.com/document/d/1lvbiy4n-GM5I56Ncw304sgvY5Td32R6KHitjRXvkZ6U/edit#
+
+const request_cacheable = {
+ request_headers: [],
+ response_headers: [
+ ['Cache-Control', 'max-age=3600'],
+ ],
+ // TODO(arthursonzogni): The behavior is tested only for same-origin requests.
+ // It must behave similarly for cross-site and cross-origin requests. The
+ // problems is the http-cache.js infrastructure returns the
+ // "Server-Request-Count" as HTTP response headers, which aren't readable for
+ // CORS requests.
+ base_url: location.href.replace(/\/[^\/]*$/, '/'),
+};
+
+const request_credentialled = { ...request_cacheable, credentials: 'include', };
+const request_anonymous = { ...request_cacheable, credentials: 'omit', };
+
+const responseIndex = count => {
+ return {
+ expected_response_headers: [
+ ['Server-Request-Count', count.toString()],
+ ],
+ }
+};
+
+var tests = [
+ {
+ name: 'same-origin: 2xAnonymous, 2xCredentialled, 1xAnonymous',
+ requests: [
+ { ...request_anonymous , ...responseIndex(1)} ,
+ { ...request_anonymous , ...responseIndex(1)} ,
+ { ...request_credentialled , ...responseIndex(2)} ,
+ { ...request_credentialled , ...responseIndex(2)} ,
+ { ...request_anonymous , ...responseIndex(1)} ,
+ ]
+ },
+ {
+ name: 'same-origin: 2xCredentialled, 2xAnonymous, 1xCredentialled',
+ requests: [
+ { ...request_credentialled , ...responseIndex(1)} ,
+ { ...request_credentialled , ...responseIndex(1)} ,
+ { ...request_anonymous , ...responseIndex(2)} ,
+ { ...request_anonymous , ...responseIndex(2)} ,
+ { ...request_credentialled , ...responseIndex(1)} ,
+ ]
+ },
+];
+run_tests(tests);