* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Tests\Component\HttpKernel\Debug; use Symfony\Component\HttpKernel\Debug\ExceptionHandler; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; class ExceptionHandlerTest extends \PHPUnit_Framework_TestCase { public function testDebug() { $handler = new ExceptionHandler(false); $response = $handler->createResponse(new \RuntimeException('Foo')); $this->assertContains('

Whoops, looks like something went wrong.

', $response->getContent()); $this->assertNotContains('
', $response->getContent()); $handler = new ExceptionHandler(true); $response = $handler->createResponse(new \RuntimeException('Foo')); $this->assertContains('

Whoops, looks like something went wrong.

', $response->getContent()); $this->assertContains('
', $response->getContent()); } public function testStatusCode() { $handler = new ExceptionHandler(false); $response = $handler->createResponse(new \RuntimeException('Foo')); $this->assertEquals('500', $response->getStatusCode()); $this->assertContains('Whoops, looks like something went wrong.', $response->getContent()); $response = $handler->createResponse(new NotFoundHttpException('Foo')); $this->assertEquals('404', $response->getStatusCode()); $this->assertContains('Sorry, the page you are looking for could not be found.', $response->getContent()); } public function testNestedExceptions() { $handler = new ExceptionHandler(true); $response = $handler->createResponse(new \RuntimeException('Foo', null, new \RuntimeException('Bar'))); } }