1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00
psalm/tests/FileUpdates/ErrorFixTest.php

271 lines
8.5 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\FileAnalyzer;
use Psalm\Internal\Analyzer\ProjectAnalyzer;
use Psalm\Internal\Provider\Providers;
2018-10-17 21:52:58 +02:00
use Psalm\Tests\TestConfig;
use Psalm\Tests\Internal\Provider;
2018-10-17 21:52:58 +02:00
class ErrorFixTest extends \Psalm\Tests\TestCase
{
/**
* @return void
*/
public function setUp()
{
parent::setUp();
2018-11-06 03:57:36 +01:00
FileAnalyzer::clearCache();
2018-10-17 21:52:58 +02:00
$this->file_provider = new \Psalm\Tests\Internal\Provider\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()
);
2018-11-11 18:01:14 +01:00
$this->project_analyzer = new ProjectAnalyzer(
2018-10-17 21:52:58 +02:00
$config,
$providers,
false,
true,
2018-11-06 03:57:36 +01:00
ProjectAnalyzer::TYPE_CONSOLE,
2018-10-17 21:52:58 +02:00
1,
false
);
}
/**
* @dataProvider providerTestErrorFix
*
* @param array<string, string> $start_files
* @param array<string, string> $middle_files
* @param array<string, string> $end_files
* @param array<int, int> $error_counts
* @param array<string, string> $error_levels
*
* @return void
*/
public function testErrorFix(
array $start_files,
array $middle_files,
array $end_files,
array $error_counts,
array $error_levels = []
) {
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);
}
// first batch
foreach ($start_files as $file_path => $contents) {
$this->file_provider->registerFile($file_path, $contents);
$codebase->addFilesToAnalyze([$file_path => $file_path]);
}
$codebase->scanFiles();
2018-11-11 18:01:14 +01:00
$codebase->analyzer->analyzeFiles($this->project_analyzer, 1, false);
2018-10-17 21:52:58 +02:00
$data = \Psalm\IssueBuffer::clear();
$this->assertSame($error_counts[0], count($data));
// second batch
foreach ($middle_files as $file_path => $contents) {
$this->file_provider->registerFile($file_path, $contents);
}
2018-11-11 18:01:14 +01:00
$codebase->reloadFiles($this->project_analyzer, array_keys($middle_files));
2018-10-17 21:52:58 +02:00
2018-11-11 18:01:14 +01:00
$codebase->analyzer->analyzeFiles($this->project_analyzer, 1, false);
2018-10-17 21:52:58 +02:00
$data = \Psalm\IssueBuffer::clear();
$this->assertSame($error_counts[1], count($data));
// third batch
2018-10-17 21:52:58 +02:00
foreach ($end_files as $file_path => $contents) {
$this->file_provider->registerFile($file_path, $contents);
}
2018-11-11 18:01:14 +01:00
$codebase->reloadFiles($this->project_analyzer, array_keys($end_files));
2018-10-17 21:52:58 +02:00
foreach ($end_files as $file_path => $_) {
2018-10-17 21:52:58 +02:00
$codebase->addFilesToAnalyze([$file_path => $file_path]);
}
2018-11-11 18:01:14 +01:00
$codebase->analyzer->analyzeFiles($this->project_analyzer, 1, false);
2018-10-17 21:52:58 +02:00
$data = \Psalm\IssueBuffer::clear();
$this->assertSame($error_counts[2], count($data));
}
/**
* @return array
*/
public function providerTestErrorFix()
{
return [
'fixMissingColonSyntaxError' => [
'start_files' => [
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
public function foo() : void {
$a = 5;
echo $a;
}
}',
],
'middle_files' => [
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
public function foo() : void {
$a = 5
echo $a;
}
}',
],
'end_files' => [
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
public function foo() : void {
$a = 5;
echo $a;
}
}',
],
'error_counts' => [0, 1, 0],
],
'addReturnTypesToSingleMethod' => [
'start_files' => [
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
public function foo() {
return 5;
}
public function bar() {
return $this->foo();
}
}',
],
'middle_files' => [
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
public function foo() : int {
return 5;
}
public function bar() {
return $this->foo();
}
}',
],
'end_files' => [
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
public function foo() : int {
return 5;
}
public function bar() : int {
return $this->foo();
}
}',
],
'error_counts' => [2, 1, 0],
[
'MissingReturnType' => \Psalm\Config::REPORT_INFO,
]
],
'traitMethodRename' => [
'start_files' => [
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
use T;
public function foo() : void {
echo $this->bar();
}
}',
getcwd() . DIRECTORY_SEPARATOR . 'T.php' => '<?php
namespace Foo;
trait T {
public function bar() : string {
return "hello";
}
}',
],
'middle_files' => [
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
use T;
public function foo() : void {
echo $this->bar();
}
}',
getcwd() . DIRECTORY_SEPARATOR . 'T.php' => '<?php
namespace Foo;
trait T {
public function bat() : string {
return "hello";
}
}',
],
'end_files' => [
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
namespace Foo;
class A {
use T;
public function foo() : void {
echo $this->bar();
}
}',
getcwd() . DIRECTORY_SEPARATOR . 'T.php' => '<?php
namespace Foo;
trait T {
public function bar() : string {
return "hello";
}
}',
],
'error_positions' => [0, 1, 0],
],
2018-10-17 21:52:58 +02:00
];
}
}