2016-10-31 00:52:35 +01:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
class ListTest extends TestCase
|
2016-10-31 00:52:35 +01:00
|
|
|
{
|
2017-04-25 05:45:02 +02:00
|
|
|
use Traits\FileCheckerInvalidCodeParseTestTrait;
|
|
|
|
use Traits\FileCheckerValidCodeParseTestTrait;
|
2016-10-31 00:52:35 +01:00
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
2017-04-25 05:45:02 +02:00
|
|
|
* @return array
|
2017-01-13 20:07:23 +01:00
|
|
|
*/
|
2017-04-25 05:45:02 +02:00
|
|
|
public function providerFileCheckerValidCodeParse()
|
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' => [
|
|
|
|
['string' => '$a'],
|
|
|
|
['string' => '$b']
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'simpleVarsWithSeparateTypes' => [
|
|
|
|
'<?php
|
|
|
|
list($a, $b) = ["a", 2];',
|
|
|
|
'assertions' => [
|
|
|
|
['string' => '$a'],
|
|
|
|
['int' => '$b']
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'simpleVarsWithSeparateTypesInVar' => [
|
|
|
|
'<?php
|
|
|
|
$bar = ["a", 2];
|
|
|
|
list($a, $b) = $bar;',
|
|
|
|
'assertions' => [
|
|
|
|
['int|string' => '$a'],
|
|
|
|
['int|string' => '$b']
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'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;
|
|
|
|
}
|
|
|
|
}'
|
|
|
|
]
|
|
|
|
];
|
2016-10-31 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
2017-04-25 05:45:02 +02:00
|
|
|
* @return array
|
2017-01-13 20:07:23 +01:00
|
|
|
*/
|
2017-04-25 05:45:02 +02:00
|
|
|
public function providerFileCheckerInvalidCodeParse()
|
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;
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
public $b = "";
|
|
|
|
|
|
|
|
public function fooFoo() : string
|
|
|
|
{
|
|
|
|
list($this->a, $this->b) = ["a", "b"];
|
|
|
|
|
|
|
|
return $this->a;
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
'error_message' => 'InvalidPropertyAssignment - somefile.php:11'
|
|
|
|
]
|
|
|
|
];
|
2016-10-31 00:52:35 +01:00
|
|
|
}
|
|
|
|
}
|