Merge "(bug 42466) Allow djvutxt to use more memory"
[lhc/web/wiklou.git] / tests / phpunit / StructureTest.php
1 <?php
2 /**
3 * The tests here verify the structure of the code. This is for outright bugs,
4 * not just style issues.
5 */
6
7 class StructureTest extends MediaWikiTestCase {
8 /**
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.
11 */
12 public function testUnitTestFileNamesEndWithTest() {
13 if ( wfIsWindows() ) {
14 $this->markTestSkipped( 'This test does not work on Windows' );
15 }
16 $rootPath = escapeshellarg( __DIR__ );
17 $testClassRegex = implode( '|', array(
18 'ApiFormatTestBase',
19 'ApiTestCase',
20 'MediaWikiLangTestCase',
21 'MediaWikiTestCase',
22 'PHPUnit_Framework_TestCase',
23 'DumpTestCase',
24 ) );
25 $testClassRegex = "^class .* extends ($testClassRegex)";
26 $finder = "find $rootPath -name '*.php' '!' -name '*Test.php'" .
27 " | xargs grep -El '$testClassRegex|function suite\('";
28
29 $results = null;
30 $exitCode = null;
31 exec($finder, $results, $exitCode);
32
33 $this->assertEquals(
34 0,
35 $exitCode,
36 'Verify find/grep command succeeds.'
37 );
38
39 $results = array_filter(
40 $results,
41 array( $this, 'filterSuites' )
42 );
43 $strip = strlen( $rootPath ) - 1;
44 foreach( $results as $k => $v) {
45 $results[$k] = substr( $v, $strip );
46 }
47 $this->assertEquals(
48 array(),
49 $results,
50 "Unit test file in $rootPath must end with Test."
51 );
52 }
53
54 /**
55 * Filter to remove testUnitTestFileNamesEndWithTest false positives.
56 */
57 public function filterSuites( $filename ) {
58 return strpos( $filename, __DIR__ . '/suites/' ) !== 0;
59 }
60 }