mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
17edb2bbe6
* Add tests for keyed integer assignemnt * First pass to get keyed integer assignment working * Fix array assignment to object-like with different key type * Improve treatment of objectlikes for callable and iterable comparisons * Fix array assignment to strings and addition * Convert expression to CNF * Do better at merging property types * Fix array_rand key type
87 lines
2.3 KiB
PHP
87 lines
2.3 KiB
PHP
<?php
|
|
namespace Psalm\Tests;
|
|
|
|
class ListTest extends TestCase
|
|
{
|
|
use Traits\FileCheckerInvalidCodeParseTestTrait;
|
|
use Traits\FileCheckerValidCodeParseTestTrait;
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function providerFileCheckerValidCodeParse()
|
|
{
|
|
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;
|
|
}
|
|
}',
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function providerFileCheckerInvalidCodeParse()
|
|
{
|
|
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' => 'InvalidPropertyAssignment - src/somefile.php:11',
|
|
],
|
|
];
|
|
}
|
|
}
|