1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/tests/ArgTest.php
Daniil Gentili 1986c8b4a8
Add support for strict arrays, fix type alias intersection, fix array_is_list assertion on non-lists (#8395)
* Immutable CodeLocation

* Remove excess clones

* Remove external clones

* Remove leftover clones

* Fix final clone issue

* Immutable storages

* Refactoring

* Fixes

* Fixes

* Fix

* Fix

* Fixes

* Simplify

* Fixes

* Fix

* Fixes

* Update

* Fix

* Cache global types

* Fix

* Update

* Update

* Fixes

* Fixes

* Refactor

* Fixes

* Fix

* Fix

* More caching

* Fix

* Fix

* Update

* Update

* Fix

* Fixes

* Update

* Refactor

* Update

* Fixes

* Break one more test

* Fix

* FIx

* Fix

* Fix

* Fix

* Fix

* Improve performance and readability

* Equivalent logic

* Fixes

* Revert

* Revert "Revert"

This reverts commit f9175100c8452c80559234200663fd4c4f4dd889.

* Fix

* Fix reference bug

* Make default TypeVisitor immutable

* Bugfix

* Remove clones

* Partial refactoring

* Refactoring

* Fixes

* Fix

* Fixes

* Fixes

* cs-fix

* Fix final bugs

* Add test

* Misc fixes

* Update

* Fixes

* Experiment with removing different property

* revert "Experiment with removing different property"

This reverts commit ac1156e077fc4ea633530d51096d27b6e88bfdf9.

* Uniform naming

* Uniform naming

* Hack hotfix

* Clean up $_FILES ref #8621

* Undo hack, try fixing properly

* Helper method

* Remove redundant call

* Partially fix bugs

* Cleanup

* Change defaults

* Fix bug

* Fix (?, hope this doesn't break anything else)

* cs-fix

* Review fixes

* Bugfix

* Bugfix

* Improve logic

* Add support for list{} and callable-list{} types, properly implement array_is_list assertions (fixes #8389)

* Default to sealed arrays

* Fix array_merge bug

* Fixes

* Fix

* Sealed type checks

* Properly infer properties-of and get_object_vars on final classes

* Fix array_map zipping

* Fix tests

* Fixes

* Fixes

* Fix more stuff

* Recursively resolve type aliases

* Fix typo

* Fixes

* Fix array_is_list assertion on keyed array

* Add BC docs

* Fixes

* fix

* Update

* Update

* Update

* Update

* Seal arrays with count assertions

* Fix #8528

* Fix

* Update

* Improve sealed array foreach logic

* get_object_vars on template properties

* Fix sealed array assertion reconciler logic

* Improved reconciler

* Add tests

* Single source of truth for test types

* Fix tests

* Fixup tests

* Fixup tests

* Fixup tests

* Update

* Fix tests

* Fix tests

* Final fixes

* Fixes

* Use list syntax only when needed

* Fix tests

* Cs-fix

* Update docs

* Update docs

* Update docs

* Update docs

* Update docs

* Document missing types

* Update docs

* Improve class-string-map docs

* Update

* Update

* I love working on psalm :)

* Keep arrays unsealed by default

* Fixup tests

* Fix syntax mistake

* cs-fix

* Fix typo

* Re-import missing types

* Keep strict types only in return types

* argc/argv fixes

* argc/argv fixes

* Fix test

* Comment-out valinor code, pinging @romm pls merge https://github.com/CuyZ/Valinor/pull/246 so we can add valinor to the psalm docs :)
2022-11-05 22:34:42 +01:00

766 lines
26 KiB
PHP

<?php
namespace Psalm\Tests;
use Psalm\Tests\Traits\InvalidCodeAnalysisTestTrait;
use Psalm\Tests\Traits\ValidCodeAnalysisTestTrait;
class ArgTest extends TestCase
{
use InvalidCodeAnalysisTestTrait;
use ValidCodeAnalysisTestTrait;
/**
*
*/
public function providerValidCodeParse(): iterable
{
return [
'argumentUnpackingLiteral' => [
'code' => '<?php
function add(int $a, int $b, int $c) : int {
return $a + $b + $c;
}
echo add(1, ...[2, 3]);',
],
'arrayPushArgumentUnpackingWithGoodArg' => [
'code' => '<?php
$a = ["foo"];
$b = ["foo", "bar"];
array_push($a, ...$b);',
'assertions' => [
'$a' => 'non-empty-list<string>',
],
],
'arrayMergeArgumentUnpacking' => [
'code' => '<?php
$a = [[1, 2]];
$b = array_merge([], ...$a);',
'assertions' => [
'$b===' => 'strict-list{1, 2}',
],
],
'preserveTypesWhenUnpacking' => [
'code' => '<?php
/**
* @return array<int,array<int,string>>
*/
function getData(): array
{
return [
["a", "b"],
["c", "d"]
];
}
/**
* @return array<int,string>
*/
function f1(): array
{
$data = getData();
return array_merge($data[0], $data[1]);
}
/**
* @return array<int,string>
*/
function f2(): array
{
$data = getData();
return array_merge(...$data);
}
/**
* @return array<int,string>
*/
function f3(): array
{
$data = getData();
return array_merge([], ...$data);
}',
],
'unpackArg' => [
'code' => '<?php
function Foo(string $a, string ...$b) : void {}
/** @return array<array-key, string> */
function Baz(string ...$c) {
Foo(...$c);
return $c;
}',
],
'unpackByRefArg' => [
'code' => '<?php
function example (int &...$x): void {}
$y = 0;
example($y);
$z = [0];
example(...$z);',
'assertions' => [
'$y' => 'int',
'$z' => 'array<int, int>',
],
],
'callMapClassOptionalArg' => [
'code' => '<?php
class Hello {}
$m = new ReflectionMethod(Hello::class, "goodbye");
$m->invoke(null, "cool");',
],
'sortFunctions' => [
'code' => '<?php
$a = ["b" => 5, "a" => 8];
ksort($a);
$b = ["b" => 5, "a" => 8];
sort($b);
$c = [];
sort($c);
',
'assertions' => [
'$a' => 'strict-array{a: int, b: int}',
'$b' => 'non-empty-list<int>',
'$c' => 'list<never>',
],
],
'arrayModificationFunctions' => [
'code' => '<?php
$a = ["b" => 5, "a" => 8];
array_unshift($a, (bool)rand(0, 1));
$b = ["b" => 5, "a" => 8];
array_push($b, (bool)rand(0, 1));
',
'assertions' => [
'$a' => 'non-empty-array<int|string, bool|int>',
'$b' => 'non-empty-array<int|string, bool|int>',
],
],
'byRefArgAssignment' => [
'code' => '<?php
$a = ["hello", "goodbye"];
shuffle($a);
$a = [0, 1];',
],
'correctOrderValidation' => [
'code' => '<?php
function getString(int $i) : string {
return rand(0, 1) ? "hello" : "";
}
function takesInt(int $i) : void {}
$i = rand(0, 10);
if (!($i = getString($i))) {}',
],
'allowNullInObjectUnion' => [
'code' => '<?php
/**
* @param string|null|object $b
*/
function foo($b) : void {}
foo(null);',
],
'allowArrayIntScalarForArrayStringWithArgumentTypeCoercionIgnored' => [
'code' => '<?php
/** @param array<array-key> $arr */
function foo(array $arr) : void {
}
/** @return array<int, scalar> */
function bar() : array {
return [];
}
/** @psalm-suppress ArgumentTypeCoercion */
foo(bar());',
],
'allowArrayScalarForArrayStringWithArgumentTypeCoercionIgnored' => [
'code' => '<?php declare(strict_types=1);
/** @param array<string> $arr */
function foo(array $arr) : void {}
/** @return array<int, scalar> */
function bar() : array {
return [];
}
/** @psalm-suppress ArgumentTypeCoercion */
foo(bar());',
],
'unpackObjectlikeListArgs' => [
'code' => '<?php
$a = [new DateTime(), 1];
function f(DateTime $d, int $a): void {}
f(...$a);',
],
'unpackWithoutAlteringArray' => [
'code' => '<?php
function takeVariadicInts(int ...$inputs): void {}
$a = [3, 5, 7];
takeVariadicInts(...$a);',
'assertions' => [
'$a' => 'non-empty-list<int>'
]
],
'iterableSplat' => [
'code' => '<?php
/** @param iterable<int, mixed> $args */
function foo(iterable $args): int {
return intval(...$args);
}
/** @param ArrayIterator<int, mixed> $args */
function bar(ArrayIterator $args): int {
return intval(...$args);
}',
],
'unpackListWithOptional' => [
'code' => '<?php
function foo(string ...$rest):void {}
$rest = ["zzz"];
if (rand(0,1)) {
$rest[] = "xxx";
}
foo("first", ...$rest);'
],
'useNamedArguments' => [
'code' => '<?php
class CustomerData {
public function __construct(
public string $name,
public string $email,
public int $age,
) {}
}
/**
* @param strict-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' => [
'code' => '<?php
function takesArguments(string $name, int $age) : void {}
takesArguments(name: "hello", age: 5);
takesArguments(age: 5, name: "hello");'
],
'useNamedArgumentsSpread' => [
'code' => '<?php
function takesArguments(string $name, int $age) : void {}
$args = ["name" => "hello", "age" => 5];
takesArguments(...$args);',
'assertions' => [],
'ignored_issues' => [],
'php_version' => '8.0'
],
'useNamedVariadicArguments' => [
'code' => '<?php
function takesArguments(int ...$args) : void {}
takesArguments(age: 5);',
'assertions' => [],
'ignored_issues' => [],
'php_version' => '8.0'
],
'useUnpackedNamedVariadicArguments' => [
'code' => '<?php
function takesArguments(int ...$args) : void {}
takesArguments(...["age" => 5]);',
'assertions' => [],
'ignored_issues' => [],
'php_version' => '8.0'
],
'variadicArgsOptional' => [
'code' => '<?php
bar(...["aaaaa"]);
function bar(string $p1, int $p3 = 10) : void {}'
],
'mkdirNamedParameters' => [
'code' => '<?php declare(strict_types=1);
mkdir("/var/test/123", recursive: true);',
'assertions' => [],
'ignored_issues' => [],
'php_version' => '8.0'
],
'variadicArgumentWithNoNamedArgumentsIsList' => [
'code' => '<?php
class A {
/**
* @no-named-arguments
* @psalm-return list<int>
*/
public function foo(int ...$values): array
{
return $values;
}
}
',
],
'SealedAcceptSealed' => [
'code' => '<?php
/** @param strict-array{test: string} $a */
function a(array $a): string {
return $a["test"];
}
$sealed = ["test" => "str"];
a($sealed);
',
],
];
}
/**
*
*/
public function providerInvalidCodeParse(): iterable
{
return [
'arrayPushArgumentUnpackingWithBadArg' => [
'code' => '<?php
$a = [];
$b = "hello";
$a[] = "foo";
array_push($a, ...$b);',
'error_message' => 'InvalidArgument',
],
'possiblyInvalidArgument' => [
'code' => '<?php
$foo = [
"a",
["b"],
];
$a = array_map(
function (string $uuid): string {
return $uuid;
},
$foo[rand(0, 1)]
);',
'error_message' => 'PossiblyInvalidArgument',
],
'possiblyInvalidArgumentWithOverlap' => [
'code' => '<?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',
],
'possiblyInvalidArgumentWithMixed' => [
'code' => '<?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',
],
'expectsNonNullAndPassedPossiblyNull' => [
'code' => '<?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'
],
'useInvalidNamedArgument' => [
'code' => '<?php
class CustomerData {
public function __construct(
public string $name,
public string $email,
public int $age,
) {}
}
/**
* @param strict-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'
],
'usePositionalArgAfterNamed' => [
'code' => '<?php
final class Person
{
public function __construct(
public string $name,
public int $age,
) { }
}
new Person(name: "", 0);',
'error_message' => 'InvalidNamedArgument'
],
'useUnpackedInvalidNamedArgument' => [
'code' => '<?php
class CustomerData {
public function __construct(
public string $name,
public string $email,
public int $age,
) {}
}
/**
* @param strict-array{aage: int, name: string, email: string} $input
*/
function foo(array $input) : CustomerData {
return new CustomerData(...$input);
}',
'error_message' => 'InvalidNamedArgument',
'ignored_issues' => [],
'php_version' => '8.0'
],
'noNamedArgsMethod' => [
'code' => '<?php
class CustomerData
{
/** @no-named-arguments */
public function __construct(
public string $name,
public string $email,
public int $age,
) {}
}
/**
* @param strict-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' => 'NamedArgumentNotAllowed',
],
'noNamedArgsFunction' => [
'code' => '<?php
/** @no-named-arguments */
function takesArguments(string $name, int $age) : void {}
takesArguments(age: 5, name: "hello");',
'error_message' => 'NamedArgumentNotAllowed',
],
'arrayWithoutAllNamedParameters' => [
'code' => '<?php
class User {
public function __construct(
public int $id,
public string $name,
public int $age
) {}
}
/**
* @param strict-array{id: int, name: string} $data
*/
function processUserDataInvalid(array $data) : User {
return new User(...$data);
}',
'error_message' => 'MixedArgument',
'ignored_issues' => [],
'php_version' => '8.0'
],
'arrayWithoutAllNamedParametersSuppressMixed' => [
'code' => '<?php
class User {
public function __construct(
public int $id,
public string $name,
public int $age
) {}
}
/**
* @param strict-array{id: int, name: string} $data
*/
function processUserDataInvalid(array $data) : User {
/** @psalm-suppress MixedArgument */
return new User(...$data);
}',
'error_message' => 'TooFewArguments',
'ignored_issues' => [],
'php_version' => '8.0'
],
'wrongTypeVariadicArguments' => [
'code' => '<?php
function takesArguments(int ...$args) : void {}
takesArguments(age: "abc");',
'error_message' => 'InvalidScalarArgument',
'ignored_issues' => [],
'php_version' => '8.0'
],
'byrefVarSetsPossible' => [
'code' => '<?php
/**
* @param mixed $a
* @psalm-param-out int $a
*/
function takesByRef(&$a) : void {
$a = 5;
}
if (rand(0, 1)) {
takesByRef($b);
}
echo $b;',
'error_message' => 'PossiblyUndefinedGlobalVariable',
],
'overwriteNamedParam' => [
'code' => '<?php
function test(int $param, int $param2): void {
echo $param + $param2;
}
test(param: 1, param: 2);',
'error_message' => 'InvalidNamedArgument',
'ignored_issues' => [],
'php_version' => '8.0'
],
'overwriteOrderedNamedParam' => [
'code' => '<?php
function test(int $param, int $param2): void {
echo $param + $param2;
}
test(1, param: 2);',
'error_message' => 'InvalidNamedArgument',
'ignored_issues' => [],
'php_version' => '8.0'
],
'overwriteOrderedWithUnpackedNamedParam' => [
'code' => '<?php
function test(int $param, int $param2): void {
echo $param + $param2;
}
test(1, ...["param" => 2]);',
'error_message' => 'InvalidNamedArgument',
'ignored_issues' => [],
'php_version' => '8.0'
],
'variadicArgumentIsNotList' => [
'code' => '<?php
/** @psalm-return list<int> */
function foo(int ...$values): array
{
return $values;
}
',
'error_message' => 'MixedReturnTypeCoercion',
],
'preventUnpackingPossiblyIterable' => [
'code' => '<?php
function foo(int $arg1, int $arg2): void {}
/** @var iterable<int, int>|object */
$test = [1, 2];
foo(...$test);
',
'error_message' => 'PossiblyInvalidArgument'
],
'SKIPPED-preventUnpackingPossiblyArray' => [
'code' => '<?php
function foo(int $arg1, int $arg2): void {}
/** @var array<int, int>|object */
$test = [1, 2];
foo(...$test);
',
'error_message' => 'PossiblyInvalidArgument'
],
'noNamedArguments' => [
'code' => '<?php
/**
* @psalm-suppress UnusedParam
* @no-named-arguments
*/
function foo(int $arg1, int $arg2): void {}
foo(arg2: 0, arg1: 1);
',
'error_message' => 'NamedArgumentNotAllowed',
'ignored_issues' => [],
'php_version' => '8.0',
],
'noNamedArgumentsUnpackIterable' => [
'code' => '<?php
/**
* @psalm-suppress UnusedParam
* @no-named-arguments
*/
function foo(int $arg1, int $arg2): void {}
/** @var iterable<string, int> */
$test = ["arg1" => 1, "arg2" => 2];
foo(...$test);
',
'error_message' => 'NamedArgumentNotAllowed',
'ignored_issues' => [],
'php_version' => '8.0',
],
'variadicArgumentWithNoNamedArgumentsPreventsPassingArrayWithStringKey' => [
'code' => '<?php
/**
* @no-named-arguments
* @psalm-return list<int>
*/
function foo(int ...$values): array
{
return $values;
}
foo(...["a" => 0]);
',
'error_message' => 'NamedArgumentNotAllowed',
],
'unpackNonArrayKeyIterable' => [
'code' => '<?php
/** @psalm-suppress UnusedParam */
function foo(string ...$args): void {}
/** @var Iterator<float, string> */
$test = null;
foo(...$test);
',
'error_message' => 'InvalidArgument',
],
'numericStringIsNotNonFalsy' => [
'code' => '<?php
/** @param non-falsy-string $arg */
function foo(string $arg): string
{
return $arg;
}
/** @return numeric-string */
function bar(): string
{
return "0";
}
foo(bar());
',
'error_message' => 'ArgumentTypeCoercion',
],
'objectIsNotObjectWithProperties' => [
'code' => '<?php
function makeObj(): object {
return (object)["a" => 42];
}
/** @param object{hmm:float} $_o */
function takesObject($_o): void {}
takesObject(makeObj()); // expected: ArgumentTypeCoercion
',
'error_message' => 'ArgumentTypeCoercion',
],
'objectRedundantCast' => [
'code' => '<?php
function makeObj(): object {
return (object)["a" => 42];
}
function takesObject(object $_o): void {}
takesObject((object)makeObj()); // expected: RedundantCast
',
'error_message' => 'RedundantCast',
],
'MissingMandatoryParamWithNamedParams' => [
'code' => '<?php
class User
{
public function __construct(
protected string $name,
protected string $problematicOne,
protected string $id = "",
){}
}
new User(
name: "John",
id: "asd",
);
',
'error_message' => 'TooFewArguments',
],
'SealedRefuseUnsealed' => [
'code' => '<?php
/** @param strict-array{test: string} $a */
function a(array $a): string {
return $a["test"];
}
/** @var array{test: string} */
$unsealed = [];
a($unsealed);
',
'error_message' => 'InvalidArgument',
],
'SealedRefuseSealedExtra' => [
'code' => '<?php
/** @param strict-array{test: string} $a */
function a(array $a): string {
return $a["test"];
}
$sealedExtraKeys = ["test" => "str", "somethingElse" => "test"];
a($sealedExtraKeys);
',
'error_message' => 'InvalidArgument',
],
];
}
}