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

145 lines
3.8 KiB
PHP

<?php
namespace Psalm\Tests;
use PhpParser\ParserFactory;
use PHPUnit_Framework_TestCase;
use Psalm\Checker\FileChecker;
use Psalm\Config;
use Psalm\Context;
class ListTest extends PHPUnit_Framework_TestCase
{
/** @var \PhpParser\Parser */
protected static $parser;
/** @var TestConfig */
protected static $config;
/** @var \Psalm\Checker\ProjectChecker */
protected $project_checker;
/**
* @return void
*/
public static function setUpBeforeClass()
{
self::$parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP7);
self::$config = new TestConfig();
}
/**
* @return void
*/
public function setUp()
{
FileChecker::clearCache();
$this->project_checker = new \Psalm\Checker\ProjectChecker();
$this->project_checker->setConfig(self::$config);
}
/**
* @return void
*/
public function testSimpleVars()
{
$stmts = self::$parser->parse('<?php
list($a, $b) = ["a", "b"];
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context();
$file_checker->visitAndAnalyzeMethods($context);
$this->assertEquals('string', (string) $context->vars_in_scope['$a']);
$this->assertEquals('string', (string) $context->vars_in_scope['$b']);
}
/**
* @return void
*/
public function testSimpleVarsWithSeparateTypes()
{
$stmts = self::$parser->parse('<?php
list($a, $b) = ["a", 2];
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context();
$file_checker->visitAndAnalyzeMethods($context);
$this->assertEquals('string', (string) $context->vars_in_scope['$a']);
$this->assertEquals('int', (string) $context->vars_in_scope['$b']);
}
/**
* @return void
*/
public function testSimpleVarsWithSeparateTypesInVar()
{
$stmts = self::$parser->parse('<?php
$bar = ["a", 2];
list($a, $b) = $bar;
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context();
$file_checker->visitAndAnalyzeMethods($context);
$this->assertEquals('int|string', (string) $context->vars_in_scope['$a']);
$this->assertEquals('int|string', (string) $context->vars_in_scope['$b']);
}
/**
* @return void
*/
public function testThisVar()
{
$stmts = self::$parser->parse('<?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;
}
}
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context();
$file_checker->visitAndAnalyzeMethods($context);
}
/**
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage InvalidPropertyAssignment - somefile.php:11
* @return void
*/
public function testThisVarWithBadType()
{
$stmts = self::$parser->parse('<?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;
}
}
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context();
$file_checker->visitAndAnalyzeMethods($context);
}
}