From 66710e600849ea5a75b41574ad9a79c22a597343 Mon Sep 17 00:00:00 2001 From: quietone <quietone@2572884.no-reply.drupal.org> Date: Fri, 25 Aug 2023 11:48:57 +1200 Subject: [PATCH] Issue #3374874 by Spokje, smustgrave: Add 'HEAD'-method to \Drupal\Tests\rest\Unit\EventSubscriber\ResourceResponseSubscriberTest::providerTestResponseFormat --- .../ResourceResponseSubscriberTest.php | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/core/modules/rest/tests/src/Unit/EventSubscriber/ResourceResponseSubscriberTest.php b/core/modules/rest/tests/src/Unit/EventSubscriber/ResourceResponseSubscriberTest.php index 50591f250741..b0126a2f1f25 100644 --- a/core/modules/rest/tests/src/Unit/EventSubscriber/ResourceResponseSubscriberTest.php +++ b/core/modules/rest/tests/src/Unit/EventSubscriber/ResourceResponseSubscriberTest.php @@ -222,8 +222,7 @@ public function providerTestResponseFormat() { $safe_method_test_cases = [ 'safe methods: client requested format (JSON)' => [ - // @todo add 'HEAD' in https://www.drupal.org/node/2752325 - ['GET'], + ['GET', 'HEAD'], ['xml', 'json'], [], 'json', @@ -234,8 +233,7 @@ public function providerTestResponseFormat() { $json_encoded, ], 'safe methods: client requested format (XML)' => [ - // @todo add 'HEAD' in https://www.drupal.org/node/2752325 - ['GET'], + ['GET', 'HEAD'], ['xml', 'json'], [], 'xml', @@ -246,8 +244,7 @@ public function providerTestResponseFormat() { $xml_encoded, ], 'safe methods: client requested no format: response should use the first configured format (JSON)' => [ - // @todo add 'HEAD' in https://www.drupal.org/node/2752325 - ['GET'], + ['GET', 'HEAD'], ['json', 'xml'], [], FALSE, @@ -258,8 +255,7 @@ public function providerTestResponseFormat() { $json_encoded, ], 'safe methods: client requested no format: response should use the first configured format (XML)' => [ - // @todo add 'HEAD' in https://www.drupal.org/node/2752325 - ['GET'], + ['GET', 'HEAD'], ['xml', 'json'], [], FALSE, -- GitLab