1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 09:37:59 +01:00
psalm/tests/FileUpdates/ErrorFixTest.php

472 lines
18 KiB
PHP
Raw Normal View History

2018-10-17 21:52:58 +02:00
<?php
namespace Psalm\Tests\FileUpdates;
2018-11-06 03:57:36 +01:00
use Psalm\Internal\Analyzer\ProjectAnalyzer;
use Psalm\Internal\Provider\FakeFileProvider;
2018-11-06 03:57:36 +01:00
use Psalm\Internal\Provider\Providers;
use Psalm\Tests\Internal\Provider;
2019-03-23 19:27:54 +01:00
use Psalm\Tests\TestConfig;
2018-10-17 21:52:58 +02:00
2021-06-08 04:55:21 +02:00
use function array_keys;
use function count;
use function getcwd;
use const DIRECTORY_SEPARATOR;
2018-10-17 21:52:58 +02:00
class ErrorFixTest extends \Psalm\Tests\TestCase
{
2019-05-17 00:36:36 +02:00
public function setUp() : void
2018-10-17 21:52:58 +02:00
{
parent::setUp();
$this->file_provider = new FakeFileProvider();
2018-10-17 21:52:58 +02:00
$config = new TestConfig();
$config->throw_exception = false;
$providers = new Providers(
$this->file_provider,
new \Psalm\Tests\Internal\Provider\ParserInstanceCacheProvider(),
2018-10-17 21:52:58 +02:00
null,
null,
new Provider\FakeFileReferenceCacheProvider(),
new \Psalm\Tests\Internal\Provider\ProjectCacheProvider()
2018-10-17 21:52:58 +02:00
);
2018-11-11 18:01:14 +01:00
$this->project_analyzer = new ProjectAnalyzer(
2018-10-17 21:52:58 +02:00
$config,
$providers
2018-10-17 21:52:58 +02:00
);
$this->project_analyzer->setPhpVersion('7.3', 'tests');
2018-10-17 21:52:58 +02:00
}
/**
* @dataProvider providerTestErrorFix
*
2019-05-23 18:53:46 +02:00
* @param array<int, array<string, string>> $files
2018-10-17 21:52:58 +02:00
* @param array<int, int> $error_counts
* @param array<string, string> $error_levels
*
*/
public function testErrorFix(
2019-05-23 18:53:46 +02:00
array $files,
2018-10-17 21:52:58 +02:00
array $error_counts,
array $error_levels = []
): void {
2018-11-11 18:01:14 +01:00
$this->project_analyzer->getCodebase()->diff_methods = true;
2018-10-17 21:52:58 +02:00
2018-11-11 18:01:14 +01:00
$codebase = $this->project_analyzer->getCodebase();
2018-10-17 21:52:58 +02:00
$config = $codebase->config;
foreach ($error_levels as $error_type => $error_level) {
$config->setCustomErrorLevel($error_type, $error_level);
}
2020-09-03 22:51:43 +02:00
$analyzed_files = [];
2019-07-05 22:24:00 +02:00
for ($i = 0; $i < count($files); ++$i) {
2019-05-23 18:53:46 +02:00
$batch = $files[$i];
2018-10-17 21:52:58 +02:00
2019-05-23 18:53:46 +02:00
foreach ($batch as $file_path => $contents) {
$this->file_provider->registerFile($file_path, $contents);
2018-10-17 21:52:58 +02:00
2020-09-03 22:51:43 +02:00
if (!isset($analyzed_files[$file_path])) {
2019-05-23 18:53:46 +02:00
$codebase->addFilesToAnalyze([$file_path => $file_path]);
2020-09-03 22:51:43 +02:00
$analyzed_files[$file_path] = true;
2019-05-23 18:53:46 +02:00
}
}
2018-10-17 21:52:58 +02:00
2019-05-23 18:53:46 +02:00
if ($i === 0) {
$codebase->scanFiles();
} else {
$codebase->reloadFiles($this->project_analyzer, array_keys($batch));
}
2018-10-17 21:52:58 +02:00
2019-05-23 18:53:46 +02:00
$codebase->analyzer->analyzeFiles($this->project_analyzer, 1, false);
2018-10-17 21:52:58 +02:00
$expected_count = 0;
2019-05-23 18:53:46 +02:00
$data = \Psalm\IssueBuffer::clear();
2018-10-17 21:52:58 +02:00
foreach ($data as $file_issues) {
$expected_count += count($file_issues);
}
$this->assertSame($error_counts[$i], $expected_count);
2018-10-17 21:52:58 +02:00
}
}
/**
2019-05-23 18:53:46 +02:00
* @return array<string,array{files: array<int, array<string,string>>,error_counts:array<int,int>,error_levels?:array<string,string>}>
2018-10-17 21:52:58 +02:00
*/
public function providerTestErrorFix(): array
2018-10-17 21:52:58 +02:00
{
return [
'fixMissingColonSyntaxError' => [
2019-05-23 18:53:46 +02:00
'files' => [
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
public function foo() : void {
$a = 5;
echo $a;
}
}',
],
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
public function foo() : void {
$a = 5
echo $a;
}
}',
],
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
public function foo() : void {
$a = 5;
echo $a;
}
}',
],
2018-10-17 21:52:58 +02:00
],
'error_counts' => [0, 1, 0],
],
'addReturnTypesToSingleMethod' => [
2019-05-23 18:53:46 +02:00
'files' => [
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
public function foo() {
return 5;
}
public function bar() {
return $this->foo();
}
}',
],
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
public function foo() : int {
return 5;
}
public function bar() {
return $this->foo();
}
}',
],
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
public function foo() : int {
return 5;
}
public function bar() : int {
return $this->foo();
}
}',
],
2018-10-17 21:52:58 +02:00
],
'error_counts' => [2, 1, 0],
[
'MissingReturnType' => \Psalm\Config::REPORT_INFO,
2019-03-23 19:27:54 +01:00
],
2018-10-17 21:52:58 +02:00
],
'traitMethodRenameFirstCorrect' => [
2019-05-23 18:53:46 +02:00
'files' => [
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
use T;
public function foo() : void {
echo $this->bar();
}
}',
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
namespace Foo;
trait T {
public function bar() : string {
return "hello";
}
}',
],
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
use T;
public function foo() : void {
echo $this->bar();
}
}',
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
namespace Foo;
trait T {
public function bat() : string {
return "hello";
}
}',
],
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
use T;
public function foo() : void {
echo $this->bar();
}
}',
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
namespace Foo;
trait T {
public function bar() : string {
return "hello";
}
}',
],
],
2020-11-08 17:04:39 +01:00
'error_counts' => [0, 2, 0],
],
'traitMethodRenameFirstError' => [
2019-05-23 18:53:46 +02:00
'files' => [
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
use T;
public function foo() : void {
echo $this->bar();
}
}',
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
namespace Foo;
trait T {
public function bat() : string {
return "hello";
}
}',
],
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
use T;
public function foo() : void {
echo $this->bar();
}
}',
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
namespace Foo;
trait T {
public function bar() : string {
return "hello";
}
}',
],
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
use T;
public function foo() : void {
echo $this->bar();
}
}',
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
namespace Foo;
trait T {
public function bar() : string {
return "hello";
}
}',
],
],
2020-11-08 17:04:39 +01:00
'error_counts' => [2, 0, 0],
],
'addSuppressions' => [
2019-05-23 18:53:46 +02:00
'files' => [
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
class C {
public function foo(array $a) : void {
foreach ($a as $b) {
$b->bar();
}
}
2019-05-23 18:53:46 +02:00
}',
],
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
class C {
public function foo(array $a) : void {
/**
* @psalm-suppress MixedAssignment
*/
foreach ($a as $b) {
$b->bar();
}
}
2019-05-23 18:53:46 +02:00
}',
],
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
class C {
public function foo(array $a) : void {
/**
2019-05-23 18:53:46 +02:00
* @psalm-suppress MixedAssignment
*/
2019-05-23 18:53:46 +02:00
foreach ($a as $b) {
/**
* @psalm-suppress MixedMethodCall
*/
$b->bar();
}
}
2019-05-23 18:53:46 +02:00
}',
],
],
'error_counts' => [2, 1, 0],
],
2019-06-13 17:32:45 +02:00
'fixDefault' => [
'files' => [
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
class C {
/** @var string */
public $foo = 5;
}',
],
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
class C {
/** @var string */
public $foo = "hello";
}',
],
],
'error_counts' => [1, 0],
],
2020-09-03 22:51:43 +02:00
'changeContent' => [
'files' => [
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
function add(int $a, int $b): int {
return $a + $b;
}',
],
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'B.php' => '<?php
function hasMethod(object $input, string $method): bool {
return (new ReflectionClass($input))
->hasMethod($method);
}',
],
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'C.php' => '<?php
function add(int $a, int $b): int {
return $a + $b;
}',
],
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'D.php' => '<?php
function hasMethod(object $input, string $method): bool {
return (new ReflectionClass($input))
->hasMethod($method);
}',
],
],
'error_counts' => [0, 0, 0, 0],
],
'missingConstructorForTwoVars' => [
'files' => [
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
class A {
protected int $x;
protected int $y;
}'
],
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
class A {
protected int $x = 0;
protected int $y;
}'
],
],
'error_counts' => [2, 1],
],
'missingConstructorForInheritedProperties' => [
'files' => [
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
abstract class A {
public int $x;
public int $y;
}
class B extends A {
public function __construct() {}
}'
],
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
abstract class A {
public int $x = 0;
public int $y;
}
class B extends A {
public function __construct() {}
}'
],
[
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
abstract class A {
public int $x = 0;
public int $y = 0;
}
class B extends A {
public function __construct() {}
}'
],
],
'error_counts' => [2, 1, 0],
],
2018-10-17 21:52:58 +02:00
];
}
}