You are here

protected function SearchPageTest::getExpectedUnauthorizedAccessCacheability in JSON:API 8.2

Same name and namespace in other branches
  1. 8 tests/src/Functional/SearchPageTest.php \Drupal\Tests\jsonapi\Functional\SearchPageTest::getExpectedUnauthorizedAccessCacheability()

Returns the expected cacheability for an unauthorized response.

Return value

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

Overrides ResourceTestBase::getExpectedUnauthorizedAccessCacheability

File

tests/src/Functional/SearchPageTest.php, line 135

Class

SearchPageTest
JSON:API integration test for the "SearchPage" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getExpectedUnauthorizedAccessCacheability() {

  // @see \Drupal\search\SearchPageAccessControlHandler::checkAccess()
  return parent::getExpectedUnauthorizedAccessCacheability()
    ->addCacheTags([
    'config:search.page.hinode_search',
  ]);
}