105 lines
2.6 KiB
PHP
105 lines
2.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* The tests here verify that phpunit/suite.xml covers all of the tests under /tests/phpunit
|
|
* @group medium
|
|
*/
|
|
class SuiteDirectoryTest extends PHPUnit\Framework\TestCase {
|
|
|
|
public function testSuiteXmlDirectories() {
|
|
// realpath() also normalizes directory separator on windows for prefix compares
|
|
$rootPath = realpath( __DIR__ . '/..' );
|
|
|
|
$dom = new DOMDocument();
|
|
$dom->load( "$rootPath/suite.xml" );
|
|
/** @var DOMElement $suites */
|
|
$suites = $dom->documentElement->getElementsByTagName( 'testsuites' )[0];
|
|
|
|
$suiteInfos = [];
|
|
/** @var DOMElement $suite */
|
|
foreach ( $suites->getElementsByTagName( 'testsuite' ) as $suite ) {
|
|
$generalDirs = [];
|
|
foreach ( $suite->getElementsByTagName( 'directory' ) as $dirNode ) {
|
|
$generalDirs[] = $dirNode->textContent;
|
|
}
|
|
$excludedDirs = [];
|
|
foreach ( $suite->getElementsByTagName( 'exclude' ) as $dirNode ) {
|
|
$excludedDirs[] = $dirNode->textContent;
|
|
}
|
|
$suiteInfos[$suite->getAttribute( 'name' )] = [ $generalDirs, $excludedDirs ];
|
|
}
|
|
|
|
$directoriesFound = scandir( $rootPath, SCANDIR_SORT_ASCENDING );
|
|
if ( !$directoriesFound ) {
|
|
$this->fail( "Could not scan '$rootPath' directory" );
|
|
}
|
|
|
|
$directoriesNeeded = array_values( array_diff(
|
|
array_filter(
|
|
$directoriesFound,
|
|
static function ( $name ) use ( $rootPath ) {
|
|
return (
|
|
$name !== '.' &&
|
|
$name !== '..' &&
|
|
is_dir( "$rootPath/$name" )
|
|
);
|
|
}
|
|
),
|
|
[
|
|
'data',
|
|
'docs',
|
|
'documentation',
|
|
'mocks',
|
|
'suites' // custom suite entry points load their own files
|
|
]
|
|
) );
|
|
|
|
$directoriesIncluded = [];
|
|
foreach ( $directoriesNeeded as $directory ) {
|
|
if ( $this->isDirectoryIncluded( $directory, $suiteInfos ) ) {
|
|
$directoriesIncluded[] = $directory;
|
|
}
|
|
}
|
|
|
|
$this->assertSame(
|
|
$directoriesNeeded,
|
|
$directoriesIncluded,
|
|
"All suites included"
|
|
);
|
|
}
|
|
|
|
private function isDirectoryIncluded( $dir, array $suiteInfos ) {
|
|
foreach ( $suiteInfos as list( $generalDirs, $excludedDirs ) ) {
|
|
$found = false;
|
|
foreach ( $generalDirs as $generalDir ) {
|
|
if ( $this->isSameOrChildOfDirectory( $dir, $generalDir ) ) {
|
|
$found = true;
|
|
break;
|
|
}
|
|
}
|
|
foreach ( $excludedDirs as $excludedDir ) {
|
|
if ( $this->isSameOrChildOfDirectory( $dir, $excludedDir ) ) {
|
|
$found = false;
|
|
break;
|
|
}
|
|
}
|
|
if ( $found ) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
private function isSameOrChildOfDirectory( $dirA, $dirB ) {
|
|
if ( $dirA === $dirB ) {
|
|
return true;
|
|
}
|
|
|
|
if ( strpos( "$dirB/", $dirA ) === 0 ) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|