class FinalExceptionSubscriberTest in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/EventSubscriber/FinalExceptionSubscriberTest.php \Drupal\Tests\Core\EventSubscriber\FinalExceptionSubscriberTest
- 10 core/tests/Drupal/Tests/Core/EventSubscriber/FinalExceptionSubscriberTest.php \Drupal\Tests\Core\EventSubscriber\FinalExceptionSubscriberTest
@coversDefaultClass \Drupal\Core\EventSubscriber\FinalExceptionSubscriber @group EventSubscriber
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\Core\EventSubscriber\FinalExceptionSubscriberTest
Expanded class hierarchy of FinalExceptionSubscriberTest
File
- core/
tests/ Drupal/ Tests/ Core/ EventSubscriber/ FinalExceptionSubscriberTest.php, line 17
Namespace
Drupal\Tests\Core\EventSubscriberView source
class FinalExceptionSubscriberTest extends UnitTestCase {
/**
* @covers ::onException
*/
public function testOnExceptionWithUnknownFormat() {
$config_factory = $this
->getConfigFactoryStub();
$kernel = $this
->prophesize(HttpKernelInterface::class);
$request = Request::create('/test');
// \Drupal\Core\StackMiddleware\NegotiationMiddleware normally takes care
// of this so we'll hard code it here.
$request
->setRequestFormat('bananas');
$e = new MethodNotAllowedHttpException([
'POST',
'PUT',
], 'test message');
$event = new GetResponseForExceptionEvent($kernel
->reveal(), $request, HttpKernelInterface::MASTER_REQUEST, $e);
$subscriber = new TestDefaultExceptionSubscriber($config_factory);
$subscriber
->setStringTranslation($this
->getStringTranslationStub());
$subscriber
->onException($event);
$response = $event
->getResponse();
$this
->assertInstanceOf(Response::class, $response);
$this
->stringStartsWith('The website encountered an unexpected error. Please try again later.</br></br><em class="placeholder">Symfony\\Component\\HttpKernel\\Exception\\MethodNotAllowedHttpException</em>: test message in ', $response
->getContent());
$this
->assertEquals(405, $response
->getStatusCode());
$this
->assertEquals('POST, PUT', $response->headers
->get('Allow'));
// Also check that the text/plain content type was added.
$this
->assertEquals('text/plain', $response->headers
->get('Content-Type'));
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FinalExceptionSubscriberTest:: |
public | function | @covers ::onException | |
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
protected | function | 340 |