File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/symplify/easy-testing/src/Command/ValidateFixtureSkipNamingCommand.php
Back
<?php declare (strict_types=1); namespace RectorPrefix202208\Symplify\EasyTesting\Command; use RectorPrefix202208\Symfony\Component\Console\Input\InputArgument; use RectorPrefix202208\Symfony\Component\Console\Input\InputInterface; use RectorPrefix202208\Symfony\Component\Console\Output\OutputInterface; use RectorPrefix202208\Symplify\EasyTesting\Finder\FixtureFinder; use RectorPrefix202208\Symplify\EasyTesting\MissplacedSkipPrefixResolver; use RectorPrefix202208\Symplify\EasyTesting\ValueObject\Option; use RectorPrefix202208\Symplify\PackageBuilder\Console\Command\AbstractSymplifyCommand; final class ValidateFixtureSkipNamingCommand extends AbstractSymplifyCommand { /** * @var \Symplify\EasyTesting\MissplacedSkipPrefixResolver */ private $missplacedSkipPrefixResolver; /** * @var \Symplify\EasyTesting\Finder\FixtureFinder */ private $fixtureFinder; public function __construct(MissplacedSkipPrefixResolver $missplacedSkipPrefixResolver, FixtureFinder $fixtureFinder) { $this->missplacedSkipPrefixResolver = $missplacedSkipPrefixResolver; $this->fixtureFinder = $fixtureFinder; parent::__construct(); } protected function configure() : void { $this->setName('validate-fixture-skip-naming'); $this->addArgument(Option::SOURCE, InputArgument::REQUIRED | InputArgument::IS_ARRAY, 'Paths to analyse'); $this->setDescription('Check that skipped fixture files (without `-----` separator) have a "skip" prefix'); } protected function execute(InputInterface $input, OutputInterface $output) : int { $source = (array) $input->getArgument(Option::SOURCE); $fixtureFileInfos = $this->fixtureFinder->find($source); $incorrectAndMissingSkips = $this->missplacedSkipPrefixResolver->resolve($fixtureFileInfos); foreach ($incorrectAndMissingSkips->getIncorrectSkipFileInfos() as $incorrectSkipFileInfo) { $errorMessage = \sprintf('The file "%s" should drop the "skip/keep" prefix', $incorrectSkipFileInfo->getRelativeFilePathFromCwd()); $this->symfonyStyle->note($errorMessage); } foreach ($incorrectAndMissingSkips->getMissingSkipFileInfos() as $missingSkipFileInfo) { $errorMessage = \sprintf('The file "%s" should start with "skip/keep" prefix', $missingSkipFileInfo->getRelativeFilePathFromCwd()); $this->symfonyStyle->note($errorMessage); } $countError = $incorrectAndMissingSkips->getFileCount(); if ($incorrectAndMissingSkips->getFileCount() === 0) { $message = \sprintf('All %d fixture files have valid names', \count($fixtureFileInfos)); $this->symfonyStyle->success($message); return self::SUCCESS; } $errorMessage = \sprintf('Found %d test file fixtures with wrong prefix', $countError); $this->symfonyStyle->error($errorMessage); return self::FAILURE; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings