2016-12-09 12:07:47 -05:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
|
2017-04-24 23:45:02 -04:00
|
|
|
class ArgTest extends TestCase
|
2016-12-09 12:07:47 -05:00
|
|
|
{
|
2018-11-05 21:57:36 -05:00
|
|
|
use Traits\InvalidCodeAnalysisTestTrait;
|
|
|
|
use Traits\ValidCodeAnalysisTestTrait;
|
2017-01-02 15:31:18 -05:00
|
|
|
|
2017-01-13 14:07:23 -05:00
|
|
|
/**
|
2019-03-01 22:55:20 +02:00
|
|
|
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
|
2017-01-13 14:07:23 -05:00
|
|
|
*/
|
2020-09-12 17:24:05 +02:00
|
|
|
public function providerValidCodeParse(): iterable
|
2016-12-09 12:07:47 -05:00
|
|
|
{
|
2017-04-24 23:45:02 -04:00
|
|
|
return [
|
|
|
|
'callMapClassOptionalArg' => [
|
|
|
|
'<?php
|
2020-06-11 12:19:27 -04:00
|
|
|
class Hello {}
|
|
|
|
$m = new ReflectionMethod(Hello::class, "goodbye");
|
2018-02-06 17:50:32 -08:00
|
|
|
$m->invoke(null, "cool");',
|
2017-05-26 20:05:57 -04:00
|
|
|
],
|
2017-10-28 13:56:29 -04:00
|
|
|
'sortFunctions' => [
|
|
|
|
'<?php
|
|
|
|
$a = ["b" => 5, "a" => 8];
|
|
|
|
ksort($a);
|
|
|
|
$b = ["b" => 5, "a" => 8];
|
|
|
|
sort($b);
|
|
|
|
',
|
|
|
|
'assertions' => [
|
2019-10-16 22:14:33 -07:00
|
|
|
'$a' => 'array{a: int, b: int}',
|
2020-01-07 17:40:23 +01:00
|
|
|
'$b' => 'list<int>',
|
2017-10-28 13:56:29 -04:00
|
|
|
],
|
|
|
|
],
|
|
|
|
'arrayModificationFunctions' => [
|
|
|
|
'<?php
|
|
|
|
$a = ["b" => 5, "a" => 8];
|
2017-12-09 14:53:39 -05:00
|
|
|
array_unshift($a, (bool)rand(0, 1));
|
2017-10-28 13:56:29 -04:00
|
|
|
$b = ["b" => 5, "a" => 8];
|
2017-12-09 14:53:39 -05:00
|
|
|
array_push($b, (bool)rand(0, 1));
|
2017-10-28 13:56:29 -04:00
|
|
|
',
|
|
|
|
'assertions' => [
|
2019-12-29 10:29:03 -05:00
|
|
|
'$a' => 'non-empty-array<int|string, bool|int>',
|
|
|
|
'$b' => 'non-empty-array<int|string, bool|int>',
|
2017-10-28 13:56:29 -04:00
|
|
|
],
|
|
|
|
],
|
2017-10-28 15:33:29 -04:00
|
|
|
'byRefArgAssignment' => [
|
|
|
|
'<?php
|
|
|
|
$a = ["hello", "goodbye"];
|
|
|
|
shuffle($a);
|
|
|
|
$a = [0, 1];',
|
|
|
|
],
|
2018-06-03 20:24:23 -04:00
|
|
|
'correctOrderValidation' => [
|
|
|
|
'<?php
|
|
|
|
function getString(int $i) : string {
|
|
|
|
return rand(0, 1) ? "hello" : "";
|
|
|
|
}
|
|
|
|
|
|
|
|
function takesInt(int $i) : void {}
|
|
|
|
|
|
|
|
$i = rand(0, 10);
|
|
|
|
|
|
|
|
if (!($i = getString($i))) {}',
|
|
|
|
],
|
2018-06-30 10:38:37 -04:00
|
|
|
'allowNullInObjectUnion' => [
|
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @param string|null|object $b
|
|
|
|
*/
|
|
|
|
function foo($b) : void {}
|
|
|
|
foo(null);',
|
|
|
|
],
|
2019-03-19 16:12:32 -04:00
|
|
|
'allowArrayIntScalarForArrayStringWithScalarIgnored' => [
|
|
|
|
'<?php
|
|
|
|
/** @param array<int|string> $arr */
|
|
|
|
function foo(array $arr) : void {
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @return array<int, scalar> */
|
|
|
|
function bar() : array {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2019-03-19 16:45:26 -04:00
|
|
|
/** @psalm-suppress InvalidScalarArgument */
|
|
|
|
foo(bar());',
|
|
|
|
],
|
|
|
|
'allowArrayScalarForArrayStringWithScalarIgnored' => [
|
|
|
|
'<?php declare(strict_types=1);
|
|
|
|
/** @param array<string> $arr */
|
|
|
|
function foo(array $arr) : void {}
|
|
|
|
|
|
|
|
/** @return array<int, scalar> */
|
|
|
|
function bar() : array {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2019-03-19 16:12:32 -04:00
|
|
|
/** @psalm-suppress InvalidScalarArgument */
|
|
|
|
foo(bar());',
|
2019-03-23 14:27:54 -04:00
|
|
|
],
|
2020-01-21 10:13:37 -05:00
|
|
|
'unpackObjectlikeListArgs' => [
|
|
|
|
'<?php
|
|
|
|
$a = [new DateTime(), 1];
|
|
|
|
function f(DateTime $d, int $a): void {}
|
|
|
|
f(...$a);',
|
|
|
|
],
|
2020-03-17 16:16:58 -04:00
|
|
|
'unpackWithoutAlteringArray' => [
|
|
|
|
'<?php
|
|
|
|
function takeVariadicInts(int ...$inputs): void {}
|
|
|
|
|
|
|
|
$a = [3, 5, 7];
|
|
|
|
takeVariadicInts(...$a);',
|
|
|
|
[
|
2020-03-17 17:34:45 -04:00
|
|
|
'$a' => 'non-empty-list<int>'
|
2020-03-17 16:16:58 -04:00
|
|
|
]
|
|
|
|
],
|
2020-03-17 16:30:03 -04:00
|
|
|
'iterableSplat' => [
|
|
|
|
'<?php
|
|
|
|
function foo(iterable $args): int {
|
|
|
|
return intval(...$args);
|
|
|
|
}
|
|
|
|
|
|
|
|
function bar(ArrayIterator $args): int {
|
|
|
|
return intval(...$args);
|
|
|
|
}',
|
|
|
|
],
|
2020-10-02 20:27:01 -04:00
|
|
|
'useNamedArguments' => [
|
|
|
|
'<?php
|
|
|
|
class CustomerData {
|
|
|
|
public function __construct(
|
|
|
|
public string $name,
|
|
|
|
public string $email,
|
|
|
|
public int $age,
|
|
|
|
) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array{age: int, name: string, email: string} $input
|
|
|
|
*/
|
|
|
|
function foo(array $input) : CustomerData {
|
|
|
|
return new CustomerData(
|
|
|
|
age: $input["age"],
|
|
|
|
name: $input["name"],
|
|
|
|
email: $input["email"],
|
|
|
|
);
|
|
|
|
}'
|
|
|
|
],
|
|
|
|
'useNamedArgumentsSimple' => [
|
|
|
|
'<?php
|
|
|
|
function takesArguments(string $name, int $age) : void {}
|
|
|
|
|
|
|
|
takesArguments(name: "hello", age: 5);
|
|
|
|
takesArguments(age: 5, name: "hello");'
|
|
|
|
],
|
|
|
|
'useNamedArgumentsSpread' => [
|
|
|
|
'<?php
|
|
|
|
function takesArguments(string $name, int $age) : void {}
|
|
|
|
|
|
|
|
$args = ["name" => "hello", "age" => 5];
|
|
|
|
takesArguments(...$args);',
|
|
|
|
[],
|
|
|
|
[],
|
|
|
|
'8.0'
|
|
|
|
],
|
2017-04-24 23:45:02 -04:00
|
|
|
];
|
2016-12-09 12:07:47 -05:00
|
|
|
}
|
2017-04-08 09:28:02 -04:00
|
|
|
|
|
|
|
/**
|
2019-03-01 22:55:20 +02:00
|
|
|
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
|
2017-04-08 09:28:02 -04:00
|
|
|
*/
|
2020-09-12 17:24:05 +02:00
|
|
|
public function providerInvalidCodeParse(): iterable
|
2017-04-08 09:28:02 -04:00
|
|
|
{
|
2017-04-24 23:45:02 -04:00
|
|
|
return [
|
|
|
|
'possiblyInvalidArgument' => [
|
|
|
|
'<?php
|
|
|
|
$foo = [
|
|
|
|
"a",
|
|
|
|
["b"],
|
|
|
|
];
|
2017-10-28 13:56:29 -04:00
|
|
|
|
2017-04-24 23:45:02 -04:00
|
|
|
$a = array_map(
|
2018-01-11 15:50:45 -05:00
|
|
|
function (string $uuid): string {
|
2017-04-24 23:45:02 -04:00
|
|
|
return $uuid;
|
|
|
|
},
|
|
|
|
$foo[rand(0, 1)]
|
|
|
|
);',
|
2017-05-26 20:05:57 -04:00
|
|
|
'error_message' => 'PossiblyInvalidArgument',
|
|
|
|
],
|
2018-05-01 14:26:57 -04:00
|
|
|
'possiblyInvalidArgumentWithOverlap' => [
|
|
|
|
'<?php
|
|
|
|
class A {}
|
|
|
|
class B {}
|
|
|
|
class C {}
|
|
|
|
|
|
|
|
$foo = rand(0, 1) ? new A : new B;
|
|
|
|
|
|
|
|
/** @param B|C $b */
|
|
|
|
function bar($b) : void {}
|
|
|
|
|
|
|
|
bar($foo);',
|
|
|
|
'error_message' => 'PossiblyInvalidArgument',
|
|
|
|
],
|
2020-03-23 12:08:05 -04:00
|
|
|
'possiblyInvalidArgumentWithMixed' => [
|
|
|
|
'<?php declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* @psalm-suppress MissingParamType
|
|
|
|
* @psalm-suppress MixedArgument
|
|
|
|
*/
|
|
|
|
function foo($a) : void {
|
|
|
|
if (rand(0, 1)) {
|
|
|
|
$a = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
echo strlen($a);
|
|
|
|
}',
|
|
|
|
'error_message' => 'PossiblyInvalidArgument',
|
|
|
|
],
|
2020-09-30 12:28:13 -04:00
|
|
|
'expectsNonNullAndPassedPossiblyNull' => [
|
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @param mixed|null $mixed_or_null
|
|
|
|
*/
|
|
|
|
function foo($mixed, $mixed_or_null): void {
|
|
|
|
/**
|
|
|
|
* @psalm-suppress MixedArgument
|
|
|
|
*/
|
|
|
|
new Exception($mixed_or_null);
|
|
|
|
}',
|
|
|
|
'error_message' => 'PossiblyNullArgument'
|
|
|
|
],
|
2020-10-02 20:27:01 -04:00
|
|
|
'useInvalidNamedArgument' => [
|
|
|
|
'<?php
|
|
|
|
class CustomerData {
|
|
|
|
public function __construct(
|
|
|
|
public string $name,
|
|
|
|
public string $email,
|
|
|
|
public int $age,
|
|
|
|
) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array{age: int, name: string, email: string} $input
|
|
|
|
*/
|
|
|
|
function foo(array $input) : CustomerData {
|
|
|
|
return new CustomerData(
|
|
|
|
aage: $input["age"],
|
|
|
|
name: $input["name"],
|
|
|
|
email: $input["email"],
|
|
|
|
);
|
|
|
|
}',
|
|
|
|
'error_message' => 'InvalidNamedArgument'
|
|
|
|
],
|
2020-10-02 21:09:37 -04:00
|
|
|
'noNamedArgsMethod' => [
|
|
|
|
'<?php
|
|
|
|
class CustomerData
|
|
|
|
{
|
|
|
|
/** @no-named-arguments */
|
|
|
|
public function __construct(
|
|
|
|
public string $name,
|
|
|
|
public string $email,
|
|
|
|
public int $age,
|
|
|
|
) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array{age: int, name: string, email: string} $input
|
|
|
|
*/
|
|
|
|
function foo(array $input) : CustomerData {
|
|
|
|
return new CustomerData(
|
|
|
|
age: $input["age"],
|
|
|
|
name: $input["name"],
|
|
|
|
email: $input["email"],
|
|
|
|
);
|
|
|
|
}',
|
|
|
|
'error_message' => 'InvalidScalarArgument'
|
|
|
|
],
|
|
|
|
'noNamedArgsFunction' => [
|
|
|
|
'<?php
|
|
|
|
/** @no-named-arguments */
|
|
|
|
function takesArguments(string $name, int $age) : void {}
|
|
|
|
|
|
|
|
takesArguments(age: 5, name: "hello");',
|
|
|
|
'error_message' => 'InvalidScalarArgument'
|
|
|
|
],
|
2017-04-08 09:28:02 -04:00
|
|
|
];
|
|
|
|
}
|
2016-12-09 12:07:47 -05:00
|
|
|
}
|