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/tests/xhr/access-control-basic-allow-preflight-cache-invalidation-by-header.any.js | |
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/tests/xhr/access-control-basic-allow-preflight-cache-invalidation-by-header.any.js')
-rw-r--r-- | testing/web-platform/tests/xhr/access-control-basic-allow-preflight-cache-invalidation-by-header.any.js | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/testing/web-platform/tests/xhr/access-control-basic-allow-preflight-cache-invalidation-by-header.any.js b/testing/web-platform/tests/xhr/access-control-basic-allow-preflight-cache-invalidation-by-header.any.js new file mode 100644 index 0000000000..c9673832ab --- /dev/null +++ b/testing/web-platform/tests/xhr/access-control-basic-allow-preflight-cache-invalidation-by-header.any.js @@ -0,0 +1,38 @@ +// META: title=Preflight cache should be invalidated in presence of custom header +// META: script=/common/get-host-info.sub.js +// META: script=/common/utils.js + + const uuid = token(); + const xhr = new XMLHttpRequest; + + async_test(function(test) { + xhr.onerror = test.unreached_func("FAIL: Network error."); + xhr.onload = test.step_func(function() { + // Token reset. We can start the test now. + assert_equals(xhr.responseText, "PASS"); + firstRequest(); + }); + + xhr.open("GET", get_host_info().HTTP_REMOTE_ORIGIN + "/xhr/resources/reset-token.py?token=" + uuid, true); + xhr.send(); + + function firstRequest() { + xhr.onload = test.step_func(function() { + assert_equals(xhr.responseText, "PASS: First PUT request."); + secondRequest(); + }); + xhr.open("PUT", get_host_info().HTTP_REMOTE_ORIGIN + "/xhr/resources/access-control-basic-preflight-cache-invalidation.py?token=" + uuid, true); + xhr.send(); + } + + function secondRequest() { + xhr.onload = test.step_func(function() { + assert_equals(xhr.responseText, "PASS: Second OPTIONS request was sent."); + test.done(); + }); + // Send a header not included in the inital cache. + xhr.open("PUT", get_host_info().HTTP_REMOTE_ORIGIN + "/xhr/resources/access-control-basic-preflight-cache-invalidation.py?token=" + uuid, true); + xhr.setRequestHeader("x-test", "headerValue"); + xhr.send(); + } + }, "Preflight cache should be invalidated in presence of custom header"); |