fixed a bunch of parse errors

This commit is contained in:
tmont 2009-06-16 04:27:53 +00:00
parent 65fba62f5d
commit 67a34c7b8f
7 changed files with 47 additions and 26 deletions

View File

@ -200,9 +200,8 @@
if ($failure instanceof TestFailure) { if ($failure instanceof TestFailure) {
$this->out("\n"); $this->out("\n");
$this->out("----------- FAILURE -----------\n"); $this->out("----------- FAILURE -----------\n");
$this->out($result->getTest()->getName() . "\n\n"); $this->out('Test name: ' . $result->getTest()->getName() . "\n");
$this->out($failure->getMessage()); $this->out('Message: ' . $failure->getMessage() . "\n\n");
$this->out("\n\nStack trace:\n");
$this->out($failure->getStackTrace()); $this->out($failure->getStackTrace());
$this->out("\n"); $this->out("\n");
} }

View File

@ -1,6 +1,6 @@
<?php <?php
abstract class MockInvocation implements Verifiable { class MockInvocation {
protected $method; protected $method;
protected $args; protected $args;

View File

@ -9,8 +9,8 @@
protected static $registry = array(); protected static $registry = array();
public function __construct($class) { public function __construct($class, $callParent = true) {
if (!class_exists($class) || !interface_exists($class)) { if (!class_exists($class) && !interface_exists($class)) {
throw new InvalidArgumentException('The class "' . $class . '" does not exist'); throw new InvalidArgumentException('The class "' . $class . '" does not exist');
} }
@ -25,7 +25,7 @@
'default' => array( 'default' => array(
$this->referenceObject->getConstructor()->getName() => array( $this->referenceObject->getConstructor()->getName() => array(
'body' => '', 'body' => '',
'call_parent' => true 'call_parent' => (bool)$callParent
) )
), ),
'generic' => array() 'generic' => array()
@ -52,7 +52,7 @@
$methodType = 'generic'; $methodType = 'generic';
if ($this->referenceObject->hasMethod($methodName)) { if ($this->referenceObject->hasMethod($methodName)) {
$method = $this->referenceObject->getMethod($methodName); $method = $this->referenceObject->getMethod($methodName);
if (!$this->methodIsMockable($method)) if (!$this->methodIsMockable($method)) {
throw new LogicException('The method "' . $methodName . '" is static, private or final and cannot be mocked'); throw new LogicException('The method "' . $methodName . '" is static, private or final and cannot be mocked');
} }
@ -92,9 +92,10 @@
$code = $this->generateClassDefinition($name); $code = $this->generateClassDefinition($name);
eval($code); eval($code);
self::$registry[$name] = new InvocationTracker();
$obj = new ReflectionClass($name); $obj = new ReflectionClass($name);
$obj = $obj->newInstanceArgs($constructorArgs); $obj = $obj->newInstanceArgs($constructorArgs);
self::$registry[$name] = new InvocationTracker();
return $obj; return $obj;
} }
@ -103,14 +104,14 @@
if ($this->referenceObject->isInterface()) { if ($this->referenceObject->isInterface()) {
$code .= 'implements ' . $this->referenceObject->getName() . ', MockObject'; $code .= 'implements ' . $this->referenceObject->getName() . ', MockObject';
} else { } else {
$code .= 'extends ' . $this->getReferenceObject->getName() . ' implements MockObject'; $code .= 'extends ' . $this->referenceObject->getName() . ' implements MockObject';
} }
$code .= " {\n"; $code .= " {\n";
foreach ($this->methods as $type => $methods) { foreach ($this->methods as $type => $methods) {
foreach ($methods as $method => $methodData) { foreach ($methods as $method => $methodData) {
$code .= $this->generateMethodDefinition($type, $method, $methodData); $code .= $this->generateMethodDefinition($type, $method, $methodData) . "\n";
} }
} }
@ -125,12 +126,16 @@
if ($type === 'default') { if ($type === 'default') {
$method = $this->referenceObject->getMethod($name); $method = $this->referenceObject->getMethod($name);
$modifier = ($method->isPublic()) ? 'public' : 'protected'; $modifier = ($method->isPublic()) ? 'public' : 'protected';
$params = Util::buildParameterList($method); $params = Util::buildParameterDefinition($method);
$paramList = Util::getParameterNameList($method); $paramList = Util::buildParameterNameList($method);
} }
$varName = '$___args_' . uniqid();
$code = " $modifier function $name($params) {\n"; $code = " $modifier function $name($params) {\n";
$code .= " MockObject::registerInvocation(get_class($this), __FUNCTION__, func_get_args());\n"; $code .= " $varName = func_get_args();\n";
$code .= " MockObjectCreator::registerInvocation(get_class(\$this), __FUNCTION__, $varName);\n";
$code .= " unset($varName);\n";
if ($methodData['call_parent']) { if ($methodData['call_parent']) {
$code .= " parent::$name($paramList);\n"; $code .= " parent::$name($paramList);\n";
@ -139,7 +144,7 @@
$code .= "\t\t" . str_replace("\n", "\n\t\t", $methodData['body']) . "\n"; $code .= "\t\t" . str_replace("\n", "\n\t\t", $methodData['body']) . "\n";
} }
$code .= ' }'; $code .= " }";
return $code; return $code;
} }

View File

@ -2,11 +2,20 @@
class TestFailure extends Exception { class TestFailure extends Exception {
protected $innerException;
public function __construct($message = '', Exception $innerException = null) {
parent::__construct($message);
$this->innerException = $innerException;
}
public function getStackTrace() { public function getStackTrace() {
$trace = $this->getTrace(); $trace = ($this->innerException !== null) ? $this->innerException->getTrace() : $this->getTrace();
$count = 1; $count = 1;
$stackTrace = array(); $stackTrace = array();
foreach (array_slice($trace, 2) as $i => $frame) { //array_slice($trace, 2)
foreach ($trace as $i => $frame) {
$line = '[' . ($i + 1) . '] '; $line = '[' . ($i + 1) . '] ';
if (isset($frame['file'], $frame['line'])) { if (isset($frame['file'], $frame['line'])) {
if ($frame['file'] === dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'test' . DIRECTORY_SEPARATOR . 'TestMethod.php') { if ($frame['file'] === dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'test' . DIRECTORY_SEPARATOR . 'TestMethod.php') {
@ -23,7 +32,7 @@
} }
if (isset($frame['args']) && !empty($frame['args'])) { if (isset($frame['args']) && !empty($frame['args'])) {
$line .= implode(', ', array_map('TestFailure::transformArgs', $frame['args'])); $line .= implode(', ', array_map('Util::export', $frame['args']));
} }
$line .= ')'; $line .= ')';
@ -35,10 +44,6 @@
return implode("\n", $stackTrace); return implode("\n", $stackTrace);
} }
protected static function transformArgs($value) {
return Util::export($value);
}
} }
class FailedTest extends TestFailure {} class FailedTest extends TestFailure {}

View File

@ -50,6 +50,16 @@
return $methods; return $methods;
} }
protected function createMockObject($className, array $methods = array(), array $args = array(), $name = '', $callParent = true) {
$creator = new MockObjectCreator($className, $callParent);
foreach ($methods as $method) {
$creator->addMethod($method);
}
return $creator->generate($args, $name);
}
} }
?> ?>

View File

@ -35,6 +35,8 @@
foreach ($listeners as $listener) { foreach ($listeners as $listener) {
$listener->onTestMethodErred($this); $listener->onTestMethodErred($this);
} }
$failure = new ErredTest($e->getMessage(), $e);
} }
$result = $this->createTestResult($failure); $result = $this->createTestResult($failure);
@ -47,13 +49,13 @@
return $result; return $result;
} }
protected function createTestResult(TestFailure $failure = null) { protected function createTestResult(Exception $failure = null) {
if ($failure === null) { if ($failure === null) {
return new PassedTestResult($this); return new PassedTestResult($this);
} else if ($failure instanceof FailedTest) {
return new FailedTestResult($this, $failure);
} else if ($failure instanceof ErredTest) { } else if ($failure instanceof ErredTest) {
return new ErredTestResult($this, $failure); return new ErredTestResult($this, $failure);
} else if ($failure instanceof FailedTest) {
return new FailedTestResult($this, $failure);
} else if ($failure instanceof IgnoredTest) { } else if ($failure instanceof IgnoredTest) {
return new IgnoredTestResult($this, $failure); return new IgnoredTestResult($this, $failure);
} }

View File

@ -56,7 +56,7 @@
return rtrim($paramList, ', '); return rtrim($paramList, ', ');
} }
private static repairParameterName($name, $position) { private static function repairParameterName($name, $position) {
if (empty($name)) { if (empty($name)) {
$name = 'param' . $position; $name = 'param' . $position;
} }