The TestListener interface is deprecated. This replacement has the downside of using a public static property, but there seems to be no other way to pass extra data to the printer (BTW: the ResultPrinter class is internal, so it'd be even better if we could avoid subclassing it). Bug: T243600 Change-Id: I083146b7336ac09dfd077c8e6817553738282662
136 lines
3.1 KiB
PHP
136 lines
3.1 KiB
PHP
<?php
|
|
|
|
use PHPUnit\Framework\AssertionFailedError;
|
|
use PHPUnit\Framework\Test;
|
|
use PHPUnit\Framework\TestCase;
|
|
use PHPUnit\Framework\TestListener;
|
|
use PHPUnit\Framework\TestListenerDefaultImplementation;
|
|
use PHPUnit\Framework\TestSuite;
|
|
|
|
/**
|
|
* @todo Use TestHook interfaces. But there seems to be no replacement for start/endTestSuite!
|
|
*/
|
|
class MediaWikiPHPUnitTestListener implements TestListener {
|
|
use TestListenerDefaultImplementation;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $logChannel = 'PHPUnitCommand';
|
|
|
|
/**
|
|
* @param Test $test
|
|
* @return string
|
|
*/
|
|
protected function getTestName( Test $test ) : string {
|
|
$name = get_class( $test );
|
|
|
|
if ( $test instanceof TestCase ) {
|
|
$name .= '::' . $test->getName( true );
|
|
}
|
|
|
|
return $name;
|
|
}
|
|
|
|
protected function getErrorName( Throwable $exception ) : string {
|
|
$name = get_class( $exception );
|
|
$name = "[$name] " . $exception->getMessage();
|
|
|
|
return $name;
|
|
}
|
|
|
|
/**
|
|
* An error occurred.
|
|
*
|
|
* @param Test $test
|
|
* @param Throwable $e
|
|
* @param float $time
|
|
*/
|
|
public function addError( Test $test, Throwable $e, float $time ) : void {
|
|
wfDebugLog(
|
|
$this->logChannel,
|
|
'ERROR in ' . $this->getTestName( $test ) . ': ' . $this->getErrorName( $e )
|
|
);
|
|
}
|
|
|
|
/**
|
|
* A failure occurred.
|
|
*
|
|
* @param Test $test
|
|
* @param AssertionFailedError $e
|
|
* @param float $time
|
|
*/
|
|
public function addFailure( Test $test, AssertionFailedError $e, float $time ) : void {
|
|
wfDebugLog(
|
|
$this->logChannel,
|
|
'FAILURE in ' . $this->getTestName( $test ) . ': ' . $this->getErrorName( $e )
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Incomplete test.
|
|
*
|
|
* @param Test $test
|
|
* @param Throwable $t
|
|
* @param float $time
|
|
*/
|
|
public function addIncompleteTest( Test $test, Throwable $t, float $time ) : void {
|
|
wfDebugLog(
|
|
$this->logChannel,
|
|
'Incomplete test ' . $this->getTestName( $test ) . ': ' . $this->getErrorName( $t )
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Skipped test.
|
|
*
|
|
* @param Test $test
|
|
* @param Throwable $t
|
|
* @param float $time
|
|
*/
|
|
public function addSkippedTest( Test $test, Throwable $t, float $time ) : void {
|
|
wfDebugLog(
|
|
$this->logChannel,
|
|
'Skipped test ' . $this->getTestName( $test ) . ': ' . $this->getErrorName( $t )
|
|
);
|
|
}
|
|
|
|
/**
|
|
* A test suite started.
|
|
*
|
|
* @param TestSuite $suite
|
|
*/
|
|
public function startTestSuite( TestSuite $suite ) : void {
|
|
wfDebugLog( $this->logChannel, 'START suite ' . $suite->getName() );
|
|
}
|
|
|
|
/**
|
|
* A test suite ended.
|
|
*
|
|
* @param TestSuite $suite
|
|
*/
|
|
public function endTestSuite( TestSuite $suite ) : void {
|
|
wfDebugLog( $this->logChannel, 'END suite ' . $suite->getName() );
|
|
}
|
|
|
|
/**
|
|
* A test started.
|
|
*
|
|
* @param Test $test
|
|
*/
|
|
public function startTest( Test $test ) : void {
|
|
Hooks::runner()->onMediaWikiPHPUnitTest__startTest( $test );
|
|
wfDebugLog( $this->logChannel, 'Start test ' . $this->getTestName( $test ) );
|
|
}
|
|
|
|
/**
|
|
* A test ended.
|
|
*
|
|
* @param Test $test
|
|
* @param float $time
|
|
*/
|
|
public function endTest( Test $test, float $time ) : void {
|
|
Hooks::runner()->onMediaWikiPHPUnitTest__endTest( $test, $time );
|
|
wfDebugLog( $this->logChannel, 'End test ' . $this->getTestName( $test ) );
|
|
}
|
|
}
|