1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00
psalm/tests/FileManipulation/ClassMoveTest.php
Matthew Brown da42be175f Apply PHPCS fixes
Fixes #1880
2019-07-05 16:27:53 -04:00

588 lines
18 KiB
PHP

<?php
namespace Psalm\Tests\FileManipulation;
use Psalm\Context;
use Psalm\Internal\Analyzer\FileAnalyzer;
use Psalm\Tests\Internal\Provider;
use Psalm\Tests\TestConfig;
use function strpos;
class ClassMoveTest extends \Psalm\Tests\TestCase
{
/** @var \Psalm\Internal\Analyzer\ProjectAnalyzer */
protected $project_analyzer;
public function setUp() : void
{
FileAnalyzer::clearCache();
\Psalm\Internal\FileManipulation\FunctionDocblockManipulator::clearCache();
$this->file_provider = new Provider\FakeFileProvider();
}
/**
* @dataProvider providerValidCodeParse
*
* @param string $input_code
* @param string $output_code
* @param array<string, string> $constants_to_move
* @param array<string, string> $call_transforms
*
* @return void
*/
public function testValidCode(
string $input_code,
string $output_code,
array $constants_to_move
) {
$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()
{
return [
'renameEmptyClass' => [
'<?php
namespace Ns;
class A {}
class C extends A {
/**
* @var A
*/
public $one;
}
/**
* @param A $a
* @param A::class|C::class $b
* @return A
*/
function foo(A $a, string $b) : A {
return $a;
}
/** @var A */
$i = new A();
if ($i instanceof A) {}',
'<?php
namespace Ns;
class B {}
class C extends B {
/**
* @var B
*/
public $one;
}
/**
* @param B $a
* @param B::class|C::class $b
* @return B
*/
function foo(B $a, string $b) : B {
return $a;
}
/** @var B */
$i = new B();
if ($i instanceof B) {}',
[
'Ns\A' => 'Ns\B',
],
],
'renameEmptyClassWithSpacesInDocblock' => [
'<?php
namespace Ns;
class A {}
/**
* @param ?A $a
* @param string | null $b
* @param callable(): A $c
* @return A | null
*/
function foo(?A $a, $b, $c) : ?A {
return $a;
}',
'<?php
namespace Ns;
class B {}
/**
* @param null|B $a
* @param string | null $b
* @param callable():B $c
* @return null|B
*/
function foo(?B $a, $b, $c) : ?B {
return $a;
}',
[
'Ns\A' => 'Ns\B',
],
],
'renameClassWithInstanceMethod' => [
'<?php
namespace Ns;
class A {
/**
* @param self $one
* @param A $two
*/
public function foo(self $one, A $two) : void {}
}
function foo(A $a) : A {
return $a->foo($a, $a);
}',
'<?php
namespace Ns;
class B {
/**
* @param self $one
* @param self $two
*/
public function foo(self $one, self $two) : void {}
}
function foo(B $a) : B {
return $a->foo($a, $a);
}',
[
'Ns\A' => 'Ns\B',
],
],
'renameClassWithStaticMethod' => [
'<?php
namespace Ns;
class A {
/**
* @param self $one
* @param A $two
*/
public static function foo(self $one, A $two) : void {
A::foo($one, $two);
}
}
function foo() {
A::foo(new A(), A::foo());
}',
'<?php
namespace Ns;
class B {
/**
* @param self $one
* @param self $two
*/
public static function foo(self $one, self $two) : void {
self::foo($one, $two);
}
}
function foo() {
B::foo(new B(), B::foo());
}',
[
'Ns\A' => 'Ns\B',
],
],
'renameClassWithInstanceProperty' => [
'<?php
namespace Ns;
class A {
/**
* @var A
*/
public $one;
/**
* @var self
*/
public $two;
}',
'<?php
namespace Ns;
class B {
/**
* @var self
*/
public $one;
/**
* @var self
*/
public $two;
}',
[
'Ns\A' => 'Ns\B',
],
],
'renameClassWithStaticProperty' => [
'<?php
namespace Ns;
class A {
/**
* @var string
*/
public static $one = "one";
}
echo A::$one;
A::$one = "two";',
'<?php
namespace Ns;
class B {
/**
* @var string
*/
public static $one = "one";
}
echo B::$one;
B::$one = "two";',
[
'Ns\A' => 'Ns\B',
],
],
'moveClassIntoNamespace' => [
'<?php
use Exception;
class A {
/** @var ?Exception */
public $x;
/**
* @param ArrayObject<int, A> $a
*/
public function foo(ArrayObject $a) : Exception {
foreach ($a as $b) {
$b->bar();
}
try {
// something
} catch (InvalidArgumentException $e) {
}
echo \A::class;
echo __CLASS__;
ArrayObject::foo();
return new Exception("bad");
}
public function bar() : void {}
}',
'<?php
namespace Foo\Bar\Baz;
use Exception;
class B {
/** @var null|Exception */
public $x;
/**
* @param \ArrayObject<int, self> $a
*/
public function foo(\ArrayObject $a) : Exception {
foreach ($a as $b) {
$b->bar();
}
try {
// something
} catch (\InvalidArgumentException $e) {
}
echo self::class;
echo self::class;
\ArrayObject::foo();
return new Exception("bad");
}
public function bar() : void {}
}',
[
'A' => 'Foo\Bar\Baz\B',
],
],
'moveClassDeeperIntoNamespaceAdjustUseWithoutAlias' => [
'<?php
namespace Foo {
use Bar\Bat;
echo Bat::FOO;
echo Bat::FAR;
/**
* @param Bat $b
* @param Bat::FOO|Bat::FAR $c
*/
function doSomething(Bat $b, int $c) : void {}
class A {
/** @var ?Bat */
public $x = null;
}
}
namespace Bar {
class Bat {
const FOO = 5;
const FAR = 7;
}
}',
'<?php
namespace Foo {
use Bar\Baz\Bahh;
echo Bahh::FOO;
echo Bahh::FAR;
/**
* @param Bahh $b
* @param Bahh::FOO|Bahh::FAR $c
*/
function doSomething(Bahh $b, int $c) : void {}
class A {
/** @var null|Bahh */
public $x = null;
}
}
namespace Bar\Baz {
class Bahh {
const FOO = 5;
const FAR = 7;
}
}',
[
'Bar\Bat' => 'Bar\Baz\Bahh',
],
],
'moveClassesIntoNamespace' => [
'<?php
namespace Foo {
class A {
/** @var ?B */
public $x = null;
/** @var ?A */
public $y = null;
/** @var A|B|C|null */
public $z = null;
}
}
namespace Foo {
class B {
/** @var ?A */
public $x = null;
/** @var ?B */
public $y = null;
/** @var A|B|C|null */
public $z = null;
}
}
namespace Bar {
use Foo\A;
use Foo\B;
class C {
/** @var ?A */
public $x = null;
/** @var ?B */
public $y = null;
/** @var null|A|B */
public $z = null;
}
}',
'<?php
namespace Bar\Baz {
class A {
/** @var null|B */
public $x = null;
/** @var null|self */
public $y = null;
/** @var null|self|B|\Foo\C */
public $z = null;
}
}
namespace Bar\Baz {
class B {
/** @var null|A */
public $x = null;
/** @var null|self */
public $y = null;
/** @var null|A|self|\Foo\C */
public $z = null;
}
}
namespace Bar {
use Bar\Baz\A;
use Bar\Baz\B;
class C {
/** @var null|A */
public $x = null;
/** @var null|B */
public $y = null;
/** @var null|A|B */
public $z = null;
}
}',
[
'Foo\A' => 'Bar\Baz\A',
'Foo\B' => 'Bar\Baz\B',
],
],
'moveClassDeeperIntoNamespaceAdjustUseWithAlias' => [
'<?php
namespace Foo {
use Bar\Bat as Kappa;
echo Kappa::FOO;
echo Kappa::FAR;
/**
* @param Kappa $b
* @param Kappa::FOO|Kappa::FAR $c
*/
function doSomething(Kappa $b, int $c) : void {}
class A {
/** @var ?Kappa */
public $x = null;
}
}
namespace Bar {
class Bat {
const FOO = 5;
const FAR = 7;
}
}',
'<?php
namespace Foo {
use Bar\Baz\Bahh as Kappa;
echo Kappa::FOO;
echo Kappa::FAR;
/**
* @param Kappa $b
* @param Kappa::FOO|Kappa::FAR $c
*/
function doSomething(Kappa $b, int $c) : void {}
class A {
/** @var null|Kappa */
public $x = null;
}
}
namespace Bar\Baz {
class Bahh {
const FOO = 5;
const FAR = 7;
}
}',
[
'Bar\Bat' => 'Bar\Baz\Bahh',
],
],
'moveClassDeeperIntoNamespaceDontAdjustGroupUse' => [
'<?php
namespace Foo {
use Bar\{Bat};
/**
* @param Bat $b
*/
function doSomething(Bat $b) : void {}
}
namespace Bar {
class Bat {}
}',
'<?php
namespace Foo {
use Bar\{Bat};
/**
* @param \Bar\Baz\Bahh $b
*/
function doSomething(\Bar\Baz\Bahh $b) : void {}
}
namespace Bar\Baz {
class Bahh {}
}',
[
'Bar\Bat' => 'Bar\Baz\Bahh',
],
],
];
}
}