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

91 lines
2.5 KiB
PHP
Raw Normal View History

<?php
namespace Psalm\Tests;
class ArgTest extends TestCase
{
use Traits\FileCheckerInvalidCodeParseTestTrait;
use Traits\FileCheckerValidCodeParseTestTrait;
2017-01-13 20:07:23 +01:00
/**
* @return array
2017-01-13 20:07:23 +01:00
*/
public function providerFileCheckerValidCodeParse()
{
return [
'callMapClassOptionalArg' => [
'<?php
$m = new ReflectionMethod("hello", "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<string, int>',
'$b' => 'array<int, 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' => [
'$a' => 'array<string|int, int|bool>',
'$b' => 'array<string|int, int|bool>',
],
],
2017-10-28 21:33:29 +02:00
'byRefArgAssignment' => [
'<?php
$a = ["hello", "goodbye"];
shuffle($a);
$a = [0, 1];',
],
];
}
/**
* @return array
*/
public function providerFileCheckerInvalidCodeParse()
{
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',
],
];
}
}