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

87 lines
2.4 KiB
PHP
Raw Normal View History

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