1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/tests/FileManipulation/ParamTypeManipulationTest.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

322 lines
11 KiB
PHP

<?php
namespace Psalm\Tests\FileManipulation;
class ParamTypeManipulationTest 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 [
'fixMismatchingDocblockParamType70' => [
'input' => '<?php
/**
* @param int $s
*/
function foo(string $s): string {
return "hello";
}',
'output' => '<?php
/**
* @param string $s
*/
function foo(string $s): string {
return "hello";
}',
'php_version' => '7.0',
'issues_to_fix' => ['MismatchingDocblockParamType'],
'safe_types' => true,
],
'fixNamespacedMismatchingDocblockParamsType70' => [
'input' => '<?php
namespace Foo\Bar {
class A {
/**
* @param \B $b
* @param \C $c
*/
function foo(B $b, C $c): string {
return "hello";
}
}
class B {}
class C {}
}',
'output' => '<?php
namespace Foo\Bar {
class A {
/**
* @param B $b
* @param C $c
*/
function foo(B $b, C $c): string {
return "hello";
}
}
class B {}
class C {}
}',
'php_version' => '7.0',
'issues_to_fix' => ['MismatchingDocblockParamType'],
'safe_types' => true,
],
'noStringParamType' => [
'input' => '<?php
class C {
public function fooFoo($a): void {}
}
(new C)->fooFoo("hello");',
'output' => '<?php
class C {
/**
* @psalm-param \'hello\' $a
*/
public function fooFoo(string $a): void {}
}
(new C)->fooFoo("hello");',
'php_version' => '7.1',
'issues_to_fix' => ['MissingParamType'],
'safe_types' => true,
],
'noStringParamTypeWithVariableCall' => [
'input' => '<?php
class C {
public function fooFoo($a): void {}
}
/** @var mixed */
$c = null;
$c->fooFoo("hello");
(new C)->fooFoo("hello");',
'output' => '<?php
class C {
/**
* @param string $a
*
* @psalm-param \'hello\' $a
*/
public function fooFoo($a): void {}
}
/** @var mixed */
$c = null;
$c->fooFoo("hello");
(new C)->fooFoo("hello");',
'php_version' => '7.1',
'issues_to_fix' => ['MissingParamType'],
'safe_types' => true,
],
'noStringParamTypeWithDocblockCall' => [
'input' => '<?php
class C {
public function fooFoo($a): void {}
}
/**
* @param string $a
*/
function callsWithString($a): void {
(new C)->fooFoo($a);
}',
'output' => '<?php
class C {
/**
* @param string $a
*/
public function fooFoo($a): void {}
}
/**
* @param string $a
*/
function callsWithString($a): void {
(new C)->fooFoo($a);
}',
'php_version' => '7.1',
'issues_to_fix' => ['MissingParamType'],
'safe_types' => true,
],
'noStringParamType56' => [
'input' => '<?php
class C {
public function fooFoo($a): void {}
}
(new C)->fooFoo("hello");',
'output' => '<?php
class C {
/**
* @param string $a
*
* @psalm-param \'hello\' $a
*/
public function fooFoo($a): void {}
}
(new C)->fooFoo("hello");',
'php_version' => '5.6',
'issues_to_fix' => ['MissingParamType'],
'safe_types' => true,
],
'noBoolParamTypeWithDefault' => [
'input' => '<?php
class C {
public function fooFoo($a = true): void {}
}
(new C)->fooFoo(false);',
'output' => '<?php
class C {
public function fooFoo(bool $a = true): void {}
}
(new C)->fooFoo(false);',
'php_version' => '7.1',
'issues_to_fix' => ['MissingParamType'],
'safe_types' => true,
],
'noStringParamTypeParent' => [
'input' => '<?php
class C {
public function fooFoo($a): void {}
}
class D extends C {}
(new D)->fooFoo("hello");',
'output' => '<?php
class C {
/**
* @psalm-param \'hello\' $a
*/
public function fooFoo(string $a): void {}
}
class D extends C {}
(new D)->fooFoo("hello");',
'php_version' => '7.1',
'issues_to_fix' => ['MissingParamType'],
'safe_types' => true,
],
'stringParamTypeNoOp' => [
'input' => '<?php
class C {
public function fooFoo(string $a): void {}
}
(new C)->fooFoo("hello");',
'output' => '<?php
class C {
public function fooFoo(string $a): void {}
}
(new C)->fooFoo("hello");',
'php_version' => '7.1',
'issues_to_fix' => ['MissingParamType'],
'safe_types' => true,
],
'addMissingByRefParamType' => [
'input' => '<?php
class C {
public function foo(&$bar) : void {
$bar .= " me";
}
}
$a = "hello";
(new C)->foo($a);',
'output' => '<?php
class C {
/**
* @psalm-param \'hello\' $bar
*/
public function foo(string &$bar) : void {
$bar .= " me";
}
}
$a = "hello";
(new C)->foo($a);',
'php_version' => '7.1',
'issues_to_fix' => ['MissingParamType'],
'safe_types' => true,
],
'NamespacedParamNeeded' => [
'input' => '<?php
class C {
public function foo($bar) : void {
echo $bar;
}
}
$a = stdClass::class;
(new C)->foo($a);',
'output' => '<?php
class C {
/**
* @psalm-param stdClass::class $bar
*/
public function foo(string $bar) : void {
echo $bar;
}
}
$a = stdClass::class;
(new C)->foo($a);',
'php_version' => '7.1',
'issues_to_fix' => ['MissingParamType'],
'safe_types' => true,
],
'StaticParamForbidden' => [
'input' => '<?php
class A {
private function foo($bar) : void {
}
public function test(): void {
$this->foo($this->ret());
}
public function ret(): static {
return $this;
}
}
class B extends A {
}
(new A)->test();
(new A)->test();
',
'output' => '<?php
class A {
/**
* @param static $bar
*/
private function foo($bar) : void {
}
public function test(): void {
$this->foo($this->ret());
}
public function ret(): static {
return $this;
}
}
class B extends A {
}
(new A)->test();
(new A)->test();
',
'php_version' => '8.0',
'issues_to_fix' => ['MissingParamType'],
'safe_types' => true,
],
];
}
}