1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/tests/FileManipulation/PureAnnotationAdditionTest.php
Matthew Brown f439d6550b
Ensure that all entries in test arrays have explicit keys (#7386)
* Transformation that updates assertions

* Simplify transformation

* Ensure that all tests have keys

* Fix a few remaining keys
2022-01-13 13:49:37 -05:00

217 lines
7.5 KiB
PHP

<?php
namespace Psalm\Tests\FileManipulation;
class PureAnnotationAdditionTest extends FileManipulationTestCase
{
/**
* @return array<string,array{input:string,output:string,php_version:string,issues_to_fix:string[],safe_types:bool}>
*/
public function providerValidCodeParse(): array
{
return [
'addPureAnnotationToFunction' => [
'input' => '<?php
function foo(string $s): string {
return $s;
}',
'output' => '<?php
/**
* @psalm-pure
*/
function foo(string $s): string {
return $s;
}',
'php_version' => '7.4',
'issues_to_fix' => ['MissingPureAnnotation'],
'safe_types' => true,
],
'addPureAnnotationToFunctionWithExistingDocblock' => [
'input' => '<?php
/**
* @return string
*/
function foo(string $s) {
return $s;
}',
'output' => '<?php
/**
* @return string
*
* @psalm-pure
*/
function foo(string $s) {
return $s;
}',
'php_version' => '7.4',
'issues_to_fix' => ['MissingPureAnnotation'],
'safe_types' => true,
],
'dontAddPureAnnotationToImpureFunction' => [
'input' => '<?php
function foo(string $s): string {
echo $s;
return $s;
}',
'output' => '<?php
function foo(string $s): string {
echo $s;
return $s;
}',
'php_version' => '7.4',
'issues_to_fix' => ['MissingPureAnnotation'],
'safe_types' => true,
],
'dontAddPureAnnotationToMutationFreeMethod' => [
'input' => '<?php
class A {
public string $foo = "hello";
public function getFoo() : string {
return $this->foo;
}
}',
'output' => '<?php
class A {
public string $foo = "hello";
public function getFoo() : string {
return $this->foo;
}
}',
'php_version' => '7.4',
'issues_to_fix' => ['MissingPureAnnotation'],
'safe_types' => true,
],
'dontAddPureAnnotationToFunctionWithImpureCall' => [
'input' => '<?php
function foo(string $s): string {
if (file_exists($s)) {
return "";
}
return $s;
}',
'output' => '<?php
function foo(string $s): string {
if (file_exists($s)) {
return "";
}
return $s;
}',
'php_version' => '7.4',
'issues_to_fix' => ['MissingPureAnnotation'],
'safe_types' => true,
],
'dontAddPureAnnotationToFunctionWithImpureClosure' => [
'input' => '<?php
/** @param list<string> $arr */
function foo(array $arr): array {
return array_map($arr, function ($s) { echo $s; return $s;});
}',
'output' => '<?php
/** @param list<string> $arr */
function foo(array $arr): array {
return array_map($arr, function ($s) { echo $s; return $s;});
}',
'php_version' => '7.4',
'issues_to_fix' => ['MissingPureAnnotation'],
'safe_types' => true,
],
'dontAddWhenReferencingThis' => [
'input' => '<?php
abstract class A {
public int $a = 5;
public function foo() : self {
return $this;
}
}
class B extends A {}',
'output' => '<?php
abstract class A {
public int $a = 5;
public function foo() : self {
return $this;
}
}
class B extends A {}',
'php_version' => '7.4',
'issues_to_fix' => ['MissingPureAnnotation'],
'safe_types' => true,
],
'dontAddInChildMethod' => [
'input' => '<?php
class A {
public int $a = 5;
public function foo(string $s) : string {
return $string . $this->a;
}
}
class B extends A {
public function foo(string $s) : string {
return $string;
}
}',
'output' => '<?php
class A {
public int $a = 5;
public function foo(string $s) : string {
return $string . $this->a;
}
}
class B extends A {
public function foo(string $s) : string {
return $string;
}
}',
'php_version' => '7.4',
'issues_to_fix' => ['MissingPureAnnotation'],
'safe_types' => true,
],
'doAddInOtherMethod' => [
'input' => '<?php
class A {
public int $a = 5;
public function foo(string $s) : string {
return $string . $this->a;
}
}
class B extends A {
public function bar(string $s) : string {
return $string;
}
}',
'output' => '<?php
class A {
public int $a = 5;
public function foo(string $s) : string {
return $string . $this->a;
}
}
class B extends A {
/**
* @psalm-pure
*/
public function bar(string $s) : string {
return $string;
}
}',
'php_version' => '7.4',
'issues_to_fix' => ['MissingPureAnnotation'],
'safe_types' => true,
],
];
}
}