Merge "Check validity and availability of usernames during signup via AJAX"
[lhc/web/wiklou.git] / tests / phpunit / structure / 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 * @group medium
12 */
13 public function testUnitTestFileNamesEndWithTest() {
14 if ( wfIsWindows() ) {
15 $this->markTestSkipped( 'This test does not work on Windows' );
16 }
17 $rootPath = escapeshellarg( __DIR__ . '/..' );
18 $testClassRegex = implode( '|', array(
19 'ApiFormatTestBase',
20 'ApiTestCase',
21 'ApiQueryTestBase',
22 'ApiQueryContinueTestBase',
23 'MediaWikiLangTestCase',
24 'MediaWikiTestCase',
25 'ResourceLoaderTestCase',
26 'PHPUnit_Framework_TestCase',
27 'DumpTestCase',
28 ) );
29 $testClassRegex = "^class .* extends ($testClassRegex)";
30 $finder = "find $rootPath -name '*.php' '!' -name '*Test.php'" .
31 " | xargs grep -El '$testClassRegex|function suite\('";
32
33 $results = null;
34 $exitCode = null;
35 exec( $finder, $results, $exitCode );
36
37 $this->assertEquals(
38 0,
39 $exitCode,
40 'Verify find/grep command succeeds.'
41 );
42
43 $results = array_filter(
44 $results,
45 array( $this, 'filterSuites' )
46 );
47 $strip = strlen( $rootPath ) - 1;
48 foreach ( $results as $k => $v ) {
49 $results[$k] = substr( $v, $strip );
50 }
51 $this->assertEquals(
52 array(),
53 $results,
54 "Unit test file in $rootPath must end with Test."
55 );
56 }
57
58 /**
59 * Filter to remove testUnitTestFileNamesEndWithTest false positives.
60 */
61 public function filterSuites( $filename ) {
62 return strpos( $filename, __DIR__ . '/../suites/' ) !== 0;
63 }
64 }