-
-
Notifications
You must be signed in to change notification settings - Fork 440
Expand file tree
/
Copy pathAbstractRectorTestCase.php
More file actions
302 lines (246 loc) · 11.7 KB
/
AbstractRectorTestCase.php
File metadata and controls
302 lines (246 loc) · 11.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
<?php
declare(strict_types=1);
namespace Rector\Testing\PHPUnit;
use Illuminate\Container\RewindableGenerator;
use Iterator;
use Nette\Utils\FileSystem;
use Nette\Utils\Strings;
use PHPUnit\Framework\ExpectationFailedException;
use Rector\Application\ApplicationFileProcessor;
use Rector\Autoloading\AdditionalAutoloader;
use Rector\Autoloading\BootstrapFilesIncluder;
use Rector\Configuration\ConfigurationFactory;
use Rector\Configuration\Option;
use Rector\Configuration\Parameter\SimpleParameterProvider;
use Rector\Contract\DependencyInjection\ResettableInterface;
use Rector\Contract\Rector\RectorInterface;
use Rector\DependencyInjection\Laravel\ContainerMemento;
use Rector\Exception\ShouldNotHappenException;
use Rector\NodeTypeResolver\Reflection\BetterReflection\SourceLocatorProvider\DynamicSourceLocatorProvider;
use Rector\PhpParser\NodeTraverser\RectorNodeTraverser;
use Rector\Rector\AbstractRector;
use Rector\Testing\Contract\RectorTestInterface;
use Rector\Testing\Fixture\FixtureFileFinder;
use Rector\Testing\Fixture\FixtureFileUpdater;
use Rector\Testing\Fixture\FixtureSplitter;
use Rector\Testing\PHPUnit\ValueObject\RectorTestResult;
use Rector\Util\Reflection\PrivatesAccessor;
/**
* @api used by public
*/
abstract class AbstractRectorTestCase extends AbstractLazyTestCase implements RectorTestInterface
{
private DynamicSourceLocatorProvider $dynamicSourceLocatorProvider;
private ApplicationFileProcessor $applicationFileProcessor;
private ?string $inputFilePath = null;
/**
* @var array<string, true>
*/
private static array $cacheByRuleAndConfig = [];
/**
* Restore default parameters
*/
public static function tearDownAfterClass(): void
{
SimpleParameterProvider::setParameter(Option::AUTO_IMPORT_NAMES, false);
SimpleParameterProvider::setParameter(Option::AUTO_IMPORT_DOC_BLOCK_NAMES, false);
SimpleParameterProvider::setParameter(Option::REMOVE_UNUSED_IMPORTS, false);
SimpleParameterProvider::setParameter(Option::PHPDOC_TAGS_WITH_CLASS_REFERENCE, []);
SimpleParameterProvider::setParameter(Option::IMPORT_SHORT_CLASSES, true);
SimpleParameterProvider::setParameter(Option::INDENT_CHAR, ' ');
SimpleParameterProvider::setParameter(Option::INDENT_SIZE, 4);
SimpleParameterProvider::setParameter(Option::POLYFILL_PACKAGES, []);
SimpleParameterProvider::setParameter(Option::NEW_LINE_ON_FLUENT_CALL, false);
SimpleParameterProvider::setParameter(Option::TREAT_CLASSES_AS_FINAL, false);
}
protected function setUp(): void
{
parent::setUp();
$configFile = $this->provideConfigFilePath();
// cleanup all registered rectors, so you can use only the new ones
$rectorConfig = self::getContainer();
// boot once for config + test case to avoid booting again and again for every test fixture
$cacheKey = sha1($configFile . static::class);
if (! isset(self::$cacheByRuleAndConfig[$cacheKey])) {
// reset
/** @var RewindableGenerator<int, ResettableInterface> $resettables */
$resettables = $rectorConfig->tagged(ResettableInterface::class);
foreach ($resettables as $resettable) {
/** @var ResettableInterface $resettable */
$resettable->reset();
}
$this->forgetRectorsRules();
$rectorConfig->resetRuleConfigurations();
// this has to be always empty, so we can add new rules with their configuration
$this->assertEmpty($rectorConfig->tagged(RectorInterface::class));
$this->bootFromConfigFiles([$configFile]);
$rectorsGenerator = $rectorConfig->tagged(RectorInterface::class);
$rectors = $rectorsGenerator instanceof RewindableGenerator
? iterator_to_array($rectorsGenerator->getIterator())
// no rules at all, e.g. in case of only post rector run
: [];
/** @var RectorNodeTraverser $rectorNodeTraverser */
$rectorNodeTraverser = $rectorConfig->make(RectorNodeTraverser::class);
$rectorNodeTraverser->refreshPhpRectors($rectors);
// store cache
self::$cacheByRuleAndConfig[$cacheKey] = true;
}
$this->applicationFileProcessor = $this->make(ApplicationFileProcessor::class);
$this->dynamicSourceLocatorProvider = $this->make(DynamicSourceLocatorProvider::class);
/** @var AdditionalAutoloader $additionalAutoloader */
$additionalAutoloader = $this->make(AdditionalAutoloader::class);
$additionalAutoloader->autoloadPaths();
/** @var BootstrapFilesIncluder $bootstrapFilesIncluder */
$bootstrapFilesIncluder = $this->make(BootstrapFilesIncluder::class);
$bootstrapFilesIncluder->includeBootstrapFiles();
}
protected function tearDown(): void
{
// clear temporary file
if (is_string($this->inputFilePath)) {
FileSystem::delete($this->inputFilePath);
}
}
protected static function yieldFilesFromDirectory(string $directory, string $suffix = '*.php.inc'): Iterator
{
return FixtureFileFinder::yieldDirectory($directory, $suffix);
}
protected function doTestFile(string $fixtureFilePath, bool $includeFixtureDirectoryAsSource = false): void
{
// prepare input file contents and expected file output contents
$fixtureFileContents = FileSystem::read($fixtureFilePath);
if (FixtureSplitter::containsSplit($fixtureFileContents)) {
// changed content
[$inputFileContents, $expectedFileContents] = FixtureSplitter::splitFixtureFileContents(
$fixtureFileContents
);
} else {
// no change
$inputFileContents = $fixtureFileContents;
$expectedFileContents = $fixtureFileContents;
}
$inputFilePath = $this->createInputFilePath($fixtureFilePath);
// to remove later in tearDown()
$this->inputFilePath = $inputFilePath;
if ($fixtureFilePath === $inputFilePath) {
throw new ShouldNotHappenException('Fixture file and input file cannot be the same: ' . $fixtureFilePath);
}
// write temp file
FileSystem::write($inputFilePath, $inputFileContents, null);
$this->doTestFileMatchesExpectedContent(
$inputFilePath,
$inputFileContents,
$expectedFileContents,
$fixtureFilePath,
$includeFixtureDirectoryAsSource
);
}
protected function doTestFileExpectingWarningAboutRuleApplied(
string $fixtureFilePath,
string $expectedRuleApplied
): void {
ob_start();
$this->doTestFile($fixtureFilePath);
$content = ob_get_clean();
$fixtureName = basename($fixtureFilePath);
$testClass = static::class;
$this->assertSame(
PHP_EOL . 'WARNING: On fixture file "' . $fixtureName . '" for test "' . $testClass . '"' . PHP_EOL .
'File not changed but some Rector rules applied:' . PHP_EOL .
' * ' . $expectedRuleApplied . PHP_EOL,
$content
);
}
private function forgetRectorsRules(): void
{
$rectorConfig = self::getContainer();
// 1. forget tagged services
ContainerMemento::forgetTag($rectorConfig, RectorInterface::class);
// 2. remove after binding too, to avoid setting configuration over and over again
$privatesAccessor = new PrivatesAccessor();
$privatesAccessor->propertyClosure(
$rectorConfig,
'afterResolvingCallbacks',
static function (array $afterResolvingCallbacks): array {
foreach (array_keys($afterResolvingCallbacks) as $key) {
if ($key === AbstractRector::class) {
continue;
}
if (is_a($key, RectorInterface::class, true)) {
unset($afterResolvingCallbacks[$key]);
}
}
return $afterResolvingCallbacks;
}
);
}
private function doTestFileMatchesExpectedContent(
string $originalFilePath,
string $inputFileContents,
string $expectedFileContents,
string $fixtureFilePath,
bool $includeFixtureDirectoryAsSource
): void {
SimpleParameterProvider::setParameter(Option::SOURCE, [$originalFilePath]);
// the file is now changed (if any rule matches)
$rectorTestResult = $this->processFilePath($originalFilePath, $includeFixtureDirectoryAsSource);
$changedContents = $rectorTestResult->getChangedContents();
$fixtureFilename = basename($fixtureFilePath);
$failureMessage = sprintf('Failed on fixture file "%s"', $fixtureFilename);
$numAppliedRectorClasses = count($rectorTestResult->getAppliedRectorClasses());
// give more context about used rules in case of set testing
$appliedRulesList = '';
if ($numAppliedRectorClasses > 0) {
foreach ($rectorTestResult->getAppliedRectorClasses() as $appliedRectorClass) {
$appliedRulesList .= ' * ' . $appliedRectorClass . PHP_EOL;
}
}
if ($numAppliedRectorClasses > 1) {
$failureMessage .= PHP_EOL . PHP_EOL . 'Applied Rector rules:' . PHP_EOL . $appliedRulesList;
}
try {
$this->assertSame($expectedFileContents, $changedContents, $failureMessage);
} catch (ExpectationFailedException) {
FixtureFileUpdater::updateFixtureContent($inputFileContents, $changedContents, $fixtureFilePath);
// if not exact match, check the regex version (useful for generated hashes/uuids in the code)
$this->assertStringMatchesFormat($expectedFileContents, $changedContents, $failureMessage);
}
if ($inputFileContents === $expectedFileContents && $numAppliedRectorClasses > 0) {
$failureMessage = PHP_EOL . sprintf(
'WARNING: On fixture file "%s" for test "%s"',
$fixtureFilename,
static::class
) . PHP_EOL
. 'File not changed but some Rector rules applied:' . PHP_EOL . $appliedRulesList;
echo $failureMessage;
}
}
private function processFilePath(string $filePath, bool $includeFixtureDirectoryAsSource): RectorTestResult
{
if ($includeFixtureDirectoryAsSource) {
$fixtureDirectory = dirname($filePath);
$this->dynamicSourceLocatorProvider->addDirectories([$fixtureDirectory]);
} else {
$this->dynamicSourceLocatorProvider->setFilePath($filePath);
}
/** @var ConfigurationFactory $configurationFactory */
$configurationFactory = $this->make(ConfigurationFactory::class);
$configuration = $configurationFactory->createForTests([$filePath]);
$processResult = $this->applicationFileProcessor->processFiles([$filePath], $configuration);
// return changed file contents
$changedFileContents = FileSystem::read($filePath);
return new RectorTestResult($changedFileContents, $processResult);
}
private function createInputFilePath(string $fixtureFilePath): string
{
$inputFileDirectory = dirname($fixtureFilePath);
// remove ".inc" suffix
if (str_ends_with($fixtureFilePath, '.inc')) {
$trimmedFixtureFilePath = Strings::substring($fixtureFilePath, 0, -4);
} else {
$trimmedFixtureFilePath = $fixtureFilePath;
}
$fixtureBasename = pathinfo($trimmedFixtureFilePath, PATHINFO_BASENAME);
return $inputFileDirectory . '/' . $fixtureBasename;
}
}