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

180 lines
5.7 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
*/
2018-11-06 03:57:36 +01:00
public function providerValidCodeParse()
{
return [
'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);
}',
],
];
}
/**
2019-03-01 21:55:20 +01:00
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
*/
2018-11-06 03:57:36 +01:00
public function providerInvalidCodeParse()
{
return [
'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',
],
];
}
}