2016-12-09 18:07:47 +01:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
class ArgTest extends TestCase
|
2016-12-09 18:07:47 +01:00
|
|
|
{
|
2018-11-06 03:57:36 +01:00
|
|
|
use Traits\InvalidCodeAnalysisTestTrait;
|
|
|
|
use Traits\ValidCodeAnalysisTestTrait;
|
2017-01-02 21:31:18 +01:00
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
2019-03-01 21:55:20 +01:00
|
|
|
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
|
2017-01-13 20:07:23 +01:00
|
|
|
*/
|
2018-11-06 03:57:36 +01:00
|
|
|
public function providerValidCodeParse()
|
2016-12-09 18:07:47 +01:00
|
|
|
{
|
2017-04-25 05:45:02 +02:00
|
|
|
return [
|
|
|
|
'callMapClassOptionalArg' => [
|
|
|
|
'<?php
|
|
|
|
$m = new ReflectionMethod("hello", "goodbye");
|
2018-02-07 02:50:32 +01:00
|
|
|
$m->invoke(null, "cool");',
|
2017-05-27 02:05:57 +02:00
|
|
|
],
|
2017-10-28 19:56:29 +02:00
|
|
|
'sortFunctions' => [
|
|
|
|
'<?php
|
|
|
|
$a = ["b" => 5, "a" => 8];
|
|
|
|
ksort($a);
|
|
|
|
$b = ["b" => 5, "a" => 8];
|
|
|
|
sort($b);
|
|
|
|
',
|
|
|
|
'assertions' => [
|
2019-10-17 07:14:33 +02:00
|
|
|
'$a' => 'array{a: int, b: int}',
|
2020-01-07 17:40:23 +01:00
|
|
|
'$b' => 'list<int>',
|
2017-10-28 19:56:29 +02:00
|
|
|
],
|
|
|
|
],
|
|
|
|
'arrayModificationFunctions' => [
|
|
|
|
'<?php
|
|
|
|
$a = ["b" => 5, "a" => 8];
|
2017-12-09 20:53:39 +01:00
|
|
|
array_unshift($a, (bool)rand(0, 1));
|
2017-10-28 19:56:29 +02:00
|
|
|
$b = ["b" => 5, "a" => 8];
|
2017-12-09 20:53:39 +01:00
|
|
|
array_push($b, (bool)rand(0, 1));
|
2017-10-28 19:56:29 +02:00
|
|
|
',
|
|
|
|
'assertions' => [
|
2019-12-29 16:29:03 +01:00
|
|
|
'$a' => 'non-empty-array<int|string, bool|int>',
|
|
|
|
'$b' => 'non-empty-array<int|string, bool|int>',
|
2017-10-28 19:56:29 +02:00
|
|
|
],
|
|
|
|
],
|
2017-10-28 21:33:29 +02:00
|
|
|
'byRefArgAssignment' => [
|
|
|
|
'<?php
|
|
|
|
$a = ["hello", "goodbye"];
|
|
|
|
shuffle($a);
|
|
|
|
$a = [0, 1];',
|
|
|
|
],
|
2018-06-04 02:24:23 +02: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 16:38:37 +02:00
|
|
|
'allowNullInObjectUnion' => [
|
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @param string|null|object $b
|
|
|
|
*/
|
|
|
|
function foo($b) : void {}
|
|
|
|
foo(null);',
|
|
|
|
],
|
2019-03-19 21:12:32 +01:00
|
|
|
'allowArrayIntScalarForArrayStringWithScalarIgnored' => [
|
|
|
|
'<?php
|
|
|
|
/** @param array<int|string> $arr */
|
|
|
|
function foo(array $arr) : void {
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @return array<int, scalar> */
|
|
|
|
function bar() : array {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2019-03-19 21:45:26 +01: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 21:12:32 +01:00
|
|
|
/** @psalm-suppress InvalidScalarArgument */
|
|
|
|
foo(bar());',
|
2019-03-23 19:27:54 +01:00
|
|
|
],
|
2020-01-21 16:13:37 +01:00
|
|
|
'unpackObjectlikeListArgs' => [
|
|
|
|
'<?php
|
|
|
|
$a = [new DateTime(), 1];
|
|
|
|
function f(DateTime $d, int $a): void {}
|
|
|
|
f(...$a);',
|
|
|
|
],
|
2020-03-17 21:16:58 +01:00
|
|
|
'unpackWithoutAlteringArray' => [
|
|
|
|
'<?php
|
|
|
|
function takeVariadicInts(int ...$inputs): void {}
|
|
|
|
|
|
|
|
$a = [3, 5, 7];
|
|
|
|
takeVariadicInts(...$a);',
|
|
|
|
[
|
2020-03-17 22:34:45 +01:00
|
|
|
'$a' => 'non-empty-list<int>'
|
2020-03-17 21:16:58 +01:00
|
|
|
]
|
|
|
|
],
|
2020-03-17 21:30:03 +01:00
|
|
|
'iterableSplat' => [
|
|
|
|
'<?php
|
|
|
|
function foo(iterable $args): int {
|
|
|
|
return intval(...$args);
|
|
|
|
}
|
|
|
|
|
|
|
|
function bar(ArrayIterator $args): int {
|
|
|
|
return intval(...$args);
|
|
|
|
}',
|
|
|
|
],
|
2017-04-25 05:45:02 +02:00
|
|
|
];
|
2016-12-09 18:07:47 +01:00
|
|
|
}
|
2017-04-08 15:28:02 +02:00
|
|
|
|
|
|
|
/**
|
2019-03-01 21:55:20 +01:00
|
|
|
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
|
2017-04-08 15:28:02 +02:00
|
|
|
*/
|
2018-11-06 03:57:36 +01:00
|
|
|
public function providerInvalidCodeParse()
|
2017-04-08 15:28:02 +02:00
|
|
|
{
|
2017-04-25 05:45:02 +02:00
|
|
|
return [
|
|
|
|
'possiblyInvalidArgument' => [
|
|
|
|
'<?php
|
|
|
|
$foo = [
|
|
|
|
"a",
|
|
|
|
["b"],
|
|
|
|
];
|
2017-10-28 19:56:29 +02:00
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
$a = array_map(
|
2018-01-11 21:50:45 +01:00
|
|
|
function (string $uuid): string {
|
2017-04-25 05:45:02 +02:00
|
|
|
return $uuid;
|
|
|
|
},
|
|
|
|
$foo[rand(0, 1)]
|
|
|
|
);',
|
2017-05-27 02:05:57 +02:00
|
|
|
'error_message' => 'PossiblyInvalidArgument',
|
|
|
|
],
|
2018-05-01 20:26:57 +02: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',
|
|
|
|
],
|
2017-04-08 15:28:02 +02:00
|
|
|
];
|
|
|
|
}
|
2016-12-09 18:07:47 +01:00
|
|
|
}
|