* Dariusz RumiƄski * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace PhpCsFixer\Tests\AutoReview; use PhpCsFixer\Documentation\DocumentationLocator; use PhpCsFixer\Documentation\FixerDocumentGenerator; use PhpCsFixer\Documentation\ListDocumentGenerator; use PhpCsFixer\Documentation\RuleSetDocumentationGenerator; use PhpCsFixer\Fixer\FixerInterface; use PhpCsFixer\FixerFactory; use PhpCsFixer\RuleSet\RuleSets; use PHPUnit\Framework\TestCase; use Symfony\Component\Finder\Finder; /** * @internal * * @covers \PhpCsFixer\Documentation\DocumentationLocator * @covers \PhpCsFixer\Documentation\FixerDocumentGenerator * @covers \PhpCsFixer\Documentation\ListDocumentGenerator * @covers \PhpCsFixer\Documentation\RstUtils * @covers \PhpCsFixer\Documentation\RuleSetDocumentationGenerator * * @group auto-review */ final class DocumentationTest extends TestCase { /** * @dataProvider provideFixerDocumentationFileIsUpToDateCases */ public function testFixerDocumentationFileIsUpToDate(FixerInterface $fixer): void { $locator = new DocumentationLocator(); $generator = new FixerDocumentGenerator($locator); $path = $locator->getFixerDocumentationFilePath($fixer); self::assertFileExists($path); $expected = $generator->generateFixerDocumentation($fixer); $actual = file_get_contents($path); $expected = preg_replace_callback( '/ # an example (? Example\ \#\d\n ~+\n \n (?:\*Default\*\ configuration\.\n\n)? (?:With\ configuration:.*?\n\n)? ) # with a diff that could not be generated \.\.\ error::\n \ \ \ Cannot\ generate\ diff\ for\ code\ sample\ \#\d\ of\ rule\ .+?:\n \ \ \ the\ sample\ is\ not\ suitable\ for\ current\ version\ of\ PHP\ \(.+?\).\n # followed by another title or end of file (? \n [^ \n].*? \n |$ ) /x', static function (array $matches) use ($actual): string { $before = preg_quote($matches['before'], '/'); $after = preg_quote($matches['after'], '/'); $replacement = '[UNAVAILABLE EXAMPLE DIFF]'; if (1 === preg_match("/{$before}(\\.\\. code-block:: diff.*?){$after}/s", $actual, $actualMatches)) { $replacement = $actualMatches[1]; } return $matches[1].$replacement.$matches[2]; }, $expected ); self::assertSame($expected, $actual); } public static function provideFixerDocumentationFileIsUpToDateCases(): iterable { foreach (self::getFixers() as $fixer) { yield $fixer->getName() => [$fixer]; } } public function testFixersDocumentationIndexFileIsUpToDate(): void { $locator = new DocumentationLocator(); $generator = new FixerDocumentGenerator($locator); self::assertFileEqualsString( $generator->generateFixersDocumentationIndex(self::getFixers()), $locator->getFixersDocumentationIndexFilePath() ); } public function testFixersDocumentationDirectoryHasNoExtraFiles(): void { $generator = new DocumentationLocator(); self::assertCount( \count(self::getFixers()) + 1, (new Finder())->files()->in($generator->getFixersDocumentationDirectoryPath()) ); } public function testRuleSetsDocumentationIsUpToDate(): void { $locator = new DocumentationLocator(); $generator = new RuleSetDocumentationGenerator($locator); $fixers = self::getFixers(); $paths = []; foreach (RuleSets::getSetDefinitions() as $name => $definition) { $paths[$name] = $path = $locator->getRuleSetsDocumentationFilePath($name); self::assertFileEqualsString( $generator->generateRuleSetsDocumentation($definition, $fixers), $path, sprintf('RuleSet documentation is generated (please see CONTRIBUTING.md), file "%s".', $path) ); } $indexFilePath = $locator->getRuleSetsDocumentationIndexFilePath(); self::assertFileEqualsString( $generator->generateRuleSetsDocumentationIndex($paths), $indexFilePath, sprintf('RuleSet documentation is generated (please CONTRIBUTING.md), file "%s".', $indexFilePath) ); } public function testRuleSetsDocumentationDirectoryHasNoExtraFiles(): void { $generator = new DocumentationLocator(); self::assertCount( \count(RuleSets::getSetDefinitions()) + 1, (new Finder())->files()->in($generator->getRuleSetsDocumentationDirectoryPath()) ); } public function testInstallationDocHasCorrectMinimumVersion(): void { $composerJsonContent = file_get_contents(__DIR__.'/../../composer.json'); $composerJson = json_decode($composerJsonContent, true, 512, JSON_THROW_ON_ERROR); $phpVersion = $composerJson['require']['php']; $minimumVersion = ltrim(substr($phpVersion, 0, strpos($phpVersion, ' ')), '^'); $minimumVersionInformation = sprintf('PHP needs to be a minimum version of PHP %s.', $minimumVersion); $installationDocPath = realpath(__DIR__.'/../../doc/installation.rst'); self::assertStringContainsString( $minimumVersionInformation, file_get_contents($installationDocPath), sprintf('Files %s needs to contain information "%s"', $installationDocPath, $minimumVersionInformation) ); } public function testListingDocumentationIsUpToDate(): void { $locator = new DocumentationLocator(); $generator = new ListDocumentGenerator($locator); $fixers = self::getFixers(); $listingFilePath = $locator->getListingFilePath(); self::assertFileEqualsString( $generator->generateListingDocumentation($fixers), $listingFilePath, sprintf('Listing documentation is generated (please CONTRIBUTING.md), file "%s".', $listingFilePath) ); } private static function assertFileEqualsString(string $expectedString, string $actualFilePath, string $message = ''): void { self::assertFileExists($actualFilePath, $message); self::assertSame($expectedString, file_get_contents($actualFilePath), $message); } /** * @return list */ private static function getFixers(): array { $factory = new FixerFactory(); $factory->registerBuiltInFixers(); return $factory->getFixers(); } }