function EntityResourceTestBase::getExpectedUnauthorizedAccessCacheability

Same name and namespace in other branches
  1. 9 core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php \Drupal\Tests\rest\Functional\EntityResource\EntityResourceTestBase::getExpectedUnauthorizedAccessCacheability()
  2. 10 core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php \Drupal\Tests\rest\Functional\EntityResource\EntityResourceTestBase::getExpectedUnauthorizedAccessCacheability()
  3. 11.x core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php \Drupal\Tests\rest\Functional\EntityResource\EntityResourceTestBase::getExpectedUnauthorizedAccessCacheability()

Overrides ResourceTestBase::getExpectedUnauthorizedAccessCacheability

1 call to EntityResourceTestBase::getExpectedUnauthorizedAccessCacheability()
EntityResourceTestBase::testGet in core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php
Test a GET request for an entity, plus edge cases to ensure good DX.
1 method overrides EntityResourceTestBase::getExpectedUnauthorizedAccessCacheability()
BlockResourceTestBase::getExpectedUnauthorizedAccessCacheability in core/modules/block/tests/src/Functional/Rest/BlockResourceTestBase.php
@todo Fix this in https://www.drupal.org/node/2820315.

File

core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php, line 374

Class

EntityResourceTestBase
Even though there is the generic EntityResource, it's necessary for every entity type to have its own test, because they each have different fields, validation constraints, et cetera. It's not because the generic case works, that every case…

Namespace

Drupal\Tests\rest\Functional\EntityResource

Code

protected function getExpectedUnauthorizedAccessCacheability() {
    return (new CacheableMetadata())->setCacheTags(static::$auth ? [
        '4xx-response',
        'http_response',
    ] : [
        '4xx-response',
        'config:user.role.anonymous',
        'http_response',
    ])
        ->setCacheContexts([
        'user.permissions',
    ]);
}

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