3 * The tests here verify the structure of the code. This is for outright bugs,
4 * not just style issues.
7 class StructureTest
extends MediaWikiTestCase
{
9 * Verify all files that appear to be tests have file names ending in
10 * Test. If the file names do not end in Test, they will not be run.
13 public function testUnitTestFileNamesEndWithTest() {
14 if ( wfIsWindows() ) {
15 $this->markTestSkipped( 'This test does not work on Windows' );
17 $rootPath = escapeshellarg( __DIR__
. '/..' );
18 $testClassRegex = implode( '|', array(
22 'ApiQueryContinueTestBase',
23 'MediaWikiLangTestCase',
24 'MediaWikiMediaTestCase',
26 'ResourceLoaderTestCase',
27 'PHPUnit_Framework_TestCase',
30 $testClassRegex = "^class .* extends ($testClassRegex)";
31 $finder = "find $rootPath -name '*.php' '!' -name '*Test.php'" .
32 " | xargs grep -El '$testClassRegex|function suite\('";
36 exec( $finder, $results, $exitCode );
41 'Verify find/grep command succeeds.'
44 $results = array_filter(
46 array( $this, 'filterSuites' )
48 $strip = strlen( $rootPath ) - 1;
49 foreach ( $results as $k => $v ) {
50 $results[$k] = substr( $v, $strip );
55 "Unit test file in $rootPath must end with Test."
60 * Filter to remove testUnitTestFileNamesEndWithTest false positives.
61 * @param string $filename
64 public function filterSuites( $filename ) {
65 return strpos( $filename, __DIR__
. '/../suites/' ) !== 0;