2016-10-30 19:52:35 -04:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
|
2017-04-24 23:45:02 -04:00
|
|
|
class ListTest extends TestCase
|
2016-10-30 19:52:35 -04:00
|
|
|
{
|
2018-11-05 21:57:36 -05:00
|
|
|
use Traits\InvalidCodeAnalysisTestTrait;
|
|
|
|
use Traits\ValidCodeAnalysisTestTrait;
|
2016-10-30 19:52:35 -04:00
|
|
|
|
2017-01-13 14:07:23 -05:00
|
|
|
/**
|
2017-04-24 23:45:02 -04:00
|
|
|
* @return array
|
2017-01-13 14:07:23 -05:00
|
|
|
*/
|
2018-11-05 21:57:36 -05:00
|
|
|
public function providerValidCodeParse()
|
2016-10-30 19:52:35 -04:00
|
|
|
{
|
2017-04-24 23:45:02 -04:00
|
|
|
return [
|
|
|
|
'simpleVars' => [
|
|
|
|
'<?php
|
|
|
|
list($a, $b) = ["a", "b"];',
|
|
|
|
'assertions' => [
|
2017-06-29 10:22:49 -04:00
|
|
|
'$a' => 'string',
|
|
|
|
'$b' => 'string',
|
2017-05-26 20:05:57 -04:00
|
|
|
],
|
2017-04-24 23:45:02 -04:00
|
|
|
],
|
|
|
|
'simpleVarsWithSeparateTypes' => [
|
|
|
|
'<?php
|
|
|
|
list($a, $b) = ["a", 2];',
|
|
|
|
'assertions' => [
|
2017-06-29 10:22:49 -04:00
|
|
|
'$a' => 'string',
|
|
|
|
'$b' => 'int',
|
2017-05-26 20:05:57 -04:00
|
|
|
],
|
2017-04-24 23:45:02 -04:00
|
|
|
],
|
|
|
|
'simpleVarsWithSeparateTypesInVar' => [
|
|
|
|
'<?php
|
|
|
|
$bar = ["a", 2];
|
|
|
|
list($a, $b) = $bar;',
|
|
|
|
'assertions' => [
|
2017-12-18 18:47:17 -05:00
|
|
|
'$a' => 'string',
|
|
|
|
'$b' => 'int',
|
2017-05-26 20:05:57 -04:00
|
|
|
],
|
2017-04-24 23:45:02 -04:00
|
|
|
],
|
|
|
|
'thisVar' => [
|
|
|
|
'<?php
|
|
|
|
class A {
|
|
|
|
/** @var string */
|
|
|
|
public $a = "";
|
2017-06-29 10:22:49 -04:00
|
|
|
|
2017-04-24 23:45:02 -04:00
|
|
|
/** @var string */
|
|
|
|
public $b = "";
|
2017-06-29 10:22:49 -04:00
|
|
|
|
2018-01-11 15:50:45 -05:00
|
|
|
public function fooFoo(): string
|
2017-04-24 23:45:02 -04:00
|
|
|
{
|
|
|
|
list($this->a, $this->b) = ["a", "b"];
|
2017-06-29 10:22:49 -04:00
|
|
|
|
2017-04-24 23:45:02 -04:00
|
|
|
return $this->a;
|
|
|
|
}
|
2017-05-26 20:05:57 -04:00
|
|
|
}',
|
|
|
|
],
|
2017-12-18 23:13:18 -05:00
|
|
|
'mixedNestedAssignment' => [
|
|
|
|
'<?php
|
|
|
|
/** @psalm-suppress MissingReturnType */
|
|
|
|
function getMixed() {}
|
|
|
|
|
|
|
|
/** @psalm-suppress MixedAssignment */
|
|
|
|
list($a, list($b, $c)) = getMixed();',
|
|
|
|
'assertions' => [
|
|
|
|
'$a' => 'mixed',
|
|
|
|
'$b' => 'mixed',
|
|
|
|
'$c' => 'mixed',
|
|
|
|
],
|
|
|
|
],
|
2017-04-24 23:45:02 -04:00
|
|
|
];
|
2016-10-30 19:52:35 -04:00
|
|
|
}
|
|
|
|
|
2017-01-13 14:07:23 -05:00
|
|
|
/**
|
2017-04-24 23:45:02 -04:00
|
|
|
* @return array
|
2017-01-13 14:07:23 -05:00
|
|
|
*/
|
2018-11-05 21:57:36 -05:00
|
|
|
public function providerInvalidCodeParse()
|
2016-10-30 19:52:35 -04:00
|
|
|
{
|
2017-04-24 23:45:02 -04:00
|
|
|
return [
|
|
|
|
'thisVarWithBadType' => [
|
|
|
|
'<?php
|
|
|
|
class A {
|
|
|
|
/** @var int */
|
|
|
|
public $a = 0;
|
2017-06-29 10:22:49 -04:00
|
|
|
|
2017-04-24 23:45:02 -04:00
|
|
|
/** @var string */
|
|
|
|
public $b = "";
|
2017-06-29 10:22:49 -04:00
|
|
|
|
2018-01-11 15:50:45 -05:00
|
|
|
public function fooFoo(): string
|
2017-04-24 23:45:02 -04:00
|
|
|
{
|
|
|
|
list($this->a, $this->b) = ["a", "b"];
|
2017-06-29 10:22:49 -04:00
|
|
|
|
2017-04-24 23:45:02 -04:00
|
|
|
return $this->a;
|
|
|
|
}
|
|
|
|
}',
|
2018-04-13 01:42:24 +02:00
|
|
|
'error_message' => 'InvalidPropertyAssignmentValue - src' . DIRECTORY_SEPARATOR . 'somefile.php:11',
|
2017-05-26 20:05:57 -04:00
|
|
|
],
|
2017-04-24 23:45:02 -04:00
|
|
|
];
|
2016-10-30 19:52:35 -04:00
|
|
|
}
|
|
|
|
}
|