class ExceptionStatusCodeCacheContextTest

Tests Drupal\Core\Cache\Context\CookiesCacheContext.

Attributes

#[CoversClass(ExceptionStatusCodeCacheContext::class)] #[Group('Cache')]

Hierarchy

Expanded class hierarchy of ExceptionStatusCodeCacheContextTest

File

core/tests/Drupal/Tests/Core/Cache/Context/ExceptionStatusCodeCacheContextTest.php, line 22

Namespace

Drupal\Tests\Core\Cache\Context
View source
class ExceptionStatusCodeCacheContextTest extends UnitTestCase {
  
  /**
   * Tests get context.
   */
  public function testGetContext(?\Exception $exception, string $result) : void {
    $request_stack = new RequestStack();
    $request = Request::create('/', 'GET');
    if (isset($exception)) {
      $request->attributes
        ->set('exception', $exception);
    }
    $request_stack->push($request);
    $cache_context = new ExceptionStatusCodeCacheContext($request_stack);
    $this->assertSame($cache_context->getContext(), $result);
  }
  
  /**
   * Provides a list of cookies and expected cache contexts.
   */
  public static function providerTestGetContext() : array {
    return [
      [
        new NotFoundHttpException(),
        '404',
      ],
      [
        new AccessDeniedHttpException(),
        '403',
      ],
      [
        new BadRequestHttpException(),
        '400',
      ],
      [
        new MethodNotAllowedHttpException([
          'POST',
        ]),
        '405',
      ],
      [
        NULL,
        '0',
      ],
    ];
  }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary Overrides
DrupalTestCaseTrait::$root protected property The Drupal root directory.
DrupalTestCaseTrait::checkErrorHandlerOnTearDown public function Checks the test error handler after test execution. 1
DrupalTestCaseTrait::getDrupalRoot Deprecated protected static function Returns the Drupal root directory. 1
DrupalTestCaseTrait::setDebugDumpHandler public static function Registers the dumper CLI handler when the DebugDump extension is enabled.
DrupalTestCaseTrait::setUpRoot final protected function Ensure that the $root property is set initially.
ExceptionStatusCodeCacheContextTest::providerTestGetContext public static function Provides a list of cookies and expected cache contexts.
ExceptionStatusCodeCacheContextTest::testGetContext public function Tests get context.
ExpectDeprecationTrait::expectDeprecation Deprecated public function Adds an expected deprecation.
ExpectDeprecationTrait::regularExpressionForFormatDescription private function
RandomGeneratorTrait::getRandomGenerator protected function Gets the random generator for the utility methods.
RandomGeneratorTrait::randomMachineName protected function Generates a unique random string containing letters and numbers.
RandomGeneratorTrait::randomObject public function Generates a random PHP object.
RandomGeneratorTrait::randomString public function Generates a pseudo-random string of ASCII characters of codes 32 to 126.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::setUp protected function 373
UnitTestCase::setupMockIterator protected function Set up a traversable class mock to return specific items when iterated.

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