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',
25 'PHPUnit_Framework_TestCase',
28 $testClassRegex = "^class .* extends ($testClassRegex)";
29 $finder = "find $rootPath -name '*.php' '!' -name '*Test.php'" .
30 " | xargs grep -El '$testClassRegex|function suite\('";
34 exec( $finder, $results, $exitCode );
39 'Verify find/grep command succeeds.'
42 $results = array_filter(
44 array( $this, 'filterSuites' )
46 $strip = strlen( $rootPath ) - 1;
47 foreach ( $results as $k => $v ) {
48 $results[$k] = substr( $v, $strip );
53 "Unit test file in $rootPath must end with Test."
58 * Filter to remove testUnitTestFileNamesEndWithTest false positives.
60 public function filterSuites( $filename ) {
61 return strpos( $filename, __DIR__
. '/../suites/' ) !== 0;