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. 8.9.x 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()

Returns the expected cacheability of an unauthorized access response.

Return value

\Drupal\Core\Cache\RefinableCacheableDependencyInterface The expected cacheability.

Overrides ResourceTestBase::getExpectedUnauthorizedAccessCacheability

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 352

Class

EntityResourceTestBase
Defines a base class for testing all entity resources.

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.