1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
psalm/tests/ListTest.php

105 lines
3.0 KiB
PHP
Raw Normal View History

2016-10-31 00:52:35 +01:00
<?php
namespace Psalm\Tests;
use const DIRECTORY_SEPARATOR;
class ListTest extends TestCase
2016-10-31 00:52:35 +01:00
{
2018-11-06 03:57:36 +01:00
use Traits\InvalidCodeAnalysisTestTrait;
use Traits\ValidCodeAnalysisTestTrait;
2016-10-31 00:52:35 +01:00
2017-01-13 20:07:23 +01:00
/**
2019-03-01 21:55:20 +01:00
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
2017-01-13 20:07:23 +01:00
*/
2018-11-06 03:57:36 +01:00
public function providerValidCodeParse()
2016-10-31 00:52:35 +01:00
{
return [
'simpleVars' => [
'<?php
list($a, $b) = ["a", "b"];',
'assertions' => [
2017-06-29 16:22:49 +02:00
'$a' => 'string',
'$b' => 'string',
2017-05-27 02:05:57 +02:00
],
],
'simpleVarsWithSeparateTypes' => [
'<?php
list($a, $b) = ["a", 2];',
'assertions' => [
2017-06-29 16:22:49 +02:00
'$a' => 'string',
'$b' => 'int',
2017-05-27 02:05:57 +02:00
],
],
'simpleVarsWithSeparateTypesInVar' => [
'<?php
$bar = ["a", 2];
list($a, $b) = $bar;',
'assertions' => [
'$a' => 'string',
'$b' => 'int',
2017-05-27 02:05:57 +02:00
],
],
'thisVar' => [
'<?php
class A {
/** @var string */
public $a = "";
2017-06-29 16:22:49 +02:00
/** @var string */
public $b = "";
2017-06-29 16:22:49 +02:00
2018-01-11 21:50:45 +01:00
public function fooFoo(): string
{
list($this->a, $this->b) = ["a", "b"];
2017-06-29 16:22:49 +02:00
return $this->a;
}
2017-05-27 02:05:57 +02:00
}',
],
'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',
],
],
];
2016-10-31 00:52:35 +01:00
}
2017-01-13 20:07:23 +01:00
/**
2019-03-01 21:55:20 +01:00
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
2017-01-13 20:07:23 +01:00
*/
2018-11-06 03:57:36 +01:00
public function providerInvalidCodeParse()
2016-10-31 00:52:35 +01:00
{
return [
'thisVarWithBadType' => [
'<?php
class A {
/** @var int */
public $a = 0;
2017-06-29 16:22:49 +02:00
/** @var string */
public $b = "";
2017-06-29 16:22:49 +02:00
2018-01-11 21:50:45 +01:00
public function fooFoo(): string
{
list($this->a, $this->b) = ["a", "b"];
2017-06-29 16:22:49 +02:00
return $this->a;
}
}',
'error_message' => 'InvalidPropertyAssignmentValue - src' . DIRECTORY_SEPARATOR . 'somefile.php:11',
2017-05-27 02:05:57 +02:00
],
];
2016-10-31 00:52:35 +01:00
}
}