View source
<?php
class PHPUnit_Util_Log_JUnit extends PHPUnit_Util_Printer implements PHPUnit_Framework_TestListener {
protected $document;
protected $root;
protected $logIncompleteSkipped = false;
protected $writeDocument = true;
protected $testSuites = array();
protected $testSuiteTests = array(
0,
);
protected $testSuiteAssertions = array(
0,
);
protected $testSuiteErrors = array(
0,
);
protected $testSuiteFailures = array(
0,
);
protected $testSuiteTimes = array(
0,
);
protected $testSuiteLevel = 0;
protected $currentTestCase = null;
protected $attachCurrentTestCase = true;
public function __construct($out = null, $logIncompleteSkipped = false) {
$this->document = new DOMDocument('1.0', 'UTF-8');
$this->document->formatOutput = true;
$this->root = $this->document
->createElement('testsuites');
$this->document
->appendChild($this->root);
parent::__construct($out);
$this->logIncompleteSkipped = $logIncompleteSkipped;
}
public function flush() {
if ($this->writeDocument === true) {
$this
->write($this
->getXML());
}
parent::flush();
}
public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) {
if ($this->currentTestCase === null) {
return;
}
if ($test instanceof PHPUnit_Framework_SelfDescribing) {
$buffer = $test
->toString() . "\n";
}
else {
$buffer = '';
}
$buffer .= PHPUnit_Framework_TestFailure::exceptionToString($e) . "\n" . PHPUnit_Util_Filter::getFilteredStacktrace($e);
$error = $this->document
->createElement('error', PHPUnit_Util_XML::prepareString($buffer));
$error
->setAttribute('type', get_class($e));
$this->currentTestCase
->appendChild($error);
$this->testSuiteErrors[$this->testSuiteLevel]++;
}
public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) {
if ($this->currentTestCase === null) {
return;
}
if ($test instanceof PHPUnit_Framework_SelfDescribing) {
$buffer = $test
->toString() . "\n";
}
else {
$buffer = '';
}
$buffer .= PHPUnit_Framework_TestFailure::exceptionToString($e) . "\n" . PHPUnit_Util_Filter::getFilteredStacktrace($e);
$failure = $this->document
->createElement('failure', PHPUnit_Util_XML::prepareString($buffer));
$failure
->setAttribute('type', get_class($e));
$this->currentTestCase
->appendChild($failure);
$this->testSuiteFailures[$this->testSuiteLevel]++;
}
public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
if ($this->logIncompleteSkipped && $this->currentTestCase !== null) {
$error = $this->document
->createElement('error', PHPUnit_Util_XML::prepareString("Incomplete Test\n" . PHPUnit_Util_Filter::getFilteredStacktrace($e)));
$error
->setAttribute('type', get_class($e));
$this->currentTestCase
->appendChild($error);
$this->testSuiteErrors[$this->testSuiteLevel]++;
}
else {
$this->attachCurrentTestCase = false;
}
}
public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
if ($this->logIncompleteSkipped && $this->currentTestCase !== null) {
$error = $this->document
->createElement('error', PHPUnit_Util_XML::prepareString("Risky Test\n" . PHPUnit_Util_Filter::getFilteredStacktrace($e)));
$error
->setAttribute('type', get_class($e));
$this->currentTestCase
->appendChild($error);
$this->testSuiteErrors[$this->testSuiteLevel]++;
}
else {
$this->attachCurrentTestCase = false;
}
}
public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
if ($this->logIncompleteSkipped && $this->currentTestCase !== null) {
$error = $this->document
->createElement('error', PHPUnit_Util_XML::prepareString("Skipped Test\n" . PHPUnit_Util_Filter::getFilteredStacktrace($e)));
$error
->setAttribute('type', get_class($e));
$this->currentTestCase
->appendChild($error);
$this->testSuiteErrors[$this->testSuiteLevel]++;
}
else {
$this->attachCurrentTestCase = false;
}
}
public function startTestSuite(PHPUnit_Framework_TestSuite $suite) {
$testSuite = $this->document
->createElement('testsuite');
$testSuite
->setAttribute('name', $suite
->getName());
if (class_exists($suite
->getName(), false)) {
try {
$class = new ReflectionClass($suite
->getName());
$testSuite
->setAttribute('file', $class
->getFileName());
} catch (ReflectionException $e) {
}
}
if ($this->testSuiteLevel > 0) {
$this->testSuites[$this->testSuiteLevel]
->appendChild($testSuite);
}
else {
$this->root
->appendChild($testSuite);
}
$this->testSuiteLevel++;
$this->testSuites[$this->testSuiteLevel] = $testSuite;
$this->testSuiteTests[$this->testSuiteLevel] = 0;
$this->testSuiteAssertions[$this->testSuiteLevel] = 0;
$this->testSuiteErrors[$this->testSuiteLevel] = 0;
$this->testSuiteFailures[$this->testSuiteLevel] = 0;
$this->testSuiteTimes[$this->testSuiteLevel] = 0;
}
public function endTestSuite(PHPUnit_Framework_TestSuite $suite) {
$this->testSuites[$this->testSuiteLevel]
->setAttribute('tests', $this->testSuiteTests[$this->testSuiteLevel]);
$this->testSuites[$this->testSuiteLevel]
->setAttribute('assertions', $this->testSuiteAssertions[$this->testSuiteLevel]);
$this->testSuites[$this->testSuiteLevel]
->setAttribute('failures', $this->testSuiteFailures[$this->testSuiteLevel]);
$this->testSuites[$this->testSuiteLevel]
->setAttribute('errors', $this->testSuiteErrors[$this->testSuiteLevel]);
$this->testSuites[$this->testSuiteLevel]
->setAttribute('time', sprintf('%F', $this->testSuiteTimes[$this->testSuiteLevel]));
if ($this->testSuiteLevel > 1) {
$this->testSuiteTests[$this->testSuiteLevel - 1] += $this->testSuiteTests[$this->testSuiteLevel];
$this->testSuiteAssertions[$this->testSuiteLevel - 1] += $this->testSuiteAssertions[$this->testSuiteLevel];
$this->testSuiteErrors[$this->testSuiteLevel - 1] += $this->testSuiteErrors[$this->testSuiteLevel];
$this->testSuiteFailures[$this->testSuiteLevel - 1] += $this->testSuiteFailures[$this->testSuiteLevel];
$this->testSuiteTimes[$this->testSuiteLevel - 1] += $this->testSuiteTimes[$this->testSuiteLevel];
}
$this->testSuiteLevel--;
}
public function startTest(PHPUnit_Framework_Test $test) {
$testCase = $this->document
->createElement('testcase');
$testCase
->setAttribute('name', $test
->getName());
if ($test instanceof PHPUnit_Framework_TestCase) {
$class = new ReflectionClass($test);
$methodName = $test
->getName();
if ($class
->hasMethod($methodName)) {
$method = $class
->getMethod($test
->getName());
$testCase
->setAttribute('class', $class
->getName());
$testCase
->setAttribute('file', $class
->getFileName());
$testCase
->setAttribute('line', $method
->getStartLine());
}
}
$this->currentTestCase = $testCase;
}
public function endTest(PHPUnit_Framework_Test $test, $time) {
if ($this->attachCurrentTestCase) {
if ($test instanceof PHPUnit_Framework_TestCase) {
$numAssertions = $test
->getNumAssertions();
$this->testSuiteAssertions[$this->testSuiteLevel] += $numAssertions;
$this->currentTestCase
->setAttribute('assertions', $numAssertions);
}
$this->currentTestCase
->setAttribute('time', sprintf('%F', $time));
$this->testSuites[$this->testSuiteLevel]
->appendChild($this->currentTestCase);
$this->testSuiteTests[$this->testSuiteLevel]++;
$this->testSuiteTimes[$this->testSuiteLevel] += $time;
if (method_exists($test, 'hasOutput') && $test
->hasOutput()) {
$systemOut = $this->document
->createElement('system-out');
$systemOut
->appendChild($this->document
->createTextNode($test
->getActualOutput()));
$this->currentTestCase
->appendChild($systemOut);
}
}
$this->attachCurrentTestCase = true;
$this->currentTestCase = null;
}
public function getXML() {
return $this->document
->saveXML();
}
public function setWriteDocument($flag) {
if (is_bool($flag)) {
$this->writeDocument = $flag;
}
}
}