Skip to content

Commit

Permalink
Merge pull request #3809 from renan/2.5-non-integer-exception-code
Browse files Browse the repository at this point in the history
Exiting with 1 when Exception::getCode() returns non-integer values.
  • Loading branch information
lorenzo committed Jun 26, 2014
2 parents e8ee25f + 1a89a3c commit 8e9c85e
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/Cake/Console/ConsoleErrorHandler.php
Expand Up @@ -58,7 +58,9 @@ public function handleException(Exception $exception) {
$exception->getMessage(),
$exception->getTraceAsString()
));
return $this->_stop($exception->getCode() ? $exception->getCode() : 1);
$code = $exception->getCode();
$code = ($code && is_integer($code)) ? $code : 1;
return $this->_stop($code);
}

/**
Expand Down
27 changes: 27 additions & 0 deletions lib/Cake/Test/Case/Console/ConsoleErrorHandlerTest.php
Expand Up @@ -147,4 +147,31 @@ public function testError500Exception() {
$this->Error->handleException($exception);
}

/**
* test a exception with non-integer code
*
* @return void
*/
public function testNonIntegerExceptionCode() {
if (PHP_VERSION_ID < 50300) {
$this->markTestSkipped('ReflectionProperty::setAccessible() is available since 5.3');
}

$exception = new Exception('Non-integer exception code');

$class = new ReflectionClass('Exception');
$property = $class->getProperty('code');
$property->setAccessible(true);
$property->setValue($exception, '42S22');

ConsoleErrorHandler::$stderr->expects($this->once())->method('write')
->with($this->stringContains('Non-integer exception code'));

$this->Error->expects($this->once())
->method('_stop')
->with(1);

$this->Error->handleException($exception);
}

}

0 comments on commit 8e9c85e

Please sign in to comment.