Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Unified Diff: LayoutTests/http/tests/fetch/script-tests/fetch-access-control-cors-preflight2.js

Issue 1267263003: Rename fetch layout tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/fetch/script-tests/fetch-access-control-cors-preflight2.js
diff --git a/LayoutTests/http/tests/fetch/script-tests/fetch-access-control-cors-preflight2.js b/LayoutTests/http/tests/fetch/script-tests/fetch-access-control-cors-preflight2.js
deleted file mode 100644
index 99220f8c0a09337cb9f5e9c6c4d4b8a49034e5d8..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/fetch/script-tests/fetch-access-control-cors-preflight2.js
+++ /dev/null
@@ -1,174 +0,0 @@
-if (self.importScripts) {
- importScripts('../resources/fetch-test-helpers.js');
- importScripts('../resources/fetch-access-control-util.js');
-}
-
-// Tests for CORS preflight fetch (non-simple methods).
-// Spec: https://fetch.spec.whatwg.org/#cors-preflight-fetch
-
-var TEST_TARGETS = [];
-
-['PUT', 'XXX'].forEach(function(method) {
- var checkMethod = checkJsonpMethod.bind(this, method);
- TEST_TARGETS.push(
- // CORS check
- // https://fetch.spec.whatwg.org/#concept-cors-check
- // Tests for Access-Control-Allow-Origin header.
- // CORS preflight fetch
- // https://fetch.spec.whatwg.org/#cors-preflight-fetch
- // Tests for Access-Control-Allow-Methods header.
- // Tests for Access-Control-Allow-Headers header.
- [OTHER_BASE_URL + 'mode=cors&method=' + method,
- [fetchRejected]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method + '&ACAMethods=' + method,
- [fetchRejected]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method + '&ACAOrigin=*',
- [fetchRejected]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=*&ACAMethods=' + method,
- [fetchResolved, noContentLength, noServerHeader, hasBody, typeCors],
- [checkMethod]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=*&headers=CUSTOM&ACAMethods=' + method,
- [fetchRejected]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=*&headers=CUSTOM&ACAMethods=' + method +
- '&ACAHeaders=x-serviceworker-test',
- [fetchResolved, noContentLength, noServerHeader, hasBody, typeCors],
- [checkMethod, hasCustomHeader]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=*&headers=CUSTOM&ACAMethods=' + method +
- '&ACAHeaders=x-serviceworker-test&ACEHeaders=Content-Length, X-ServiceWorker-ServerHeader',
- [fetchResolved, hasContentLength, hasServerHeader, hasBody, typeCors],
- [checkMethod, hasCustomHeader]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=*&headers=CUSTOM&ACAMethods=PUT, XXX',
- [fetchRejected]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=*&headers=CUSTOM&ACAMethods=PUT, XXX&ACAHeaders=x-serviceworker-test',
- [fetchResolved, noContentLength, noServerHeader, hasBody, typeCors],
- [checkMethod, hasCustomHeader]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=*&headers=CUSTOM&ACAMethods=PUT, XXX&ACAHeaders=x-serviceworker-test&ACEHeaders=Content-Length, X-ServiceWorker-ServerHeader',
- [fetchResolved, hasContentLength, hasServerHeader, hasBody, typeCors],
- [checkMethod, hasCustomHeader]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=' + BASE_ORIGIN,
- [fetchRejected]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=' + BASE_ORIGIN + '&ACAMethods=' + method,
- [fetchResolved, noContentLength, noServerHeader, hasBody, typeCors],
- [checkMethod]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=' + BASE_ORIGIN + '&headers=CUSTOM&ACAMethods=' + method,
- [fetchRejected]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=' + BASE_ORIGIN + '&headers=CUSTOM&ACAMethods=' + method +
- '&ACAHeaders=x-serviceworker-test',
- [fetchResolved, noContentLength, noServerHeader, hasBody, typeCors],
- [checkMethod, hasCustomHeader]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=' + BASE_ORIGIN + '&headers=CUSTOM&ACAMethods=' + method +
- '&ACAHeaders=x-serviceworker-test&ACEHeaders=Content-Length, X-ServiceWorker-ServerHeader',
- [fetchResolved, hasContentLength, hasServerHeader, hasBody, typeCors],
- [checkMethod, hasCustomHeader]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=' + BASE_ORIGIN + '&headers=CUSTOM&ACAMethods=PUT, XXX',
- [fetchRejected]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=' + BASE_ORIGIN +
- '&headers=CUSTOM&ACAMethods=PUT, XXX&ACAHeaders=x-serviceworker-test',
- [fetchResolved, noContentLength, noServerHeader, hasBody, typeCors],
- [checkMethod, hasCustomHeader]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=' + BASE_ORIGIN +
- '&headers=CUSTOM&ACAMethods=PUT, XXX&ACAHeaders=x-serviceworker-test&ACEHeaders=Content-Length, X-ServiceWorker-ServerHeader',
- [fetchResolved, hasContentLength, hasServerHeader, hasBody, typeCors],
- [checkMethod, hasCustomHeader]],
-
- // Test that Access-Control-Allow-Methods is checked in
- // CORS preflight fetch.
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=*&PACAOrigin=*&PACAMethods=' + method + '&PreflightTest=200',
- [fetchResolved, noContentLength, noServerHeader, hasBody, typeCors],
- [checkMethod]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=*&PACAOrigin=*&ACAMethods=' + method + '&PreflightTest=200',
- [fetchRejected]],
-
- // Test that Access-Control-Allow-Headers is checked in
- // CORS preflight fetch.
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&headers=CUSTOM&ACAOrigin=*&PACAOrigin=*&PACAMethods=' + method +
- '&PACAHeaders=x-serviceworker-test&PreflightTest=200',
- [fetchResolved, noContentLength, noServerHeader, hasBody, typeCors],
- [checkMethod, hasCustomHeader]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&headers=CUSTOM&ACAOrigin=*&PACAOrigin=*&PACAMethods=' + method +
- '&ACAHeaders=x-serviceworker-test&PreflightTest=200',
- [fetchRejected]],
-
- // Test that CORS check is done in both preflight and main fetch.
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=*&PACAMethods=' + method + '&PreflightTest=200',
- [fetchRejected]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&PACAOrigin=*&PACAMethods=' + method + '&PreflightTest=200',
- [fetchRejected]],
-
- // Test that Access-Control-Expose-Headers of CORS preflight is ignored.
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=*&PACAOrigin=*&PACAMethods=' + method +
- '&PACEHeaders=Content-Length, X-ServiceWorker-ServerHeader&PreflightTest=200',
- [fetchResolved, noContentLength, noServerHeader, hasBody, typeCors],
- [checkMethod]],
-
- // Test that CORS preflight with Status 2XX succeeds.
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=*&PACAOrigin=*&PACAMethods=' + method + '&PreflightTest=201',
- [fetchResolved, noContentLength, noServerHeader, hasBody, typeCors],
- [checkMethod]],
-
- // Test that CORS preflight with Status other than 2XX fails.
- // https://crbug.com/452394
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=*&PACAOrigin=*&PACAMethods=' + method + '&PreflightTest=301',
- [fetchRejected]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=*&PACAOrigin=*&PACAMethods=' + method + '&PreflightTest=401',
- [fetchRejected]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&ACAOrigin=*&PACAOrigin=*&PACAMethods=' + method + '&PreflightTest=500',
- [fetchRejected]],
-
- // Test CORS preflight with multiple request headers.
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&headers=CUSTOM2&ACAOrigin=*&PACAOrigin=*&PACAMethods=' + method +
- '&PACAHeaders=x-servicEworker-u, x-servicEworker-ua, x-servicewOrker-test, x-sErviceworker-s, x-sErviceworker-v&PreflightTest=200',
- [fetchResolved, noContentLength, noServerHeader, hasBody, typeCors],
- [checkMethod, hasCustomHeader2]],
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&headers=CUSTOM2&ACAOrigin=*&PACAOrigin=*&PACAMethods=' + method +
- '&PACAHeaders=x-servicewOrker-test&PreflightTest=200',
- [fetchRejected]],
-
- // Test request headers sent in CORS preflight requests.
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&headers=CUSTOM&ACAOrigin=*&PACAOrigin=*&PACAMethods=' + method +
- '&PACAHeaders=x-serviceworker-test&PACRMethod=' + method +
- '&PACRHeaders=x-serviceworker-test&PreflightTest=200',
- [fetchResolved, noContentLength, noServerHeader, hasBody, typeCors],
- [checkMethod, hasCustomHeader]],
- // Test Access-Control-Request-Headers is sorted https://crbug.com/452391
- [OTHER_BASE_URL + 'mode=cors&method=' + method +
- '&headers=CUSTOM2&ACAOrigin=*&PACAOrigin=*&PACAMethods=' + method +
- '&PACAHeaders=x-servicEworker-u, x-servicEworker-ua, x-servicewOrker-test, x-sErviceworker-s, x-sErviceworker-v&PACRMethod=' + method +
- '&PACRHeaders=x-serviceworker-s, x-serviceworker-test, x-serviceworker-u, x-serviceworker-ua, x-serviceworker-v&PreflightTest=200',
- [fetchResolved, noContentLength, noServerHeader, hasBody, typeCors],
- [checkMethod, hasCustomHeader2]]);
- });
-
-if (self.importScripts) {
- executeTests(TEST_TARGETS);
- done();
-}

Powered by Google App Engine
This is Rietveld 408576698