result publishing: mostly done
This commit is contained in:
parent
035a5da679
commit
98b11c6870
@ -49,10 +49,10 @@
|
|||||||
public function afterTestSuite(TestSuite $suite) {
|
public function afterTestSuite(TestSuite $suite) {
|
||||||
switch ($this->verbosity) {
|
switch ($this->verbosity) {
|
||||||
case self::VERBOSITY_HIGH:
|
case self::VERBOSITY_HIGH:
|
||||||
|
case self::VERBOSITY_MEDIUM:
|
||||||
$this->out("\n");
|
$this->out("\n");
|
||||||
break;
|
break;
|
||||||
case self::VERBOSITY_LOW:
|
case self::VERBOSITY_LOW:
|
||||||
case self::VERBOSITY_MEDIUM:
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -195,6 +195,19 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function publishTestResult(TestResult $result) {
|
||||||
|
$failure = $result->getFailure();
|
||||||
|
if ($failure instanceof TestFailure) {
|
||||||
|
$this->out("\n");
|
||||||
|
$this->out("----------- FAILURE -----------\n");
|
||||||
|
$this->out($result->getTest()->getName() . "\n\n");
|
||||||
|
$this->out($failure->getMessage());
|
||||||
|
$this->out("\n\nStack trace:\n");
|
||||||
|
$this->out($failure->getStackTrace());
|
||||||
|
$this->out("\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
@ -24,11 +24,18 @@
|
|||||||
$this->testResults[] = $result;
|
$this->testResults[] = $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getAllTestResults() {
|
public function getTestResults() {
|
||||||
//use a recursive iterator here...
|
|
||||||
return $this->testResults;
|
return $this->testResults;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getAllTestResults() {
|
||||||
|
$tests = array();
|
||||||
|
foreach (new RecursiveIteratorIterator(new RecursiveTestIterator($this->testResults)) as $test) {
|
||||||
|
$tests[] = $test;
|
||||||
|
}
|
||||||
|
return $tests;
|
||||||
|
}
|
||||||
|
|
||||||
public function getPassedTestResults() {
|
public function getPassedTestResults() {
|
||||||
//use a recursive iterator here...
|
//use a recursive iterator here...
|
||||||
$passedTests = array();
|
$passedTests = array();
|
||||||
|
@ -1,8 +1,50 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
class TestFailure extends Exception {}
|
class TestFailure extends Exception {
|
||||||
class ErredTest extends FailedTest {}
|
|
||||||
class IgnoredTest extends FailedTest {}
|
public function getStackTrace() {
|
||||||
|
$trace = $this->getTrace();
|
||||||
|
$count = 1;
|
||||||
|
$stackTrace = array();
|
||||||
|
foreach (array_slice($trace, 2) as $i => $frame) {
|
||||||
|
$line = '[' . ($i + 1) . '] ';
|
||||||
|
if (isset($frame['file'], $frame['line'])) {
|
||||||
|
if ($frame['file'] === dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'test' . DIRECTORY_SEPARATOR . 'TestMethod.php') {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
$line .= $frame['file'] . ' (' . $frame['line'] . ') ';
|
||||||
|
} else {
|
||||||
|
$line .= '<internal function> ';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isset($frame['class']) || isset($frame['function'])) {
|
||||||
|
if (isset($frame['class'], $frame['type'], $frame['function']) && !empty($frame['type'])) {
|
||||||
|
$line .= $frame['class'] . $frame['type'] . $frame['function'] . '(';
|
||||||
|
} else {
|
||||||
|
$line .= $frame['function'] . '(';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isset($frame['args']) && !empty($frame['args'])) {
|
||||||
|
$line .= implode(', ', array_map('TestFailure::transformArgs', $frame['args']));
|
||||||
|
}
|
||||||
|
|
||||||
|
$line .= ')';
|
||||||
|
}
|
||||||
|
|
||||||
|
$stackTrace[] = $line;
|
||||||
|
}
|
||||||
|
|
||||||
|
return implode("\n", $stackTrace);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected static function transformArgs($value) {
|
||||||
|
return Util::export($value);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
class FailedTest extends TestFailure {}
|
class FailedTest extends TestFailure {}
|
||||||
|
class ErredTest extends FailedTest {}
|
||||||
|
class IgnoredTest extends TestFailure {}
|
||||||
|
|
||||||
?>
|
?>
|
@ -1,12 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
class PassedTestResult implements TestResult {
|
class PassedTestResult extends SingleTestResult {
|
||||||
|
|
||||||
protected $test;
|
|
||||||
|
|
||||||
public function __construct(Testable $test) {
|
|
||||||
$this->test = $test;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function passed() {
|
public function passed() {
|
||||||
return true;
|
return true;
|
||||||
@ -16,10 +10,6 @@
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function count() {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
@ -5,11 +5,19 @@
|
|||||||
protected $test;
|
protected $test;
|
||||||
protected $failure;
|
protected $failure;
|
||||||
|
|
||||||
public function __construct(Testable $test, TestFailure $failure) {
|
public function __construct(Testable $test, TestFailure $failure = null) {
|
||||||
$this->test = $test;
|
$this->test = $test;
|
||||||
$this->failure = $failure;
|
$this->failure = $failure;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getTest() {
|
||||||
|
return $this->test;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getFailure() {
|
||||||
|
return $this->failure;
|
||||||
|
}
|
||||||
|
|
||||||
public function count() {
|
public function count() {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -8,6 +8,10 @@
|
|||||||
$this->name = $name;
|
$this->name = $name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getName() {
|
||||||
|
return $this->name;
|
||||||
|
}
|
||||||
|
|
||||||
public function setUp() {
|
public function setUp() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,10 @@
|
|||||||
$this->method = $method;
|
$this->method = $method;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getName() {
|
||||||
|
return $this->method->getDeclaringClass()->getName() . '::' . $this->method->getName();
|
||||||
|
}
|
||||||
|
|
||||||
public function run(array $listeners) {
|
public function run(array $listeners) {
|
||||||
foreach ($listeners as $listener) {
|
foreach ($listeners as $listener) {
|
||||||
$listener->beforeTestMethod($this);
|
$listener->beforeTestMethod($this);
|
||||||
|
@ -10,6 +10,10 @@
|
|||||||
$this->tests = $tests;
|
$this->tests = $tests;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getName() {
|
||||||
|
return $this->name;
|
||||||
|
}
|
||||||
|
|
||||||
protected function setUp() {
|
protected function setUp() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,8 @@
|
|||||||
|
|
||||||
public function run(array $listeners);
|
public function run(array $listeners);
|
||||||
|
|
||||||
|
public function getName();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
@ -3,7 +3,7 @@
|
|||||||
/**
|
/**
|
||||||
* Autoload manifest
|
* Autoload manifest
|
||||||
*
|
*
|
||||||
* Autogenerated by manifester.php on 2009-06-13 15:40:20
|
* Autogenerated by manifester.php on 2009-06-13 15:51:52
|
||||||
*
|
*
|
||||||
* @package TUnit
|
* @package TUnit
|
||||||
* @version 0.1.0
|
* @version 0.1.0
|
||||||
@ -11,33 +11,34 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
'Assert' => 'TUnit/framework/Assert.php',
|
'Assert' => 'TUnit/framework/Assert.php',
|
||||||
'Autoloader' => 'TUnit/util/Autoloader.php',
|
'Autoloader' => 'TUnit/util/Autoloader.php',
|
||||||
'Cli' => 'TUnit/util/cli.php',
|
'Cli' => 'TUnit/util/cli.php',
|
||||||
'CliSwitch' => 'TUnit/util/cli.php',
|
'CliSwitch' => 'TUnit/util/cli.php',
|
||||||
'CliSwitchCollection' => 'TUnit/util/cli.php',
|
'CliSwitchCollection' => 'TUnit/util/cli.php',
|
||||||
'CombinedTestResult' => 'TUnit/framework/result/CombinedTestResult.php',
|
'CombinedTestResult' => 'TUnit/framework/result/CombinedTestResult.php',
|
||||||
'ConsoleListener' => 'TUnit/framework/listeners/ConsoleListener.php',
|
'ConsoleListener' => 'TUnit/framework/listeners/ConsoleListener.php',
|
||||||
'Constraint' => 'TUnit/framework/constraints/Constraint.php',
|
'Constraint' => 'TUnit/framework/constraints/Constraint.php',
|
||||||
'EqualsConstraint' => 'TUnit/framework/constraints/EqualsConstraint.php',
|
'EqualsConstraint' => 'TUnit/framework/constraints/EqualsConstraint.php',
|
||||||
'ErredTest' => 'TUnit/framework/result/FailedTest.php',
|
'ErredTest' => 'TUnit/framework/result/FailedTest.php',
|
||||||
'ErredTestResult' => 'TUnit/framework/result/ErredTestResult.php',
|
'ErredTestResult' => 'TUnit/framework/result/ErredTestResult.php',
|
||||||
'FailedTest' => 'TUnit/framework/result/FailedTest.php',
|
'FailedTest' => 'TUnit/framework/result/FailedTest.php',
|
||||||
'FailedTestResult' => 'TUnit/framework/result/FailedTestResult.php',
|
'FailedTestResult' => 'TUnit/framework/result/FailedTestResult.php',
|
||||||
'IgnoredTest' => 'TUnit/framework/result/FailedTest.php',
|
'IgnoredTest' => 'TUnit/framework/result/FailedTest.php',
|
||||||
'IgnoredTestResult' => 'TUnit/framework/result/IgnoredTestResult.php',
|
'IgnoredTestResult' => 'TUnit/framework/result/IgnoredTestResult.php',
|
||||||
'PassedTestResult' => 'TUnit/framework/result/PassedTestResult.php',
|
'PassedTestResult' => 'TUnit/framework/result/PassedTestResult.php',
|
||||||
'SingleTestResult' => 'TUnit/framework/result/SingleTestResult.php',
|
'RecursiveTestIterator' => 'TUnit/util/RecursiveTestIterator.php',
|
||||||
'TestCase' => 'TUnit/framework/test/TestCase.php',
|
'SingleTestResult' => 'TUnit/framework/result/SingleTestResult.php',
|
||||||
'TestFailure' => 'TUnit/framework/result/FailedTest.php',
|
'TestCase' => 'TUnit/framework/test/TestCase.php',
|
||||||
'TestListener' => 'TUnit/framework/listeners/TestListener.php',
|
'TestFailure' => 'TUnit/framework/result/FailedTest.php',
|
||||||
'TestMethod' => 'TUnit/framework/test/TestMethod.php',
|
'TestListener' => 'TUnit/framework/listeners/TestListener.php',
|
||||||
'TestResult' => 'TUnit/framework/result/TestResult.php',
|
'TestMethod' => 'TUnit/framework/test/TestMethod.php',
|
||||||
'TestRunner' => 'TUnit/framework/TestRunner.php',
|
'TestResult' => 'TUnit/framework/result/TestResult.php',
|
||||||
'TestSuite' => 'TUnit/framework/test/TestSuite.php',
|
'TestRunner' => 'TUnit/framework/TestRunner.php',
|
||||||
'Testable' => 'TUnit/framework/test/Testable.php',
|
'TestSuite' => 'TUnit/framework/test/TestSuite.php',
|
||||||
'Usage' => 'TUnit/util/cli.php',
|
'Testable' => 'TUnit/framework/test/Testable.php',
|
||||||
'Util' => 'TUnit/util/Util.php'
|
'Usage' => 'TUnit/util/cli.php',
|
||||||
|
'Util' => 'TUnit/util/Util.php'
|
||||||
);
|
);
|
||||||
|
|
||||||
?>
|
?>
|
15
src/TUnit/util/RecursiveTestIterator.php
Normal file
15
src/TUnit/util/RecursiveTestIterator.php
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
class RecursiveTestIterator extends ArrayIterator implements RecursiveIterator {
|
||||||
|
|
||||||
|
public function getChildren() {
|
||||||
|
return new self($this->current()->getTestResults());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function hasChildren() {
|
||||||
|
return $this->current() instanceof CombinedTestResult;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
@ -9,11 +9,11 @@
|
|||||||
case 'object':
|
case 'object':
|
||||||
return get_class($var);
|
return get_class($var);
|
||||||
case 'string':
|
case 'string':
|
||||||
if (strlen($var) > 47) {
|
if (strlen($var) > 20) {
|
||||||
return substr($var, 0, 20) . '...' . substr($var, floor(strlen($var) / 2) - 3, 7) . '...' . substr($var, -20);
|
return '"' . substr($var, 0, 10) . '...' . substr($var, -10) . '"';
|
||||||
}
|
}
|
||||||
|
|
||||||
return $var;
|
return '"' . $var . '"';
|
||||||
case 'double':
|
case 'double':
|
||||||
case 'null':
|
case 'null':
|
||||||
case 'boolean':
|
case 'boolean':
|
||||||
@ -21,6 +21,8 @@
|
|||||||
return var_export($var, true);
|
return var_export($var, true);
|
||||||
case 'resource':
|
case 'resource':
|
||||||
return 'resource of type ' . get_resource_type($var);
|
return 'resource of type ' . get_resource_type($var);
|
||||||
|
case 'array':
|
||||||
|
return 'array(' . count($var) . ')';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user