wiki.techinc.nl/tests/phpunit/suites/ExtensionsTestSuite.php
addshore 959bc315f2 MediaWikiTestCase to MediaWikiIntegrationTestCase
The name change happened some time ago, and I think its
about time to start using the name name!
(Done with a find and replace)

My personal motivation for doing this is that I have started
trying out vscode as an IDE for mediawiki development, and
right now it doesn't appear to handle php aliases very well
or at all.

Change-Id: I412235d91ae26e4c1c6a62e0dbb7e7cf3c5ed4a6
2020-06-30 17:02:22 +01:00

58 lines
1.6 KiB
PHP

<?php
use PHPUnit\Framework\TestSuite;
use SebastianBergmann\FileIterator\Facade;
/**
* This test suite runs unit tests registered by extensions.
* See https://www.mediawiki.org/wiki/Manual:Hooks/UnitTestsList for details of
* how to register your tests.
*/
class ExtensionsTestSuite extends TestSuite {
public function __construct() {
parent::__construct();
$paths = [];
// Autodiscover extension unit tests
$registry = ExtensionRegistry::getInstance();
foreach ( $registry->getAllThings() as $info ) {
$paths[] = dirname( $info['path'] ) . '/tests/phpunit';
}
// Extensions can return a list of files or directories
Hooks::runner()->onUnitTestsList( $paths );
foreach ( array_unique( $paths ) as $path ) {
if ( is_dir( $path ) ) {
// If the path is a directory, search for test cases.
// @since 1.24
$suffixes = [ 'Test.php' ];
$fileIterator = new Facade();
$matchingFiles = $fileIterator->getFilesAsArray( $path, $suffixes );
$this->addTestFiles( $matchingFiles );
} elseif ( file_exists( $path ) ) {
// Add a single test case or suite class
$this->addTestFile( $path );
}
}
if ( !$paths ) {
$this->addTest( new DummyExtensionsTest( 'testNothing' ) );
}
}
public static function suite() {
return new self;
}
}
/**
* Needed to avoid warnings like 'No tests found in class "ExtensionsTestSuite".'
* when no extensions with tests are used.
*/
class DummyExtensionsTest extends MediaWikiIntegrationTestCase {
/**
* @coversNothing
*/
public function testNothing() {
$this->assertTrue( true );
}
}