| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957 |
- <?php
- declare(strict_types=1);
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 2.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Error;
- use Cake\Controller\Controller;
- use Cake\Controller\ErrorController;
- use Cake\Controller\Exception\InvalidParameterException;
- use Cake\Controller\Exception\MissingActionException;
- use Cake\Controller\Exception\MissingComponentException;
- use Cake\Core\Configure;
- use Cake\Core\Exception\CakeException;
- use Cake\Core\Exception\MissingPluginException;
- use Cake\Database\Driver;
- use Cake\Database\Exception\QueryException;
- use Cake\Database\Log\LoggedQuery;
- use Cake\Datasource\Exception\MissingDatasourceConfigException;
- use Cake\Datasource\Exception\MissingDatasourceException;
- use Cake\Error\Renderer\WebExceptionRenderer;
- use Cake\Event\EventInterface;
- use Cake\Event\EventManager;
- use Cake\Http\Exception\HttpException;
- use Cake\Http\Exception\InternalErrorException;
- use Cake\Http\Exception\MethodNotAllowedException;
- use Cake\Http\Exception\MissingControllerException;
- use Cake\Http\Exception\NotFoundException;
- use Cake\Http\Response;
- use Cake\Http\ServerRequest;
- use Cake\Mailer\Exception\MissingActionException as MissingMailerActionException;
- use Cake\ORM\Exception\MissingBehaviorException;
- use Cake\Routing\Router;
- use Cake\TestSuite\TestCase;
- use Cake\View\Exception\MissingHelperException;
- use Cake\View\Exception\MissingLayoutException;
- use Cake\View\Exception\MissingTemplateException;
- use Exception;
- use OutOfBoundsException;
- use PDOException;
- use PHPUnit\Framework\Attributes\DataProvider;
- use RuntimeException;
- use TestApp\Controller\Admin\ErrorController as PrefixErrorController;
- use TestApp\Error\Exception\MissingWidgetThing;
- use TestApp\Error\Exception\MissingWidgetThingException;
- use TestApp\Error\Renderer\MyCustomExceptionRenderer;
- use TestApp\Error\Renderer\TestAppsExceptionRenderer;
- use TestPlugin\Controller\ErrorController as PluginErrorController;
- use function Cake\Core\h;
- class WebExceptionRendererTest extends TestCase
- {
- /**
- * @var bool
- */
- protected $restoreError = false;
- /**
- * @var bool
- */
- protected $called;
- /**
- * setup create a request object to get out of router later.
- */
- public function setUp(): void
- {
- parent::setUp();
- Configure::write('Config.language', 'eng');
- Router::reload();
- $request = new ServerRequest(['base' => '']);
- Router::setRequest($request);
- Configure::write('debug', true);
- }
- /**
- * tearDown
- */
- public function tearDown(): void
- {
- parent::tearDown();
- $this->clearPlugins();
- if ($this->restoreError) {
- restore_error_handler();
- }
- }
- public function testControllerInstanceForPrefixedRequest(): void
- {
- $this->setAppNamespace('TestApp');
- $exception = new NotFoundException('Page not found');
- $request = new ServerRequest();
- $request = $request
- ->withParam('controller', 'Articles')
- ->withParam('prefix', 'Admin');
- $ExceptionRenderer = new MyCustomExceptionRenderer($exception, $request);
- $this->assertInstanceOf(
- PrefixErrorController::class,
- $ExceptionRenderer->__debugInfo()['controller']
- );
- }
- /**
- * Test that prefixed controllers in plugins use the plugin
- * error controller if it exists.
- *
- * @return void
- */
- public function testControllerInstanceForPluginPrefixedRequest(): void
- {
- $this->loadPlugins(['TestPlugin']);
- $this->setAppNamespace('TestApp');
- $exception = new NotFoundException('Page not found');
- $request = new ServerRequest();
- $request = $request
- ->withParam('controller', 'Comments')
- ->withParam('plugin', 'TestPlugin')
- ->withParam('prefix', 'Admin');
- $ExceptionRenderer = new MyCustomExceptionRenderer($exception, $request);
- $this->assertInstanceOf(
- PluginErrorController::class,
- $ExceptionRenderer->__debugInfo()['controller']
- );
- }
- /**
- * testTemplatePath
- */
- public function testTemplatePath(): void
- {
- $request = (new ServerRequest())
- ->withParam('controller', 'Foo')
- ->withParam('action', 'bar');
- $exception = new NotFoundException();
- $ExceptionRenderer = new WebExceptionRenderer($exception, $request);
- $ExceptionRenderer->render();
- $controller = $ExceptionRenderer->__debugInfo()['controller'];
- $this->assertSame('error400', $controller->viewBuilder()->getTemplate());
- $this->assertSame('Error', $controller->viewBuilder()->getTemplatePath());
- $request = $request->withParam('prefix', 'Admin');
- $exception = new MissingActionException(['controller' => 'Foo', 'action' => 'bar']);
- $ExceptionRenderer = new WebExceptionRenderer($exception, $request);
- $ExceptionRenderer->render();
- $controller = $ExceptionRenderer->__debugInfo()['controller'];
- $this->assertSame('missingAction', $controller->viewBuilder()->getTemplate());
- $this->assertSame('Error', $controller->viewBuilder()->getTemplatePath());
- Configure::write('debug', false);
- $ExceptionRenderer = new WebExceptionRenderer($exception, $request);
- $ExceptionRenderer->render();
- $controller = $ExceptionRenderer->__debugInfo()['controller'];
- $this->assertSame('error400', $controller->viewBuilder()->getTemplate());
- $this->assertSame(
- 'Admin' . DIRECTORY_SEPARATOR . 'Error',
- $controller->viewBuilder()->getTemplatePath()
- );
- }
- /**
- * test that methods declared in an WebExceptionRenderer subclass are not converted
- * into error400 when debug > 0
- */
- public function testSubclassMethodsNotBeingConvertedToError(): void
- {
- $exception = new MissingWidgetThingException('Widget not found');
- $ExceptionRenderer = new MyCustomExceptionRenderer($exception);
- $result = $ExceptionRenderer->render();
- $this->assertSame('widget thing is missing', (string)$result->getBody());
- }
- /**
- * test that subclass methods are not converted when debug = 0
- */
- public function testSubclassMethodsNotBeingConvertedDebug0(): void
- {
- Configure::write('debug', false);
- $exception = new MissingWidgetThingException('Widget not found');
- $ExceptionRenderer = new MyCustomExceptionRenderer($exception);
- $result = $ExceptionRenderer->render();
- $this->assertSame(
- 'missingWidgetThing',
- $ExceptionRenderer->__debugInfo()['method']
- );
- $this->assertSame(
- 'widget thing is missing',
- (string)$result->getBody(),
- 'Method declared in subclass converted to error400'
- );
- }
- /**
- * test that WebExceptionRenderer subclasses properly convert framework errors.
- */
- public function testSubclassConvertingFrameworkErrors(): void
- {
- Configure::write('debug', false);
- $exception = new MissingControllerException('PostsController');
- $ExceptionRenderer = new MyCustomExceptionRenderer($exception);
- $result = $ExceptionRenderer->render();
- $this->assertMatchesRegularExpression(
- '/Not Found/',
- (string)$result->getBody(),
- 'Method declared in error handler not converted to error400. %s'
- );
- }
- /**
- * test things in the constructor.
- */
- public function testConstruction(): void
- {
- $exception = new NotFoundException('Page not found');
- $ExceptionRenderer = new WebExceptionRenderer($exception);
- $this->assertInstanceOf(
- ErrorController::class,
- $ExceptionRenderer->__debugInfo()['controller']
- );
- $this->assertEquals($exception, $ExceptionRenderer->__debugInfo()['error']);
- }
- /**
- * test that exception message gets coerced when debug = 0
- */
- public function testExceptionMessageCoercion(): void
- {
- Configure::write('debug', false);
- $exception = new MissingActionException('Secret info not to be leaked');
- $ExceptionRenderer = new WebExceptionRenderer($exception);
- $this->assertInstanceOf(
- ErrorController::class,
- $ExceptionRenderer->__debugInfo()['controller']
- );
- $this->assertEquals($exception, $ExceptionRenderer->__debugInfo()['error']);
- $result = (string)$ExceptionRenderer->render()->getBody();
- $this->assertSame('error400', $ExceptionRenderer->__debugInfo()['template']);
- $this->assertStringContainsString('Not Found', $result);
- $this->assertStringNotContainsString('Secret info not to be leaked', $result);
- }
- /**
- * test that helpers in custom CakeErrorController are not lost
- */
- public function testCakeErrorHelpersNotLost(): void
- {
- static::setAppNamespace();
- $exception = new NotFoundException();
- $renderer = new TestAppsExceptionRenderer($exception);
- $result = $renderer->render();
- $this->assertStringContainsString('<b>peeled</b>', (string)$result->getBody());
- }
- /**
- * test that unknown exception types with valid status codes are treated correctly.
- */
- public function testUnknownExceptionTypeWithExceptionThatHasA400Code(): void
- {
- $exception = new MissingWidgetThingException('coding fail.');
- $ExceptionRenderer = new WebExceptionRenderer($exception);
- $response = $ExceptionRenderer->render();
- $this->assertSame(404, $response->getStatusCode());
- $this->assertFalse(method_exists($ExceptionRenderer, 'missingWidgetThing'), 'no method should exist.');
- $this->assertStringContainsString('coding fail', (string)$response->getBody(), 'Text should show up.');
- }
- /**
- * test that unknown exception types with valid status codes are treated correctly.
- */
- public function testUnknownExceptionTypeWithNoCodeIsA500(): void
- {
- $exception = new OutOfBoundsException('foul ball.');
- $ExceptionRenderer = new WebExceptionRenderer($exception);
- $result = $ExceptionRenderer->render();
- $this->assertSame(500, $result->getStatusCode());
- $this->assertStringContainsString('foul ball.', (string)$result->getBody(), 'Text should show up as its debug mode.');
- }
- /**
- * test that unknown exceptions have messages ignored.
- */
- public function testUnknownExceptionInProduction(): void
- {
- Configure::write('debug', false);
- $exception = new OutOfBoundsException('foul ball.');
- $ExceptionRenderer = new WebExceptionRenderer($exception);
- $response = $ExceptionRenderer->render();
- $result = (string)$response->getBody();
- $this->assertSame(500, $response->getStatusCode());
- $this->assertStringNotContainsString('foul ball.', $result, 'Text should no show up.');
- $this->assertStringContainsString('Internal Error', $result, 'Generic message only.');
- }
- /**
- * test that unknown exception types with valid status codes are treated correctly.
- */
- public function testUnknownExceptionTypeWithCodeHigherThan500(): void
- {
- $exception = new HttpException('foul ball.', 501);
- $ExceptionRenderer = new WebExceptionRenderer($exception);
- $response = $ExceptionRenderer->render();
- $result = (string)$response->getBody();
- $this->assertSame(501, $response->getStatusCode());
- $this->assertStringContainsString('foul ball.', $result, 'Text should show up as its debug mode.');
- }
- /**
- * testerror400 method
- */
- public function testError400(): void
- {
- Router::reload();
- $request = new ServerRequest(['url' => 'posts/view/1000']);
- Router::setRequest($request);
- $exception = new NotFoundException('Custom message');
- $ExceptionRenderer = new WebExceptionRenderer($exception);
- $response = $ExceptionRenderer->render();
- $result = (string)$response->getBody();
- $this->assertSame(404, $response->getStatusCode());
- $this->assertStringContainsString('<h2>Custom message</h2>', $result);
- $this->assertMatchesRegularExpression("/<strong>'.*?\/posts\/view\/1000'<\/strong>/", $result);
- }
- /**
- * testerror400 method when returning as JSON
- */
- public function testError400AsJson(): void
- {
- Router::reload();
- $request = new ServerRequest(['url' => 'posts/view/1000?sort=title&direction=desc']);
- $request = $request->withHeader('Accept', 'application/json');
- $request = $request->withHeader('Content-Type', 'application/json');
- Router::setRequest($request);
- $exception = new NotFoundException('Custom message');
- $exceptionLine = __LINE__ - 1;
- $ExceptionRenderer = new WebExceptionRenderer($exception);
- $response = $ExceptionRenderer->render();
- $result = (string)$response->getBody();
- $expected = [
- 'message' => 'Custom message',
- 'url' => '/posts/view/1000?sort=title&direction=desc',
- 'code' => 404,
- 'file' => __FILE__,
- 'line' => $exceptionLine,
- ];
- $this->assertEquals($expected, json_decode($result, true));
- $this->assertSame(404, $response->getStatusCode());
- }
- /**
- * test that error400 only modifies the messages on Cake Exceptions.
- */
- public function testError400OnlyChangingCakeException(): void
- {
- Configure::write('debug', false);
- $exception = new NotFoundException('Custom message');
- $ExceptionRenderer = new WebExceptionRenderer($exception);
- $result = $ExceptionRenderer->render();
- $this->assertStringContainsString('Custom message', (string)$result->getBody());
- $exception = new MissingActionException(['controller' => 'PostsController', 'action' => 'index']);
- $ExceptionRenderer = new WebExceptionRenderer($exception);
- $result = $ExceptionRenderer->render();
- $this->assertStringContainsString('Not Found', (string)$result->getBody());
- }
- /**
- * test that error400 doesn't expose XSS
- */
- public function testError400NoInjection(): void
- {
- Router::reload();
- $request = new ServerRequest(['url' => 'pages/<span id=333>pink</span></id><script>document.body.style.background = t=document.getElementById(333).innerHTML;window.alert(t);</script>']);
- Router::setRequest($request);
- $exception = new NotFoundException('Custom message');
- $ExceptionRenderer = new WebExceptionRenderer($exception);
- $result = (string)$ExceptionRenderer->render()->getBody();
- $this->assertStringNotContainsString('<script>document', $result);
- $this->assertStringNotContainsString('alert(t);</script>', $result);
- }
- /**
- * testError500 method
- */
- public function testError500Message(): void
- {
- $exception = new InternalErrorException('An Internal Error Has Occurred.');
- $ExceptionRenderer = new WebExceptionRenderer($exception);
- $response = $ExceptionRenderer->render();
- $result = (string)$response->getBody();
- $this->assertSame(500, $response->getStatusCode());
- $this->assertStringContainsString('<h2>An Internal Error Has Occurred.</h2>', $result);
- $this->assertStringContainsString('An Internal Error Has Occurred.</p>', $result);
- }
- /**
- * testExceptionResponseHeader method
- */
- public function testExceptionResponseHeader(): void
- {
- $exception = new MethodNotAllowedException('Only allowing POST and DELETE');
- $exception->setHeader('Allow', ['POST', 'DELETE']);
- $ExceptionRenderer = new WebExceptionRenderer($exception);
- $result = $ExceptionRenderer->render();
- $this->assertTrue($result->hasHeader('Allow'));
- $this->assertSame('POST,DELETE', $result->getHeaderLine('Allow'));
- $exception->setHeaders(['Allow' => 'GET']);
- $result = $ExceptionRenderer->render();
- $this->assertTrue($result->hasHeader('Allow'));
- $this->assertSame('GET', $result->getHeaderLine('Allow'));
- }
- /**
- * testMissingController method
- */
- public function testMissingController(): void
- {
- $exception = new MissingControllerException([
- 'controller' => 'Posts',
- 'prefix' => '',
- 'plugin' => '',
- ]);
- $ExceptionRenderer = new MyCustomExceptionRenderer($exception);
- $result = (string)$ExceptionRenderer->render()->getBody();
- $this->assertSame(
- 'missingController',
- $ExceptionRenderer->__debugInfo()['template']
- );
- $this->assertStringContainsString('Missing Controller', $result);
- $this->assertStringContainsString('<em>PostsController</em>', $result);
- }
- /**
- * test missingController method
- */
- public function testMissingControllerLowerCase(): void
- {
- $exception = new MissingControllerException([
- 'controller' => 'posts',
- 'prefix' => '',
- 'plugin' => '',
- ]);
- $ExceptionRenderer = new MyCustomExceptionRenderer($exception);
- $result = (string)$ExceptionRenderer->render()->getBody();
- $this->assertSame(
- 'missingController',
- $ExceptionRenderer->__debugInfo()['template']
- );
- $this->assertStringContainsString('Missing Controller', $result);
- $this->assertStringContainsString('<em>PostsController</em>', $result);
- }
- /**
- * Returns an array of tests to run for the various Cake Exception classes.
- *
- * @return array
- */
- public static function exceptionProvider(): array
- {
- return [
- [
- new MissingActionException([
- 'controller' => 'PostsController',
- 'action' => 'index',
- 'prefix' => '',
- 'plugin' => '',
- ]),
- [
- '/Missing Method in PostsController/',
- '/<em>PostsController::index\(\)<\/em>/',
- ],
- 404,
- ],
- [
- new InvalidParameterException([
- 'template' => 'failed_coercion',
- 'passed' => 'test',
- 'type' => 'float',
- 'parameter' => 'age',
- 'controller' => 'TestController',
- 'action' => 'checkAge',
- 'prefix' => null,
- 'plugin' => null,
- ]),
- ['/The passed parameter or parameter type is invalid in <em>TestController::checkAge\(\)/'],
- 404,
- ],
- [
- new MissingActionException([
- 'controller' => 'PostsController',
- 'action' => 'index',
- 'prefix' => '',
- 'plugin' => '',
- ]),
- [
- '/Missing Method in PostsController/',
- '/<em>PostsController::index\(\)<\/em>/',
- ],
- 404,
- ],
- [
- new MissingTemplateException(['file' => '/posts/about.ctp']),
- [
- "/posts\/about.ctp/",
- ],
- 500,
- ],
- [
- new MissingLayoutException(['file' => 'layouts/my_layout.ctp']),
- [
- '/Missing Layout/',
- "/layouts\/my_layout.ctp/",
- ],
- 500,
- ],
- [
- new MissingHelperException(['class' => 'MyCustomHelper']),
- [
- '/Missing Helper/',
- '/<em>MyCustomHelper<\/em> could not be found./',
- '/Create the class <em>MyCustomHelper<\/em> below in file:/',
- '/(\/|\\\)MyCustomHelper.php/',
- ],
- 500,
- ],
- [
- new MissingBehaviorException(['class' => 'MyCustomBehavior']),
- [
- '/Missing Behavior/',
- '/Create the class <em>MyCustomBehavior<\/em> below in file:/',
- '/(\/|\\\)MyCustomBehavior.php/',
- ],
- 500,
- ],
- [
- new MissingComponentException(['class' => 'SideboxComponent']),
- [
- '/Missing Component/',
- '/Create the class <em>SideboxComponent<\/em> below in file:/',
- '/(\/|\\\)SideboxComponent.php/',
- ],
- 500,
- ],
- [
- new MissingDatasourceConfigException(['name' => 'MyDatasourceConfig']),
- [
- '/Missing Datasource Configuration/',
- '/<em>MyDatasourceConfig<\/em> was not found/',
- ],
- 500,
- ],
- [
- new MissingDatasourceException(['class' => 'MyDatasource', 'plugin' => 'MyPlugin']),
- [
- '/Missing Datasource/',
- '/<em>MyPlugin.MyDatasource<\/em> could not be found./',
- ],
- 500,
- ],
- [
- new MissingMailerActionException([
- 'mailer' => 'UserMailer',
- 'action' => 'welcome',
- 'prefix' => '',
- 'plugin' => '',
- ]),
- [
- '/Missing Method in UserMailer/',
- '/<em>UserMailer::welcome\(\)<\/em>/',
- ],
- 500,
- ],
- [
- new Exception('boom'),
- [
- '/Internal Error/',
- ],
- 500,
- ],
- [
- new RuntimeException('another boom'),
- [
- '/Internal Error/',
- ],
- 500,
- ],
- [
- new CakeException('base class'),
- ['/Internal Error/'],
- 500,
- ],
- [
- new HttpException('Network Authentication Required', 511),
- ['/Network Authentication Required/'],
- 511,
- ],
- ];
- }
- /**
- * Test the various Cake Exception sub classes
- */
- #[DataProvider('exceptionProvider')]
- public function testCakeExceptionHandling(Exception $exception, array $patterns, int $code): void
- {
- $exceptionRenderer = new WebExceptionRenderer($exception);
- $response = $exceptionRenderer->render();
- $this->assertEquals($code, $response->getStatusCode());
- $body = (string)$response->getBody();
- foreach ($patterns as $pattern) {
- $this->assertMatchesRegularExpression($pattern, $body);
- }
- }
- /**
- * Test that class names not ending in Exception are not mangled.
- */
- public function testExceptionNameMangling(): void
- {
- $exceptionRenderer = new MyCustomExceptionRenderer(new MissingWidgetThing());
- $result = (string)$exceptionRenderer->render()->getBody();
- $this->assertStringContainsString('widget thing is missing', $result);
- // Custom method should be called even when debug is off.
- Configure::write('debug', false);
- $exceptionRenderer = new MyCustomExceptionRenderer(new MissingWidgetThing());
- $result = (string)$exceptionRenderer->render()->getBody();
- $this->assertStringContainsString('widget thing is missing', $result);
- }
- /**
- * Test exceptions being raised when helpers are missing.
- */
- public function testMissingRenderSafe(): void
- {
- $exception = new MissingHelperException(['class' => 'Fail']);
- $ExceptionRenderer = new MyCustomExceptionRenderer($exception);
- $request = new ServerRequest();
- $controller = new class ($request) extends Controller {
- public function render(?string $template = null, ?string $layout = null): Response
- {
- throw new MissingHelperException(['class' => 'Fail']);
- }
- };
- $ExceptionRenderer->setController($controller);
- $response = $ExceptionRenderer->render();
- $helpers = $controller->viewBuilder()->getHelpers();
- sort($helpers);
- $this->assertEquals([], $helpers);
- $this->assertStringContainsString('Helper class `Fail`', (string)$response->getBody());
- }
- /**
- * Test that exceptions in beforeRender() are handled by outputMessageSafe
- */
- public function testRenderExceptionInBeforeRender(): void
- {
- $exception = new NotFoundException('Not there, sorry');
- $ExceptionRenderer = new MyCustomExceptionRenderer($exception);
- $request = new ServerRequest();
- $controller = new class ($request) extends Controller {
- public function beforeRender(EventInterface $event)
- {
- throw new NotFoundException('Not there, sorry');
- }
- };
- $ExceptionRenderer->setController($controller);
- $response = $ExceptionRenderer->render();
- $this->assertStringContainsString('Not there, sorry', (string)$response->getBody());
- }
- /**
- * Test that missing layoutPath don't cause other fatal errors.
- */
- public function testMissingLayoutPathRenderSafe(): void
- {
- $this->called = false;
- $exception = new NotFoundException();
- $ExceptionRenderer = new MyCustomExceptionRenderer($exception);
- $controller = new Controller(new ServerRequest());
- $controller->viewBuilder()->setHelpers(['Fail', 'Boom']);
- $controller->getEventManager()->on(
- 'Controller.beforeRender',
- function (EventInterface $event): void {
- $this->called = true;
- $event->getSubject()->viewBuilder()->setLayoutPath('boom');
- }
- );
- $controller->setRequest(new ServerRequest());
- $ExceptionRenderer->setController($controller);
- $response = $ExceptionRenderer->render();
- $this->assertSame('text/html', $response->getType());
- $this->assertStringContainsString('Not Found', (string)$response->getBody());
- $this->assertTrue($this->called, 'Listener added was not triggered.');
- $this->assertSame('', $controller->viewBuilder()->getLayoutPath());
- $this->assertSame('Error', $controller->viewBuilder()->getTemplatePath());
- }
- /**
- * Test that missing layout don't cause other fatal errors.
- */
- public function testMissingLayoutRenderSafe(): void
- {
- $this->called = false;
- $exception = new NotFoundException();
- $ExceptionRenderer = new MyCustomExceptionRenderer($exception);
- $controller = new Controller(new ServerRequest());
- $controller->getEventManager()->on(
- 'Controller.beforeRender',
- function (EventInterface $event): void {
- $this->called = true;
- $event->getSubject()->viewBuilder()->setTemplatePath('Error');
- $event->getSubject()->viewBuilder()->setLayout('does-not-exist');
- }
- );
- $controller->setRequest(new ServerRequest());
- $ExceptionRenderer->setController($controller);
- $response = $ExceptionRenderer->render();
- $this->assertSame('text/html', $response->getType());
- $this->assertStringContainsString('Not Found', (string)$response->getBody());
- $this->assertTrue($this->called, 'Listener added was not triggered.');
- $this->assertSame('', $controller->viewBuilder()->getLayoutPath());
- $this->assertSame('Error', $controller->viewBuilder()->getTemplatePath());
- }
- /**
- * Test that missing plugin disables Controller::$plugin if the two are the same plugin.
- */
- public function testMissingPluginRenderSafe(): void
- {
- $exception = new NotFoundException();
- $ExceptionRenderer = new MyCustomExceptionRenderer($exception);
- $request = new ServerRequest();
- $controller = new class ($request) extends Controller {
- public function render(?string $template = null, ?string $layout = null): Response
- {
- throw new MissingPluginException(['plugin' => 'TestPlugin']);
- }
- };
- $controller->setPlugin('TestPlugin');
- $ExceptionRenderer->setController($controller);
- $response = $ExceptionRenderer->render();
- $body = (string)$response->getBody();
- $this->assertStringNotContainsString('test plugin error500', $body);
- $this->assertStringContainsString('Not Found', $body);
- }
- /**
- * Test that missing plugin doesn't disable Controller::$plugin if the two aren't the same plugin.
- */
- public function testMissingPluginRenderSafeWithPlugin(): void
- {
- $this->loadPlugins(['TestPlugin']);
- $exception = new NotFoundException();
- $ExceptionRenderer = new MyCustomExceptionRenderer($exception);
- $request = new ServerRequest();
- $controller = new class ($request) extends Controller {
- public function render(?string $template = null, ?string $layout = null): Response
- {
- throw new MissingPluginException(['plugin' => 'TestPluginTwo']);
- }
- };
- $controller->setPlugin('TestPlugin');
- $ExceptionRenderer->setController($controller);
- $response = $ExceptionRenderer->render();
- $body = (string)$response->getBody();
- $this->assertStringContainsString('test plugin error500', $body);
- $this->assertStringContainsString('Not Found', $body);
- }
- /**
- * Test that exceptions can be rendered when a request hasn't been registered
- * with Router
- */
- public function testRenderWithNoRequest(): void
- {
- Router::reload();
- $this->assertNull(Router::getRequest());
- $exception = new Exception('Terrible');
- $ExceptionRenderer = new WebExceptionRenderer($exception);
- $result = $ExceptionRenderer->render();
- $this->assertStringContainsString('Internal Error', (string)$result->getBody());
- $this->assertSame(500, $result->getStatusCode());
- }
- /**
- * Test that router request parameters are applied when the passed
- * request has no params.
- */
- public function testRenderInheritRoutingParams(): void
- {
- $routerRequest = new ServerRequest([
- 'params' => [
- 'controller' => 'Articles',
- 'action' => 'index',
- 'plugin' => null,
- 'pass' => [],
- '_ext' => 'json',
- ],
- ]);
- // Simulate a request having routing applied and stored in router
- Router::setRequest($routerRequest);
- $exceptionRenderer = new WebExceptionRenderer(new Exception('Terrible'), new ServerRequest());
- $exceptionRenderer->render();
- $properties = $exceptionRenderer->__debugInfo();
- /** @var \Cake\Http\ServerRequest $request */
- $request = $properties['controller']->getRequest();
- foreach (['controller', 'action', '_ext'] as $key) {
- $this->assertSame($routerRequest->getParam($key), $request->getParam($key));
- }
- }
- /**
- * Test that rendering exceptions triggers shutdown events.
- */
- public function testRenderShutdownEvents(): void
- {
- $fired = [];
- $listener = function (EventInterface $event) use (&$fired): void {
- $fired[] = $event->getName();
- };
- $events = EventManager::instance();
- $events->on('Controller.shutdown', $listener);
- $exception = new Exception('Terrible');
- $renderer = new WebExceptionRenderer($exception);
- $renderer->render();
- $expected = ['Controller.shutdown'];
- $this->assertEquals($expected, $fired);
- }
- /**
- * test that subclass methods fire shutdown events.
- */
- public function testSubclassTriggerShutdownEvents(): void
- {
- $fired = [];
- $listener = function (EventInterface $event) use (&$fired): void {
- $fired[] = $event->getName();
- };
- $events = EventManager::instance();
- $events->on('Controller.shutdown', $listener);
- $exception = new MissingWidgetThingException('Widget not found');
- $renderer = new MyCustomExceptionRenderer($exception);
- $renderer->render();
- $expected = ['Controller.shutdown'];
- $this->assertEquals($expected, $fired);
- }
- /**
- * Tests the output of rendering a PDOException
- */
- public function testPDOException(): void
- {
- $loggedQuery = new LoggedQuery();
- $loggedQuery->setContext([
- 'query' => 'SELECT * from poo_query < 5 and :seven',
- 'driver' => $this->getMockBuilder(Driver::class)->getMock(),
- 'params' => ['seven' => 7],
- ]);
- $pdoException = $this->getMockBuilder(PDOException::class)->getMock();
- $exception = new QueryException($loggedQuery, $pdoException);
- $ExceptionRenderer = new WebExceptionRenderer($exception);
- $response = $ExceptionRenderer->render();
- $this->assertSame(500, $response->getStatusCode());
- $result = (string)$response->getBody();
- $this->assertStringContainsString('Database Error', $result);
- $this->assertStringContainsString('SQL Query', $result);
- $this->assertStringContainsString(h('SELECT * from poo_query < 5 and 7'), $result);
- }
- }
|