rector/packages/Testing/PHPUnit/AbstractRectorTestCase.php
2021-07-23 06:16:10 +00:00

146 lines
7.7 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\Testing\PHPUnit;
use Iterator;
use RectorPrefix20210723\Nette\Utils\Strings;
use PHPStan\Analyser\NodeScopeResolver;
use PHPUnit\Framework\ExpectationFailedException;
use RectorPrefix20210723\Psr\Container\ContainerInterface;
use Rector\Core\Application\ApplicationFileProcessor;
use Rector\Core\Application\FileSystem\RemovedAndAddedFilesCollector;
use Rector\Core\Autoloading\AdditionalAutoloader;
use Rector\Core\Autoloading\BootstrapFilesIncluder;
use Rector\Core\Configuration\ConfigurationFactory;
use Rector\Core\Configuration\Option;
use Rector\Core\ValueObject\Application\File;
use Rector\NodeTypeResolver\Reflection\BetterReflection\SourceLocatorProvider\DynamicSourceLocatorProvider;
use Rector\Testing\Contract\RectorTestInterface;
use Rector\Testing\PHPUnit\Behavior\MovingFilesTrait;
use RectorPrefix20210723\Symplify\EasyTesting\DataProvider\StaticFixtureFinder;
use RectorPrefix20210723\Symplify\EasyTesting\DataProvider\StaticFixtureUpdater;
use RectorPrefix20210723\Symplify\EasyTesting\StaticFixtureSplitter;
use RectorPrefix20210723\Symplify\PackageBuilder\Parameter\ParameterProvider;
use Symplify\SmartFileSystem\SmartFileInfo;
abstract class AbstractRectorTestCase extends \Rector\Testing\PHPUnit\AbstractTestCase implements \Rector\Testing\Contract\RectorTestInterface
{
use MovingFilesTrait;
/**
* @var \Symplify\PackageBuilder\Parameter\ParameterProvider
*/
protected $parameterProvider;
/**
* @var \Rector\Core\Application\FileSystem\RemovedAndAddedFilesCollector
*/
protected $removedAndAddedFilesCollector;
/**
* @var \Symplify\SmartFileSystem\SmartFileInfo|null
*/
protected $originalTempFileInfo;
/**
* @var \Psr\Container\ContainerInterface|null
*/
protected static $allRectorContainer;
/**
* @var \Rector\NodeTypeResolver\Reflection\BetterReflection\SourceLocatorProvider\DynamicSourceLocatorProvider
*/
private $dynamicSourceLocatorProvider;
/**
* @var \Rector\Core\Application\ApplicationFileProcessor
*/
private $applicationFileProcessor;
protected function setUp() : void
{
// speed up
@\ini_set('memory_limit', '-1');
// include local files
if (\file_exists(__DIR__ . '/../../../preload.php') && \file_exists(__DIR__ . '/../../../vendor')) {
require_once __DIR__ . '/../../../preload.php';
}
$configFileInfo = new \Symplify\SmartFileSystem\SmartFileInfo($this->provideConfigFilePath());
$this->bootFromConfigFileInfos([$configFileInfo]);
$this->applicationFileProcessor = $this->getService(\Rector\Core\Application\ApplicationFileProcessor::class);
$this->parameterProvider = $this->getService(\RectorPrefix20210723\Symplify\PackageBuilder\Parameter\ParameterProvider::class);
$this->dynamicSourceLocatorProvider = $this->getService(\Rector\NodeTypeResolver\Reflection\BetterReflection\SourceLocatorProvider\DynamicSourceLocatorProvider::class);
$this->removedAndAddedFilesCollector = $this->getService(\Rector\Core\Application\FileSystem\RemovedAndAddedFilesCollector::class);
$this->removedAndAddedFilesCollector->reset();
/** @var AdditionalAutoloader $additionalAutoloader */
$additionalAutoloader = $this->getService(\Rector\Core\Autoloading\AdditionalAutoloader::class);
$additionalAutoloader->autoloadPaths();
/** @var BootstrapFilesIncluder $bootstrapFilesIncluder */
$bootstrapFilesIncluder = $this->getService(\Rector\Core\Autoloading\BootstrapFilesIncluder::class);
$bootstrapFilesIncluder->includeBootstrapFiles();
}
/**
* @return Iterator<SmartFileInfo>
* @param string $directory
* @param string $suffix
*/
protected function yieldFilesFromDirectory($directory, $suffix = '*.php.inc') : \Iterator
{
return \RectorPrefix20210723\Symplify\EasyTesting\DataProvider\StaticFixtureFinder::yieldDirectoryExclusively($directory, $suffix);
}
protected function isWindows() : bool
{
return \strncasecmp(\PHP_OS, 'WIN', 3) === 0;
}
/**
* @param \Symplify\SmartFileSystem\SmartFileInfo $fixtureFileInfo
* @param bool $allowMatches
*/
protected function doTestFileInfo($fixtureFileInfo, $allowMatches = \true) : void
{
$inputFileInfoAndExpectedFileInfo = \RectorPrefix20210723\Symplify\EasyTesting\StaticFixtureSplitter::splitFileInfoToLocalInputAndExpectedFileInfos($fixtureFileInfo);
$inputFileInfo = $inputFileInfoAndExpectedFileInfo->getInputFileInfo();
$this->originalTempFileInfo = $inputFileInfo;
$expectedFileInfo = $inputFileInfoAndExpectedFileInfo->getExpectedFileInfo();
$this->doTestFileMatchesExpectedContent($inputFileInfo, $expectedFileInfo, $fixtureFileInfo, $allowMatches);
}
protected function getFixtureTempDirectory() : string
{
return \sys_get_temp_dir() . '/_temp_fixture_easy_testing';
}
private function doTestFileMatchesExpectedContent(\Symplify\SmartFileSystem\SmartFileInfo $originalFileInfo, \Symplify\SmartFileSystem\SmartFileInfo $expectedFileInfo, \Symplify\SmartFileSystem\SmartFileInfo $fixtureFileInfo, bool $allowMatches = \true) : void
{
$this->parameterProvider->changeParameter(\Rector\Core\Configuration\Option::SOURCE, [$originalFileInfo->getRealPath()]);
$changedContent = $this->processFileInfo($originalFileInfo);
// file is removed, we cannot compare it
if ($this->removedAndAddedFilesCollector->isFileRemoved($originalFileInfo)) {
return;
}
$relativeFilePathFromCwd = $fixtureFileInfo->getRelativeFilePathFromCwd();
try {
$this->assertStringEqualsFile($expectedFileInfo->getRealPath(), $changedContent, $relativeFilePathFromCwd);
} catch (\PHPUnit\Framework\ExpectationFailedException $expectationFailedException) {
if (!$allowMatches) {
throw $expectationFailedException;
}
\RectorPrefix20210723\Symplify\EasyTesting\DataProvider\StaticFixtureUpdater::updateFixtureContent($originalFileInfo, $changedContent, $fixtureFileInfo);
$contents = $expectedFileInfo->getContents();
// make sure we don't get a diff in which every line is different (because of differences in EOL)
$contents = $this->normalizeNewlines($contents);
// if not exact match, check the regex version (useful for generated hashes/uuids in the code)
$this->assertStringMatchesFormat($contents, $changedContent, $relativeFilePathFromCwd);
}
}
private function normalizeNewlines(string $string) : string
{
return \RectorPrefix20210723\Nette\Utils\Strings::replace($string, '#\\r\\n|\\r|\\n#', "\n");
}
private function processFileInfo(\Symplify\SmartFileSystem\SmartFileInfo $fileInfo) : string
{
$this->dynamicSourceLocatorProvider->setFileInfo($fileInfo);
// needed for PHPStan, because the analyzed file is just created in /temp - need for trait and similar deps
/** @var NodeScopeResolver $nodeScopeResolver */
$nodeScopeResolver = $this->getService(\PHPStan\Analyser\NodeScopeResolver::class);
$nodeScopeResolver->setAnalysedFiles([$fileInfo->getRealPath()]);
/** @var ConfigurationFactory $configurationFactory */
$configurationFactory = $this->getService(\Rector\Core\Configuration\ConfigurationFactory::class);
$configuration = $configurationFactory->createForTests();
$file = new \Rector\Core\ValueObject\Application\File($fileInfo, $fileInfo->getContents());
$this->applicationFileProcessor->run([$file], $configuration);
return $file->getFileContent();
}
}