mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
100 lines
2.7 KiB
PHP
100 lines
2.7 KiB
PHP
<?php
|
|
namespace Psalm\Tests;
|
|
|
|
class ListTest extends TestCase
|
|
{
|
|
use Traits\InvalidCodeAnalysisTestTrait;
|
|
use Traits\ValidCodeAnalysisTestTrait;
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function providerValidCodeParse()
|
|
{
|
|
return [
|
|
'simpleVars' => [
|
|
'<?php
|
|
list($a, $b) = ["a", "b"];',
|
|
'assertions' => [
|
|
'$a' => 'string',
|
|
'$b' => 'string',
|
|
],
|
|
],
|
|
'simpleVarsWithSeparateTypes' => [
|
|
'<?php
|
|
list($a, $b) = ["a", 2];',
|
|
'assertions' => [
|
|
'$a' => 'string',
|
|
'$b' => 'int',
|
|
],
|
|
],
|
|
'simpleVarsWithSeparateTypesInVar' => [
|
|
'<?php
|
|
$bar = ["a", 2];
|
|
list($a, $b) = $bar;',
|
|
'assertions' => [
|
|
'$a' => 'string',
|
|
'$b' => 'int',
|
|
],
|
|
],
|
|
'thisVar' => [
|
|
'<?php
|
|
class A {
|
|
/** @var string */
|
|
public $a = "";
|
|
|
|
/** @var string */
|
|
public $b = "";
|
|
|
|
public function fooFoo(): string
|
|
{
|
|
list($this->a, $this->b) = ["a", "b"];
|
|
|
|
return $this->a;
|
|
}
|
|
}',
|
|
],
|
|
'mixedNestedAssignment' => [
|
|
'<?php
|
|
/** @psalm-suppress MissingReturnType */
|
|
function getMixed() {}
|
|
|
|
/** @psalm-suppress MixedAssignment */
|
|
list($a, list($b, $c)) = getMixed();',
|
|
'assertions' => [
|
|
'$a' => 'mixed',
|
|
'$b' => 'mixed',
|
|
'$c' => 'mixed',
|
|
],
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function providerInvalidCodeParse()
|
|
{
|
|
return [
|
|
'thisVarWithBadType' => [
|
|
'<?php
|
|
class A {
|
|
/** @var int */
|
|
public $a = 0;
|
|
|
|
/** @var string */
|
|
public $b = "";
|
|
|
|
public function fooFoo(): string
|
|
{
|
|
list($this->a, $this->b) = ["a", "b"];
|
|
|
|
return $this->a;
|
|
}
|
|
}',
|
|
'error_message' => 'InvalidPropertyAssignmentValue - src' . DIRECTORY_SEPARATOR . 'somefile.php:11',
|
|
],
|
|
];
|
|
}
|
|
}
|