
| Current Path : /var/www/html/holz-machines/web/core/tests/Drupal/Tests/Core/Test/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/holz-machines/web/core/tests/Drupal/Tests/Core/Test/PhpUnitTestRunnerTest.php |
<?php
namespace Drupal\Tests\Core\Test;
use Drupal\Core\Test\PhpUnitTestRunner;
use Drupal\Core\Test\TestStatus;
use Drupal\Tests\UnitTestCase;
/**
* @coversDefaultClass \Drupal\Core\Test\PhpUnitTestRunner
* @group Test
*
* @see Drupal\Tests\simpletest\Unit\SimpletestPhpunitRunCommandTest
*/
class PhpUnitTestRunnerTest extends UnitTestCase {
/**
* Tests an error in the test running phase.
*
* @covers ::runTests
*/
public function testRunTestsError() {
$test_id = 23;
$log_path = 'test_log_path';
// Create a mock runner.
$runner = $this->getMockBuilder(PhpUnitTestRunner::class)
->disableOriginalConstructor()
->onlyMethods(['xmlLogFilepath', 'runCommand'])
->getMock();
// Set some expectations for xmlLogFilepath().
$runner->expects($this->once())
->method('xmlLogFilepath')
->willReturn($log_path);
// We mark a failure by having runCommand() deliver a serious status code.
$runner->expects($this->once())
->method('runCommand')
->willReturnCallback(
function ($unescaped_test_classnames, $phpunit_file, &$status) {
$status = TestStatus::EXCEPTION;
}
);
// The runTests() method expects $status by reference, so we initialize it
// to some value we don't expect back.
$status = -1;
$results = $runner->runTests($test_id, ['SomeTest'], $status);
// Make sure our status code made the round trip.
$this->assertEquals(TestStatus::EXCEPTION, $status);
// A serious error in runCommand() should give us a fixed set of results.
$row = reset($results);
$fail_row = [
'test_id' => $test_id,
'test_class' => 'SomeTest',
'status' => TestStatus::label(TestStatus::EXCEPTION),
'message' => 'PHPUnit Test failed to complete; Error: ',
'message_group' => 'Other',
'function' => 'SomeTest',
'line' => '0',
'file' => $log_path,
];
$this->assertEquals($fail_row, $row);
}
/**
* @covers ::phpUnitCommand
*/
public function testPhpUnitCommand() {
$runner = new PhpUnitTestRunner($this->root, sys_get_temp_dir());
$this->assertMatchesRegularExpression('/phpunit/', $runner->phpUnitCommand());
}
/**
* @covers ::xmlLogFilePath
*/
public function testXmlLogFilePath() {
$runner = new PhpUnitTestRunner($this->root, sys_get_temp_dir());
$this->assertStringEndsWith('phpunit-23.xml', $runner->xmlLogFilePath(23));
}
public function providerTestSummarizeResults() {
return [
[
[
[
'test_class' => static::class,
'status' => 'pass',
],
],
'#pass',
],
[
[
[
'test_class' => static::class,
'status' => 'fail',
],
],
'#fail',
],
[
[
[
'test_class' => static::class,
'status' => 'exception',
],
],
'#exception',
],
[
[
[
'test_class' => static::class,
'status' => 'debug',
],
],
'#debug',
],
];
}
/**
* @dataProvider providerTestSummarizeResults
* @covers ::summarizeResults
*/
public function testSummarizeResults($results, $has_status) {
$runner = new PhpUnitTestRunner($this->root, sys_get_temp_dir());
$summary = $runner->summarizeResults($results);
$this->assertArrayHasKey(static::class, $summary);
$this->assertEquals(1, $summary[static::class][$has_status]);
foreach (array_diff(['#pass', '#fail', '#exception', '#debug'], [$has_status]) as $should_be_zero) {
$this->assertSame(0, $summary[static::class][$should_be_zero]);
}
}
}