1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
psalm/tests/ArgTest.php

479 lines
16 KiB
PHP
Raw Normal View History

<?php
namespace Psalm\Tests;
class ArgTest extends TestCase
{
2018-11-06 03:57:36 +01:00
use Traits\InvalidCodeAnalysisTestTrait;
use Traits\ValidCodeAnalysisTestTrait;
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
*/
public function providerValidCodeParse(): iterable
{
return [
2020-10-15 00:51:15 +02:00
'argumentUnpackingLiteral' => [
'<?php
function add(int $a, int $b, int $c) : int {
return $a + $b + $c;
}
echo add(1, ...[2, 3]);',
],
'arrayPushArgumentUnpackingWithGoodArg' => [
'<?php
$a = ["foo"];
$b = ["foo", "bar"];
array_push($a, ...$b);',
'assertions' => [
'$a' => 'non-empty-list<string>',
],
],
'arrayMergeArgumentUnpacking' => [
'<?php
$a = [[1, 2]];
$b = array_merge([], ...$a);',
'assertions' => [
'$b' => 'array{0: int, 1: int}',
],
],
'preserveTypesWhenUnpacking' => [
'<?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' => [
'<?php
function Foo(string $a, string ...$b) : void {}
/** @return array<int, string> */
function Baz(string ...$c) {
Foo(...$c);
return $c;
}',
],
'unpackByRefArg' => [
'<?php
function example (int &...$x): void {}
$y = 0;
example($y);
$z = [0];
example(...$z);',
'assertions' => [
'$y' => 'int',
'$z' => 'array<int, int>',
],
],
'callMapClassOptionalArg' => [
'<?php
2020-06-11 18:19:27 +02:00
class Hello {}
$m = new ReflectionMethod(Hello::class, "goodbye");
$m->invoke(null, "cool");',
2017-05-27 02:05:57 +02:00
],
'sortFunctions' => [
'<?php
$a = ["b" => 5, "a" => 8];
ksort($a);
$b = ["b" => 5, "a" => 8];
sort($b);
',
'assertions' => [
'$a' => 'array{a: int, b: int}',
'$b' => 'list<int>',
],
],
'arrayModificationFunctions' => [
'<?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' => [
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 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))) {}',
],
'allowNullInObjectUnion' => [
'<?php
/**
* @param string|null|object $b
*/
function foo($b) : void {}
foo(null);',
],
'allowArrayIntScalarForArrayStringWithScalarIgnored' => [
'<?php
/** @param array<int|string> $arr */
function foo(array $arr) : void {
}
/** @return array<int, scalar> */
function bar() : array {
return [];
}
/** @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 [];
}
/** @psalm-suppress InvalidScalarArgument */
foo(bar());',
2019-03-23 19:27:54 +01:00
],
'unpackObjectlikeListArgs' => [
'<?php
$a = [new DateTime(), 1];
function f(DateTime $d, int $a): void {}
f(...$a);',
],
'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:30:03 +01:00
'iterableSplat' => [
'<?php
function foo(iterable $args): int {
return intval(...$args);
}
function bar(ArrayIterator $args): int {
return intval(...$args);
}',
],
'unpackListWithOptional' => [
'<?php
function foo(string ...$rest):void {}
$rest = ["zzz"];
if (rand(0,1)) {
$rest[] = "xxx";
}
foo("first", ...$rest);'
],
'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'
],
'useNamedVariadicArguments' => [
'<?php
function takesArguments(int ...$args) : void {}
takesArguments(age: 5);',
[],
[],
'8.0'
],
'variadicArgsOptional' => [
'<?php
bar(...["aaaaa"]);
function bar(string $p1, int $p3 = 10) : void {}'
],
];
}
/**
2019-03-01 21:55:20 +01:00
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
*/
public function providerInvalidCodeParse(): iterable
{
return [
2020-10-15 00:51:15 +02:00
'arrayPushArgumentUnpackingWithBadArg' => [
'<?php
$a = [];
$b = "hello";
$a[] = "foo";
array_push($a, ...$b);',
'error_message' => 'InvalidArgument',
],
'possiblyInvalidArgument' => [
'<?php
$foo = [
"a",
["b"],
];
$a = array_map(
2018-01-11 21:50:45 +01:00
function (string $uuid): string {
return $uuid;
},
$foo[rand(0, 1)]
);',
2017-05-27 02:05:57 +02:00
'error_message' => 'PossiblyInvalidArgument',
],
'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',
],
'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',
],
'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'
],
'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-03 03:09:37 +02: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'
],
2020-10-15 00:51:15 +02:00
'arrayWithoutAllNamedParameters' => [
'<?php
class User {
public function __construct(
public int $id,
public string $name,
public int $age
) {}
}
/**
* @param array{id: int, name: string} $data
*/
function processUserDataInvalid(array $data) : User {
return new User(...$data);
}',
'error_message' => 'MixedArgument',
[],
false,
'8.0'
],
'arrayWithoutAllNamedParametersSuppressMixed' => [
'<?php
class User {
public function __construct(
public int $id,
public string $name,
public int $age
) {}
}
/**
* @param array{id: int, name: string} $data
*/
function processUserDataInvalid(array $data) : User {
/** @psalm-suppress MixedArgument */
return new User(...$data);
}',
'error_message' => 'TooFewArguments',
[],
false,
'8.0'
],
'wrongTypeVariadicArguments' => [
'<?php
function takesArguments(int ...$args) : void {}
takesArguments(age: "abc");',
'error_message' => 'InvalidScalarArgument',
[],
false,
'8.0'
],
'byrefVarSetsPossible' => [
'<?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',
],
];
}
}