mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
76be96ce53
And use Psalm\Internal\Provider\FakeFileProvider
154 lines
4.0 KiB
PHP
154 lines
4.0 KiB
PHP
<?php
|
|
namespace Psalm\Tests\FileManipulation;
|
|
|
|
use Psalm\Context;
|
|
use Psalm\Internal\Provider\FakeFileProvider;
|
|
use Psalm\Internal\RuntimeCaches;
|
|
use Psalm\Tests\Internal\Provider;
|
|
use Psalm\Tests\TestConfig;
|
|
|
|
use function strpos;
|
|
|
|
class ClassConstantMoveTest extends \Psalm\Tests\TestCase
|
|
{
|
|
/** @var \Psalm\Internal\Analyzer\ProjectAnalyzer */
|
|
protected $project_analyzer;
|
|
|
|
public function setUp() : void
|
|
{
|
|
RuntimeCaches::clearAll();
|
|
|
|
$this->file_provider = new FakeFileProvider();
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerValidCodeParse
|
|
*
|
|
* @param array<string, string> $constants_to_move
|
|
*/
|
|
public function testValidCode(
|
|
string $input_code,
|
|
string $output_code,
|
|
array $constants_to_move
|
|
): void {
|
|
$test_name = $this->getTestName();
|
|
if (strpos($test_name, 'SKIPPED-') !== false) {
|
|
$this->markTestSkipped('Skipped due to a bug.');
|
|
}
|
|
|
|
$config = new TestConfig();
|
|
|
|
$this->project_analyzer = new \Psalm\Internal\Analyzer\ProjectAnalyzer(
|
|
$config,
|
|
new \Psalm\Internal\Provider\Providers(
|
|
$this->file_provider,
|
|
new Provider\FakeParserCacheProvider()
|
|
)
|
|
);
|
|
|
|
$context = new Context();
|
|
|
|
$file_path = self::$src_dir_path . 'somefile.php';
|
|
|
|
$this->addFile(
|
|
$file_path,
|
|
$input_code
|
|
);
|
|
|
|
$codebase = $this->project_analyzer->getCodebase();
|
|
|
|
$this->project_analyzer->refactorCodeAfterCompletion($constants_to_move);
|
|
|
|
$this->analyzeFile($file_path, $context);
|
|
|
|
$this->project_analyzer->prepareMigration();
|
|
|
|
$codebase->analyzer->updateFile($file_path, false);
|
|
|
|
$this->project_analyzer->migrateCode();
|
|
|
|
$this->assertSame($output_code, $codebase->getFileContents($file_path));
|
|
}
|
|
|
|
/**
|
|
* @return array<string,array{string,string,array<string, string>}>
|
|
*/
|
|
public function providerValidCodeParse(): array
|
|
{
|
|
return [
|
|
'moveSimpleClassConstant' => [
|
|
'<?php
|
|
namespace Ns;
|
|
|
|
use ArrayObject;
|
|
|
|
class A {
|
|
const FOO = 15;
|
|
const FAA = self::FOO;
|
|
}
|
|
|
|
class B {
|
|
public static function bar() : void {
|
|
echo A::FOO;
|
|
}
|
|
}',
|
|
'<?php
|
|
namespace Ns;
|
|
|
|
use ArrayObject;
|
|
|
|
class A {
|
|
|
|
const FAA = B::FOO_BAR;
|
|
}
|
|
|
|
class B {
|
|
public static function bar() : void {
|
|
echo B::FOO_BAR;
|
|
}
|
|
|
|
const FOO_BAR = 15;
|
|
}',
|
|
[
|
|
'Ns\A::FOO' => 'Ns\B::FOO_BAR',
|
|
],
|
|
],
|
|
'renameSimpleClassConstant' => [
|
|
'<?php
|
|
namespace Ns;
|
|
|
|
use ArrayObject;
|
|
|
|
class A {
|
|
const FOO = 15;
|
|
const FAA = self::FOO;
|
|
}
|
|
|
|
class B {
|
|
public static function bar() : void {
|
|
echo A::FOO;
|
|
}
|
|
}',
|
|
'<?php
|
|
namespace Ns;
|
|
|
|
use ArrayObject;
|
|
|
|
class A {
|
|
const FOO_BAR = 15;
|
|
const FAA = self::FOO_BAR;
|
|
}
|
|
|
|
class B {
|
|
public static function bar() : void {
|
|
echo A::FOO_BAR;
|
|
}
|
|
}',
|
|
[
|
|
'Ns\A::FOO' => 'Ns\A::FOO_BAR',
|
|
],
|
|
],
|
|
];
|
|
}
|
|
}
|