1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 12:24:49 +01:00
psalm/tests/ListTest.php
orklah db45ff1ba4
More return types (#4173)
* add native return types

* redundant phpdoc
2021-01-29 11:38:57 +01:00

105 lines
3.0 KiB
PHP

<?php
namespace Psalm\Tests;
use const DIRECTORY_SEPARATOR;
class ListTest extends TestCase
{
use Traits\InvalidCodeAnalysisTestTrait;
use Traits\ValidCodeAnalysisTestTrait;
/**
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
*/
public function providerValidCodeParse(): iterable
{
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 MixedArrayAccess
* @psalm-suppress MixedAssignment
*/
list($a, list($b, $c)) = getMixed();',
'assertions' => [
'$a' => 'mixed',
'$b' => 'mixed',
'$c' => 'mixed',
],
],
];
}
/**
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
*/
public function providerInvalidCodeParse(): iterable
{
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',
],
];
}
}