1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-23 06:11:25 +01:00
psalm/tests/ListTest.php

87 lines
2.3 KiB
PHP
Raw Normal View History

2016-10-30 19:52:35 -04:00
<?php
namespace Psalm\Tests;
class ListTest extends TestCase
2016-10-30 19:52:35 -04:00
{
use Traits\FileCheckerInvalidCodeParseTestTrait;
use Traits\FileCheckerValidCodeParseTestTrait;
2016-10-30 19:52:35 -04:00
2017-01-13 14:07:23 -05:00
/**
* @return array
2017-01-13 14:07:23 -05:00
*/
public function providerFileCheckerValidCodeParse()
2016-10-30 19:52:35 -04:00
{
return [
'simpleVars' => [
'<?php
list($a, $b) = ["a", "b"];',
'assertions' => [
2017-06-29 10:22:49 -04:00
'$a' => 'string',
'$b' => 'string',
2017-05-26 20:05:57 -04:00
],
],
'simpleVarsWithSeparateTypes' => [
'<?php
list($a, $b) = ["a", 2];',
'assertions' => [
2017-06-29 10:22:49 -04:00
'$a' => 'string',
'$b' => 'int',
2017-05-26 20:05:57 -04:00
],
],
'simpleVarsWithSeparateTypesInVar' => [
'<?php
$bar = ["a", 2];
list($a, $b) = $bar;',
'assertions' => [
2017-06-29 10:22:49 -04:00
'$a' => 'int|string',
'$b' => 'int|string',
2017-05-26 20:05:57 -04:00
],
],
'thisVar' => [
'<?php
class A {
/** @var string */
public $a = "";
2017-06-29 10:22:49 -04:00
/** @var string */
public $b = "";
2017-06-29 10:22:49 -04:00
public function fooFoo() : string
{
list($this->a, $this->b) = ["a", "b"];
2017-06-29 10:22:49 -04:00
return $this->a;
}
2017-05-26 20:05:57 -04:00
}',
],
];
2016-10-30 19:52:35 -04:00
}
2017-01-13 14:07:23 -05:00
/**
* @return array
2017-01-13 14:07:23 -05:00
*/
public function providerFileCheckerInvalidCodeParse()
2016-10-30 19:52:35 -04:00
{
return [
'thisVarWithBadType' => [
'<?php
class A {
/** @var int */
public $a = 0;
2017-06-29 10:22:49 -04:00
/** @var string */
public $b = "";
2017-06-29 10:22:49 -04:00
public function fooFoo() : string
{
list($this->a, $this->b) = ["a", "b"];
2017-06-29 10:22:49 -04:00
return $this->a;
}
}',
2017-07-25 17:04:58 -04:00
'error_message' => 'InvalidPropertyAssignment - src/somefile.php:11',
2017-05-26 20:05:57 -04:00
],
];
2016-10-30 19:52:35 -04:00
}
}