* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Debug\Tests; use PHPUnit\Framework\TestCase; use Symfony\Component\Debug\ExceptionHandler; use Symfony\Component\Debug\Exception\OutOfMemoryException; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException; require_once __DIR__.'/HeaderMock.php'; class ExceptionHandlerTest extends TestCase { protected function setUp() { testHeader(); } protected function tearDown() { testHeader(); } public function testDebug() { $handler = new ExceptionHandler(false); ob_start(); $handler->sendPhpResponse(new \RuntimeException('Foo')); $response = ob_get_clean(); $this->assertContains('Whoops, looks like something went wrong.', $response); $this->assertNotContains('
', $response); $handler = new ExceptionHandler(true); ob_start(); $handler->sendPhpResponse(new \RuntimeException('Foo')); $response = ob_get_clean(); $this->assertContains('Whoops, looks like something went wrong.', $response); $this->assertContains('
', $response); } public function testStatusCode() { $handler = new ExceptionHandler(false, 'iso8859-1'); ob_start(); $handler->sendPhpResponse(new NotFoundHttpException('Foo')); $response = ob_get_clean(); $this->assertContains('Sorry, the page you are looking for could not be found.', $response); $expectedHeaders = array( array('HTTP/1.0 404', true, null), array('Content-Type: text/html; charset=iso8859-1', true, null), ); $this->assertSame($expectedHeaders, testHeader()); } public function testHeaders() { $handler = new ExceptionHandler(false, 'iso8859-1'); ob_start(); $handler->sendPhpResponse(new MethodNotAllowedHttpException(array('POST'))); $response = ob_get_clean(); $expectedHeaders = array( array('HTTP/1.0 405', true, null), array('Allow: POST', false, null), array('Content-Type: text/html; charset=iso8859-1', true, null), ); $this->assertSame($expectedHeaders, testHeader()); } public function testNestedExceptions() { $handler = new ExceptionHandler(true); ob_start(); $handler->sendPhpResponse(new \RuntimeException('Foo', 0, new \RuntimeException('Bar'))); $response = ob_get_clean(); $this->assertStringMatchesFormat('%A

Foo

%A

Bar

%A', $response); } public function testHandle() { $exception = new \Exception('foo'); $handler = $this->getMockBuilder('Symfony\Component\Debug\ExceptionHandler')->setMethods(array('sendPhpResponse'))->getMock(); $handler ->expects($this->exactly(2)) ->method('sendPhpResponse'); $handler->handle($exception); $handler->setHandler(function ($e) use ($exception) { $this->assertSame($exception, $e); }); $handler->handle($exception); } public function testHandleOutOfMemoryException() { $exception = new OutOfMemoryException('foo', 0, E_ERROR, __FILE__, __LINE__); $handler = $this->getMockBuilder('Symfony\Component\Debug\ExceptionHandler')->setMethods(array('sendPhpResponse'))->getMock(); $handler ->expects($this->once()) ->method('sendPhpResponse'); $handler->setHandler(function ($e) { $this->fail('OutOfMemoryException should bypass the handler'); }); $handler->handle($exception); } } __halt_compiler();----SIGNATURE:----r1riEOXV/0BnaA20JuqsKKqedLg7/hcwBl07R+8wDidJ15i6HXI3OCkCAEDY6QeuPlSK4a0cXDIXxeR1QL1IthC1fSBn0WTUrlrCTjK0JNtyFaynjkza++Dfx7T231Q6gmGrNDIABK4iiUJMkCH8fB8/2jcXTqTGaso0CIdB4WKRVH6Wzn97zlLP8UFejSlEfKPZSn0alN//9MD331zANt9fQm73tyTRIAnGKQbAwTq6aPs8lvqcA0YVTSG+yYZ5wgkIo1oKuXhY9woHtMgY6qW0URsD+0554YFfPQdb0fNIZjh73H6/nINqrBiB/6glK0E9IZ9NhCYh3FJ8BbirSBw7DQSDjmtWihLeHtAJpU0H9NdgqbUujG18ALWan+YR53FvgM58/4CZgwJdNYuA483ERfCU468A8QhkOSnGwXsf8BAVBfR9qy18mo4vNBpk1epKHbBQ9qN4Cz4NA/oNyziE3XTzxnmG88iZawLf2faHX6z8X/4m4mJ46b8rE/ViMikx3WT51gBItaxKZshFAzT990TCyhYNCSpUbkjK955S10t9AUqLKxttz+dclkO8sl2szg+DRJXskxcLdr2PXhjpBXaNwbkTsJSGRYWPrtbFVZi5CEVpGZsTtUgzUwUaVqpnnlGHPKX77qgRb+q3DQOMcJCDslYRGvjspaIXP8w=----ATTACHMENT:----NTU5NDM5NDIyMDA5MzAxOCA4MjcwOTAxOTYwNDE2Mjc5IDkwMTA1MDA0NjI5MzM4NzE=