function RestResourceConfigTest::testNormalizeRestMethod

Same name and namespace in other branches
  1. 9 core/modules/rest/tests/src/Unit/Entity/RestResourceConfigTest.php \Drupal\Tests\rest\Unit\Entity\RestResourceConfigTest::testNormalizeRestMethod()
  2. 8.9.x core/modules/rest/tests/src/Unit/Entity/RestResourceConfigTest.php \Drupal\Tests\rest\Unit\Entity\RestResourceConfigTest::testNormalizeRestMethod()
  3. 10 core/modules/rest/tests/src/Unit/Entity/RestResourceConfigTest.php \Drupal\Tests\rest\Unit\Entity\RestResourceConfigTest::testNormalizeRestMethod()

Asserts that rest methods are normalized to upper case.

This also tests that no exceptions are thrown during that method so that alternate methods such as OPTIONS and PUT are supported.

File

core/modules/rest/tests/src/Unit/Entity/RestResourceConfigTest.php, line 24

Class

RestResourceConfigTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21rest%21src%21Entity%21RestResourceConfig.php/class/RestResourceConfig/11.x" title="Defines a RestResourceConfig configuration entity class." class="local">\Drupal\rest\Entity\RestResourceConfig</a>

Namespace

Drupal\Tests\rest\Unit\Entity

Code

public function testNormalizeRestMethod() : void {
    $expected = [
        'GET',
        'PUT',
        'POST',
        'PATCH',
        'DELETE',
        'OPTIONS',
        'FOO',
    ];
    $methods = [
        'get',
        'put',
        'post',
        'patch',
        'delete',
        'options',
        'foo',
    ];
    $configuration = [];
    foreach ($methods as $method) {
        $configuration[$method] = [
            'supported_auth' => [
                'cookie',
            ],
            'supported_formats' => [
                'json',
            ],
        ];
    }
    $entity = new RestResourceConfig([
        'plugin_id' => 'entity:entity_test',
        'granularity' => RestResourceConfigInterface::METHOD_GRANULARITY,
        'configuration' => $configuration,
    ], 'rest_resource_config');
    $this->assertEquals($expected, $entity->getMethods());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.