diff --git a/core/modules/simpletest/src/TestDiscovery.php b/core/modules/simpletest/src/TestDiscovery.php index 6a9407ebf303252314cc265ff488ebad94a46724..144580214839d0a1123f6e7da4a491b0d81f2392 100644 --- a/core/modules/simpletest/src/TestDiscovery.php +++ b/core/modules/simpletest/src/TestDiscovery.php @@ -312,7 +312,9 @@ public static function getTestInfo($classname, $doc_comment = NULL) { 'name' => $classname, ); $annotations = array(); - preg_match_all('/^ \* \@([^\s]*) (.*$)/m', $doc_comment, $matches); + // Look for annotations, allow an arbitrary amount of spaces before the + // * but nothing else. + preg_match_all('/^[ ]*\* \@([^\s]*) (.*$)/m', $doc_comment, $matches); if (isset($matches[1])) { foreach ($matches[1] as $key => $annotation) { if (!empty($annotations[$annotation])) { @@ -369,8 +371,10 @@ public static function parseTestClassSummary($doc_comment) { $lines = explode("\n", $doc_comment); $summary = []; + // Add every line to the summary until the first empty line or annotation + // is found. foreach ($lines as $line) { - if ($line == ' *' || preg_match('/^ \* \@/', $line)) { + if (preg_match('/^[ ]*\*$/', $line) || preg_match('/^[ ]*\* \@/', $line)) { break; } $summary[] = trim($line, ' *'); diff --git a/core/modules/simpletest/tests/src/Unit/TestInfoParsingTest.php b/core/modules/simpletest/tests/src/Unit/TestInfoParsingTest.php index 4df976f3e8f824a9961273a91da9ba433896f6da..6ac777e51da28d9ae9f62c973c59668c7898e06c 100644 --- a/core/modules/simpletest/tests/src/Unit/TestInfoParsingTest.php +++ b/core/modules/simpletest/tests/src/Unit/TestInfoParsingTest.php @@ -76,6 +76,45 @@ public function infoParserProvider() { ", ]; + // Test with a different amount of leading spaces. + $tests[] = [ + // Expected result. + [ + 'name' => 'Drupal\field\Tests\BulkDeleteTest', + 'group' => 'field', + 'description' => 'Bulk delete storages and fields, and clean up afterwards.', + ], + // Classname. + 'Drupal\field\Tests\BulkDeleteTest', + // Doc block. + "/** + * Bulk delete storages and fields, and clean up afterwards. + * + * @group field + */ + ", + ]; + + // Make sure that a "* @" inside a string does not get parsed as an + // annotation. + $tests[] = [ + // Expected result. + [ + 'name' => 'Drupal\field\Tests\BulkDeleteTest', + 'group' => 'field', + 'description' => 'Bulk delete storages and fields, and clean up afterwards. * @', + ], + // Classname. + 'Drupal\field\Tests\BulkDeleteTest', + // Doc block. + "/** + * Bulk delete storages and fields, and clean up afterwards. * @ + * + * @group field + */ + ", + ]; + // Multiple @group annotations. $tests[] = [ // Expected result.