1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/tests/FileManipulation/ClassMoveTest.php
Bruce Weirdan dabfb16e34
Test parallelization (#4045)
* Run tests in random order

Being able to run tests in any order is a pre-requisite for being able
to run them in parallel.

* Reset type coverage between tests, fix affected tests

* Reset parser and lexer between test runs and on php version change

Previously lexer was reset, but parser kept the reference to the old
one, and reference to the parser was kept by StatementsProvider. This
resulted in order-dependent tests - if the parser was first initialized
with phpVersion set to 7.4 then arrow functions worked fine, but were
failing when the parser was initially constructed with settings for 7.3

This can be demonstrated on current master by upgrading to
nikic/php-parser:4.9 and running:

```
vendor/bin/phpunit --no-coverage --filter="inferredArgArrowFunction" tests/ClosureTest.php
```

Now all tests using PHP 7.4 features must set the PHP version
accordingly.

* Marked more tests using 7.4 syntax

* Reset newline-between-annotation flag between tests

* Resolve real paths before passing them to checkPaths

When checkPaths is called from psalm.php the paths are resolved, so we
just mimicking SUT behaviour here.

* Restore newline-between-annotations in DocCommentTest

* Tweak Appveyor caches

* Tweak TravisCI caches

* Tweak CircleCI caches

* Run tests in parallel

Use `vendor/bin/paratest` instead of `vendor/bin/phpunit`

* Use default paratest runner on Windows

WrapperRunner is not supported on Windows.

* TRAVIS_TAG could be empty

* Restore appveyor conditional caching
2021-01-29 11:38:04 +01:00

720 lines
22 KiB
PHP

<?php
namespace Psalm\Tests\FileManipulation;
use Psalm\Context;
use Psalm\Internal\Analyzer\FileAnalyzer;
use Psalm\Internal\RuntimeCaches;
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
{
RuntimeCaches::clearAll();
$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 B|null $a
* @param string | null $b
* @param callable():B $c
* @return B|null
*/
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 AParent {
public static function foo(A $one, A $two) {
}
}
class A extends AParent {
/**
* @param self $one
* @param A $two
* @return static
*/
public static function foo(self $one, A $two) : void {
A::foo($one, $two);
self::foo($one, $two);
parent::foo($one, $two);
static::foo($one, $two);
return new static();
}
}
$a = A::class;
$a::foo(new A(), new A());
function foo() {
A::foo(new A(), A::foo());
}',
'<?php
namespace Ns;
class AParent {
public static function foo(B $one, B $two) {
}
}
class B extends AParent {
/**
* @param self $one
* @param self $two
* @return static
*/
public static function foo(self $one, self $two) : void {
B::foo($one, $two);
self::foo($one, $two);
parent::foo($one, $two);
static::foo($one, $two);
return new static();
}
}
$a = B::class;
$a::foo(new B(), new B());
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";
/**
* @var array
*/
public static $vars = ["one"];
}
echo A::$one;
A::$one = "two";
foreach (A::$vars as $var) {}',
'<?php
namespace Ns;
class B {
/**
* @var string
*/
public static $one = "one";
/**
* @var array<array-key, mixed>
*/
public static $vars = ["one"];
}
echo B::$one;
B::$one = "two";
foreach (B::$vars as $var) {}',
[
'Ns\A' => 'Ns\B',
],
],
'moveClassIntoNamespace' => [
'<?php
use Exception;
class A {
/** @var ?Exception */
public $x;
/**
* @param ArrayObject<int, A> $a
* @throws RunTimeException
*/
public function foo(ArrayObject $a) : Exception {
foreach ($a as $b) {
$b->bar();
}
try {
// something
} catch (InvalidArgumentException $e) {
}
echo \A::class;
echo __CLASS__;
echo self::class;
ArrayObject::foo();
return new Exception("bad");
}
public function bar() : void {}
}',
'<?php
namespace Foo\Bar\Baz;
use Exception;
class B {
/** @var Exception|null */
public $x;
/**
* @param \ArrayObject<int, self> $a
* @throws \RunTimeException
*/
public function foo(\ArrayObject $a) : Exception {
foreach ($a as $b) {
$b->bar();
}
try {
// something
} catch (\InvalidArgumentException $e) {
}
echo B::class;
echo B::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::FAR|Bahh::FOO $c
*/
function doSomething(Bahh $b, int $c) : void {}
class A {
/** @var Bahh|null */
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 A|B|null */
public $z = null;
}
}',
'<?php
namespace Bar\Baz {
class A {
/** @var B|null */
public $x = null;
/** @var null|self */
public $y = null;
/** @var B|\Foo\C|null|self */
public $z = null;
}
}
namespace Bar\Baz {
class B {
/** @var A|null */
public $x = null;
/** @var null|self */
public $y = null;
/** @var A|\Foo\C|null|self */
public $z = null;
}
}
namespace Bar {
use Bar\Baz\A;
use Bar\Baz\B;
class C {
/** @var A|null */
public $x = null;
/** @var B|null */
public $y = null;
/** @var A|B|null */
public $z = null;
}
}',
[
'Foo\A' => 'Bar\Baz\A',
'Foo\B' => 'Bar\Baz\B',
],
],
'moveClassesIntoNamespaceWithoutAlias' => [
'<?php
namespace Foo {
class A {
/** @var ?B */
public $x = null;
/** @var ?A */
public $y = null;
/** @var A|B|C|null */
public $z = null;
public static $vars = [1, 2, 3];
}
}
namespace Foo {
class B {
/** @var ?A */
public $x = null;
/** @var ?B */
public $y = null;
/** @var A|B|C|null */
public $z = null;
}
foreach (A::$vars[$foo] as $var) {}
}
namespace Bar {
class C {
/** @var ?\Foo\A */
public $x = null;
/** @var ?\Foo\B */
public $y = null;
/** @var \Foo\A|\Foo\B|null */
public $z = null;
}
foreach (\Foo\A::$vars as $var) {}
}',
'<?php
namespace Bar\Baz {
class A {
/** @var B|null */
public $x = null;
/** @var null|self */
public $y = null;
/** @var B|\Foo\C|null|self */
public $z = null;
public static $vars = [1, 2, 3];
}
}
namespace Bar\Baz {
class B {
/** @var A|null */
public $x = null;
/** @var null|self */
public $y = null;
/** @var A|\Foo\C|null|self */
public $z = null;
}
foreach (\Bar\Baz\A::$vars[$foo] as $var) {}
}
namespace Bar {
class C {
/** @var Baz\A|null */
public $x = null;
/** @var Baz\B|null */
public $y = null;
/** @var Baz\A|Baz\B|null */
public $z = null;
}
foreach (Baz\A::$vars as $var) {}
}',
[
'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::FAR|Kappa::FOO $c
*/
function doSomething(Kappa $b, int $c) : void {}
class A {
/** @var Kappa|null */
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',
],
],
];
}
}