class ExceptionStatusCodeCacheContextTest
Same name and namespace in other branches
- 11.x core/tests/Drupal/Tests/Core/Cache/Context/ExceptionStatusCodeCacheContextTest.php \Drupal\Tests\Core\Cache\Context\ExceptionStatusCodeCacheContextTest
Tests Drupal\Core\Cache\Context\CookiesCacheContext.
Attributes
#[CoversClass(ExceptionStatusCodeCacheContext::class)]
#[Group('Cache')]
Hierarchy
- class \Drupal\Tests\DrupalTestCase uses \Drupal\Tests\DrupalTestCaseTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\Tests\UnitTestCase uses \Prophecy\PhpUnit\ProphecyTrait, \Drupal\Tests\RandomGeneratorTrait extends \Drupal\Tests\DrupalTestCase
- class \Drupal\Tests\Core\Cache\Context\ExceptionStatusCodeCacheContextTest extends \Drupal\Tests\UnitTestCase
- class \Drupal\Tests\UnitTestCase uses \Prophecy\PhpUnit\ProphecyTrait, \Drupal\Tests\RandomGeneratorTrait extends \Drupal\Tests\DrupalTestCase
Expanded class hierarchy of ExceptionStatusCodeCacheContextTest
File
-
core/
tests/ Drupal/ Tests/ Core/ Cache/ Context/ ExceptionStatusCodeCacheContextTest.php, line 22
Namespace
Drupal\Tests\Core\Cache\ContextView 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 | Modifiers | Object type | Summary | Overrides |
|---|---|---|---|---|
| DrupalTestCaseTrait::checkErrorHandlerOnTearDown | public | function | Checks the test error handler after test execution. | 1 |
| DrupalTestCaseTrait::setDebugDumpHandler | public static | function | Registers the dumper CLI handler when the DebugDump extension is enabled. | |
| ExceptionStatusCodeCacheContextTest::providerTestGetContext | public static | function | Provides a list of cookies and expected cache contexts. | |
| ExceptionStatusCodeCacheContextTest::testGetContext | public | function | Tests get context. | |
| 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 | 358 | |
| 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.