Skip to content

Commit

Permalink
Pages controller should render 404 on missing view file
Browse files Browse the repository at this point in the history
  • Loading branch information
majna committed Jul 13, 2013
1 parent d992d3a commit 1ce9fc5
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 3 deletions.
12 changes: 11 additions & 1 deletion app/Controller/PagesController.php
Expand Up @@ -50,6 +50,8 @@ class PagesController extends AppController {
*
* @param mixed What page to display
* @return void
* @throws NotFoundException When the view file could not be found
* or MissingViewException in debug mode.
*/
public function display() {
$path = func_get_args();
Expand All @@ -70,6 +72,14 @@ public function display() {
$title_for_layout = Inflector::humanize($path[$count - 1]);
}
$this->set(compact('page', 'subpage', 'title_for_layout'));
$this->render(implode('/', $path));

try {
$this->render(implode('/', $path));
} catch (MissingViewException $e) {
if (Configure::read('debug')) {
throw $e;
}
throw new NotFoundException();
}
}
}
12 changes: 11 additions & 1 deletion lib/Cake/Console/Templates/skel/Controller/PagesController.php
Expand Up @@ -42,6 +42,8 @@ class PagesController extends AppController {
*
* @param mixed What page to display
* @return void
* @throws NotFoundException When the view file could not be found
* or MissingViewException in debug mode.
*/
public function display() {
$path = func_get_args();
Expand All @@ -62,6 +64,14 @@ public function display() {
$title_for_layout = Inflector::humanize($path[$count - 1]);
}
$this->set(compact('page', 'subpage', 'title_for_layout'));
$this->render(implode('/', $path));

try {
$this->render(implode('/', $path));
} catch (MissingViewException $e) {
if (Configure::read('debug')) {
throw $e;
}
throw new NotFoundException();
}
}
}
26 changes: 26 additions & 0 deletions lib/Cake/Test/Case/Controller/PagesControllerTest.php
Expand Up @@ -51,4 +51,30 @@ public function testDisplay() {
$this->assertEquals('TestTheme', $Pages->viewVars['page']);
$this->assertEquals('Posts', $Pages->viewVars['subpage']);
}

/**
* Test that missing view renders 404 page in production
*
* @expectedException NotFoundException
* @expectedExceptionCode 404
* @return void
*/
public function testMissingView() {
Configure::write('debug', 0);
$Pages = new PagesController(new CakeRequest(null, false), new CakeResponse());
$Pages->display('non_existing_page');
}

/**
* Test that missing view in debug mode renders missing_view error page
*
* @expectedException MissingViewException
* @expectedExceptionCode 500
* @return void
*/
public function testMissingViewInDebug() {
Configure::write('debug', 1);
$Pages = new PagesController(new CakeRequest(null, false), new CakeResponse());
$Pages->display('non_existing_page');
}
}
12 changes: 11 additions & 1 deletion lib/Cake/Test/test_app/Controller/PagesController.php
Expand Up @@ -51,6 +51,8 @@ class PagesController extends AppController {
*
* @param mixed What page to display
* @return void
* @throws NotFoundException When the view file could not be found
* or MissingViewException in debug mode.
*/
public function display() {
$path = func_get_args();
Expand All @@ -75,7 +77,15 @@ public function display() {
'subpage' => $subpage,
'title_for_layout' => $titleForLayout
));
$this->render(implode('/', $path));

try {
$this->render(implode('/', $path));
} catch (MissingViewException $e) {
if (Configure::read('debug')) {
throw $e;
}
throw new NotFoundException();
}
}

}

0 comments on commit 1ce9fc5

Please sign in to comment.