2016-10-31 00:52:35 +01:00
|
|
|
<?php
|
2021-12-15 04:58:32 +01:00
|
|
|
|
2016-10-31 00:52:35 +01:00
|
|
|
namespace Psalm\Tests;
|
|
|
|
|
2021-12-04 21:55:53 +01:00
|
|
|
use Psalm\Tests\Traits\InvalidCodeAnalysisTestTrait;
|
|
|
|
use Psalm\Tests\Traits\ValidCodeAnalysisTestTrait;
|
|
|
|
|
2019-06-26 22:52:29 +02:00
|
|
|
use const DIRECTORY_SEPARATOR;
|
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
class ListTest extends TestCase
|
2016-10-31 00:52:35 +01:00
|
|
|
{
|
2021-12-04 21:55:53 +01:00
|
|
|
use InvalidCodeAnalysisTestTrait;
|
|
|
|
use ValidCodeAnalysisTestTrait;
|
2016-10-31 00:52:35 +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
|
|
|
*/
|
2020-09-12 17:24:05 +02:00
|
|
|
public function providerValidCodeParse(): iterable
|
2016-10-31 00:52:35 +01:00
|
|
|
{
|
2017-04-25 05:45:02 +02:00
|
|
|
return [
|
|
|
|
'simpleVars' => [
|
|
|
|
'<?php
|
|
|
|
list($a, $b) = ["a", "b"];',
|
|
|
|
'assertions' => [
|
2017-06-29 16:22:49 +02:00
|
|
|
'$a' => 'string',
|
|
|
|
'$b' => 'string',
|
2017-05-27 02:05:57 +02:00
|
|
|
],
|
2017-04-25 05:45:02 +02:00
|
|
|
],
|
|
|
|
'simpleVarsWithSeparateTypes' => [
|
|
|
|
'<?php
|
|
|
|
list($a, $b) = ["a", 2];',
|
|
|
|
'assertions' => [
|
2017-06-29 16:22:49 +02:00
|
|
|
'$a' => 'string',
|
|
|
|
'$b' => 'int',
|
2017-05-27 02:05:57 +02:00
|
|
|
],
|
2017-04-25 05:45:02 +02:00
|
|
|
],
|
|
|
|
'simpleVarsWithSeparateTypesInVar' => [
|
|
|
|
'<?php
|
|
|
|
$bar = ["a", 2];
|
|
|
|
list($a, $b) = $bar;',
|
|
|
|
'assertions' => [
|
2017-12-19 00:47:17 +01:00
|
|
|
'$a' => 'string',
|
|
|
|
'$b' => 'int',
|
2017-05-27 02:05:57 +02:00
|
|
|
],
|
2017-04-25 05:45:02 +02:00
|
|
|
],
|
|
|
|
'thisVar' => [
|
|
|
|
'<?php
|
|
|
|
class A {
|
|
|
|
/** @var string */
|
|
|
|
public $a = "";
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
/** @var string */
|
|
|
|
public $b = "";
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2018-01-11 21:50:45 +01:00
|
|
|
public function fooFoo(): string
|
2017-04-25 05:45:02 +02:00
|
|
|
{
|
|
|
|
list($this->a, $this->b) = ["a", "b"];
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
return $this->a;
|
|
|
|
}
|
2017-05-27 02:05:57 +02:00
|
|
|
}',
|
|
|
|
],
|
2017-12-19 05:13:18 +01:00
|
|
|
'mixedNestedAssignment' => [
|
|
|
|
'<?php
|
|
|
|
/** @psalm-suppress MissingReturnType */
|
|
|
|
function getMixed() {}
|
|
|
|
|
2020-05-03 05:37:59 +02:00
|
|
|
/**
|
|
|
|
* @psalm-suppress MixedArrayAccess
|
|
|
|
* @psalm-suppress MixedAssignment
|
|
|
|
*/
|
2017-12-19 05:13:18 +01:00
|
|
|
list($a, list($b, $c)) = getMixed();',
|
|
|
|
'assertions' => [
|
|
|
|
'$a' => 'mixed',
|
|
|
|
'$b' => 'mixed',
|
|
|
|
'$c' => 'mixed',
|
|
|
|
],
|
|
|
|
],
|
2021-03-20 02:44:44 +01:00
|
|
|
'explicitLiteralKey' => [
|
|
|
|
'<?php
|
|
|
|
/** @param list<int> $a */
|
|
|
|
function takesList($a): void {}
|
|
|
|
|
|
|
|
$a = [1, 1 => 2, 3];
|
|
|
|
takesList($a);',
|
|
|
|
],
|
2017-04-25 05:45:02 +02:00
|
|
|
];
|
2016-10-31 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
2021-03-20 02:44:44 +01:00
|
|
|
* @return iterable<string,array{string,error_message:string,1?:string[],2?:bool,3?:string}>
|
2017-01-13 20:07:23 +01:00
|
|
|
*/
|
2020-09-12 17:24:05 +02:00
|
|
|
public function providerInvalidCodeParse(): iterable
|
2016-10-31 00:52:35 +01:00
|
|
|
{
|
2017-04-25 05:45:02 +02:00
|
|
|
return [
|
|
|
|
'thisVarWithBadType' => [
|
|
|
|
'<?php
|
|
|
|
class A {
|
|
|
|
/** @var int */
|
|
|
|
public $a = 0;
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
/** @var string */
|
|
|
|
public $b = "";
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2018-01-11 21:50:45 +01:00
|
|
|
public function fooFoo(): string
|
2017-04-25 05:45:02 +02:00
|
|
|
{
|
|
|
|
list($this->a, $this->b) = ["a", "b"];
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
return $this->a;
|
|
|
|
}
|
|
|
|
}',
|
2018-04-13 01:42:24 +02:00
|
|
|
'error_message' => 'InvalidPropertyAssignmentValue - src' . DIRECTORY_SEPARATOR . 'somefile.php:11',
|
2017-05-27 02:05:57 +02:00
|
|
|
],
|
2021-03-20 02:44:44 +01:00
|
|
|
'explicitVariableKey' => [
|
|
|
|
'<?php
|
|
|
|
/** @param list<int> $a */
|
|
|
|
function takesList($a): void {}
|
|
|
|
|
|
|
|
/** @return array-key */
|
|
|
|
function getKey() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
$a = [getKey() => 1];
|
|
|
|
takesList($a);',
|
|
|
|
'error_message' => 'MixedArgumentTypeCoercion',
|
|
|
|
],
|
2017-04-25 05:45:02 +02:00
|
|
|
];
|
2016-10-31 00:52:35 +01:00
|
|
|
}
|
|
|
|
}
|