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

505 lines
12 KiB
PHP
Raw Normal View History

2016-06-20 22:18:47 +02:00
<?php
2016-07-26 00:37:44 +02:00
namespace Psalm\Tests;
2016-06-20 22:18:47 +02:00
use PhpParser\ParserFactory;
use PHPUnit_Framework_TestCase;
2016-11-02 07:29:00 +01:00
use Psalm\Checker\FileChecker;
use Psalm\Config;
2016-06-20 22:18:47 +02:00
class ScopeTest extends PHPUnit_Framework_TestCase
{
2016-11-02 07:29:00 +01:00
protected static $parser;
protected static $file_filter;
2016-06-20 22:18:47 +02:00
public static function setUpBeforeClass()
{
2016-11-02 07:29:00 +01:00
self::$parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP7);
2016-06-20 22:55:12 +02:00
2016-11-02 07:29:00 +01:00
$config = Config::getInstance();
$config->throw_exception = true;
2016-11-02 07:29:00 +01:00
self::$file_filter = null;
2016-06-20 22:18:47 +02:00
}
public function setUp()
{
2016-11-02 07:29:00 +01:00
FileChecker::clearCache();
2016-06-20 22:18:47 +02:00
}
2016-09-22 18:26:24 +02:00
/**
2016-11-02 07:29:00 +01:00
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage PossiblyUndefinedVariable - somefile.php:6 - Possibly undefined variable $b, first seen
* on line 3
2016-09-22 18:26:24 +02:00
*/
public function testPossiblyUndefinedVarInIf()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-09-22 18:26:24 +02:00
if (rand(0,100) === 10) {
$b = "s";
}
echo $b;
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-09-22 18:26:24 +02:00
$file_checker->check();
}
2016-06-20 22:18:47 +02:00
public function testNewVarInIf()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-06-20 22:18:47 +02:00
if (rand(0,100) === 10) {
$badge = "hello";
}
else {
$badge = "goodbye";
}
echo $badge;
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-06-20 22:18:47 +02:00
$file_checker->check();
}
public function testNewVarInIfWithElseReturn()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-06-20 22:18:47 +02:00
if (rand(0,100) === 10) {
$badge = "hello";
}
else {
throw new \Exception();
}
echo $badge;
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-06-20 22:18:47 +02:00
$file_checker->check();
}
/**
2016-11-02 07:29:00 +01:00
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage PossiblyUndefinedVariable - somefile.php:3 - Possibly undefined variable $array, first
* seen on line 3
2016-06-20 22:18:47 +02:00
*/
public function testPossiblyUndefinedArrayInIf()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-06-20 22:18:47 +02:00
if (rand(0,100) === 10) {
$array[] = "hello";
}
echo $array;
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-06-20 22:18:47 +02:00
$file_checker->check();
}
/**
2016-11-02 07:29:00 +01:00
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage PossiblyUndefinedVariable - somefile.php:3 - Possibly undefined variable $array, first
* seen on line 3
2016-06-20 22:18:47 +02:00
*/
public function testPossiblyUndefinedArrayInForeach()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-06-20 22:18:47 +02:00
foreach ([1, 2, 3, 4] as $b) {
$array[] = "hello";
}
echo $array;
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-06-20 22:18:47 +02:00
$file_checker->check();
}
/**
2016-11-02 07:29:00 +01:00
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage PossiblyUndefinedVariable - somefile.php:4 - Possibly undefined variable $array, first
* seen on line 4
*/
2016-06-20 22:18:47 +02:00
public function testPossiblyUndefinedArrayInWhileAndForeach()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-06-20 22:18:47 +02:00
for ($i = 0; $i < 4; $i++) {
while (rand(0,10) === 5) {
$array[] = "hello";
}
}
echo $array;
');
2016-11-02 07:29:00 +01:00
Config::getInstance()->setIssueHandler('PossiblyUndefinedVariable', self::$file_filter);
2016-06-20 22:18:47 +02:00
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-06-20 22:18:47 +02:00
$file_checker->check();
}
/**
2016-11-02 07:29:00 +01:00
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage PossiblyUndefinedVariable - somefile.php:6 - Possibly undefined variable $car, first
* seen on line 3
2016-06-20 22:18:47 +02:00
*/
public function testPossiblyUndefinedVariableInForeach()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-06-20 22:18:47 +02:00
foreach ([1, 2, 3, 4] as $b) {
$car = "Volvo";
}
echo $car;
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-06-20 22:18:47 +02:00
$file_checker->check();
}
public function testSwitchVariableWithContinue()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-08-24 06:30:55 +02:00
foreach ([\'a\', \'b\', \'c\'] as $letter) {
switch ($letter) {
case \'a\':
$foo = 1;
break;
case \'b\':
$foo = 2;
break;
default:
continue;
}
$moo = $foo;
}
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-08-24 06:30:55 +02:00
$file_checker->check();
}
2016-06-20 22:18:47 +02:00
2016-08-24 06:30:55 +02:00
public function testSwitchVariableWithContinueAndIfs()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-08-24 06:30:55 +02:00
foreach ([\'a\', \'b\', \'c\'] as $letter) {
switch ($letter) {
case \'a\':
if (rand(0, 10) === 1) {
continue;
}
$foo = 1;
break;
case \'b\':
if (rand(0, 10) === 1) {
continue;
}
$foo = 2;
break;
default:
continue;
2016-06-20 22:18:47 +02:00
}
2016-08-24 06:30:55 +02:00
$moo = $foo;
}
');
2016-06-20 22:18:47 +02:00
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-06-20 22:18:47 +02:00
$file_checker->check();
}
2016-08-30 06:04:54 +02:00
public function testSwitchVariableWithFallthrough()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-08-30 06:04:54 +02:00
foreach ([\'a\', \'b\', \'c\'] as $letter) {
switch ($letter) {
case \'a\':
case \'b\':
$foo = 2;
break;
default:
$foo = 3;
break;
}
$moo = $foo;
}
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-08-30 06:04:54 +02:00
$file_checker->check();
}
public function testSwitchVariableWithFallthroughStatement()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-08-30 06:04:54 +02:00
foreach ([\'a\', \'b\', \'c\'] as $letter) {
switch ($letter) {
case \'a\':
$bar = 1;
case \'b\':
$foo = 2;
break;
default:
$foo = 3;
break;
}
$moo = $foo;
}
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-08-30 06:04:54 +02:00
$file_checker->check();
}
2016-06-20 22:18:47 +02:00
public function testTryCatchVar()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-06-20 22:18:47 +02:00
try {
$worked = true;
}
catch (\Exception $e) {
$worked = false;
}
if ($worked) {
}
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-06-20 22:18:47 +02:00
$file_checker->check();
$conditional = $stmts[1]->cond;
$this->assertSame('bool', (string) $conditional->inferredType);
}
public function testWhileVar()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-06-20 22:18:47 +02:00
$worked = false;
while (rand(0,100) === 10) {
$worked = true;
}
if ($worked) {
}
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-06-20 22:18:47 +02:00
$file_checker->check();
$conditional = $stmts[2]->cond;
$this->assertSame('bool', (string) $conditional->inferredType);
}
public function testDoWhileVar()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-06-20 22:18:47 +02:00
$worked = false;
do {
$worked = true;
}
while (rand(0,100) === 10);
if ($worked) {
}
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-06-20 22:18:47 +02:00
$file_checker->check();
$conditional = $stmts[2]->cond;
$this->assertSame('bool', (string) $conditional->inferredType);
}
public function testAssignmentInIf()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
if (!($row = (rand(0, 10) ? [5] : null))) {
// do nothing
}
else {
echo $row[0];
}
');
2016-06-20 22:18:47 +02:00
$file_checker = new FileChecker('somefile.php', $stmts);
$file_checker->check();
}
2016-06-20 22:18:47 +02:00
public function testAssignInElseIf()
{
$stmts = self::$parser->parse('<?php
if (rand(0, 10) > 5) {
echo "hello";
} elseif ($row = (rand(0, 10) ? [5] : null)) {
echo $row[0];
}
');
$file_checker = new FileChecker('somefile.php', $stmts);
$file_checker->check();
}
public function testIfNotEqualFalse()
{
$this->markTestIncomplete('This currently fails');
$stmts = self::$parser->parse('<?php
if (($row = rand(0,10) ? [] : false) !== false) {
$row[0] = "good";
echo $row[0];
2016-06-20 22:18:47 +02:00
}
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-06-20 22:18:47 +02:00
$file_checker->check();
}
public function testPassByRefInIf()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-06-20 22:18:47 +02:00
if (preg_match("/bad/", "badger", $matches)) {
echo (string)$matches[0];
2016-06-20 22:18:47 +02:00
}
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-06-20 22:18:47 +02:00
$file_checker->check();
}
2016-10-02 04:47:50 +02:00
public function testPassByRefInIfCheckAfter()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-10-02 04:47:50 +02:00
if (!preg_match("/bad/", "badger", $matches)) {
exit();
}
echo (string)$matches[0];
2016-10-02 04:47:50 +02:00
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-10-02 04:47:50 +02:00
$file_checker->check();
}
2016-06-20 22:18:47 +02:00
public function testPassByRefInIfWithBoolean()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-06-20 22:18:47 +02:00
$a = true;
if ($a && preg_match("/bad/", "badger", $matches)) {
echo (string)$matches[0];
2016-06-20 22:18:47 +02:00
}
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-06-20 22:18:47 +02:00
$file_checker->check();
}
2016-06-20 22:55:12 +02:00
/**
2016-11-02 07:29:00 +01:00
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage PossiblyUndefinedVariable - somefile.php:9 - Possibly undefined variable $a, first
* seen on line 4
*/
2016-06-20 22:55:12 +02:00
public function testPossiblyUndefinedVariableInForeachAndIf()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-06-20 22:55:12 +02:00
foreach ([1,2,3,4] as $i) {
if ($i === 1) {
$a = true;
break;
}
}
echo $a;
');
2016-11-02 07:29:00 +01:00
Config::getInstance()->setIssueHandler('PossiblyUndefinedVariable', self::$file_filter);
2016-06-20 22:55:12 +02:00
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-06-20 22:55:12 +02:00
$file_checker->check();
}
public function testFunctionExists()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
if (true && function_exists("flabble")) {
flabble();
}
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
$file_checker->check();
}
2016-10-23 18:24:53 +02:00
public function testNestedPropertyFetchInElseif()
{
2016-11-02 07:29:00 +01:00
$stmts = self::$parser->parse('<?php
2016-10-23 18:24:53 +02:00
class A {
/** @var A|null */
public $foo;
public function __toString() : string {
return "boop";
}
2016-10-23 18:24:53 +02:00
}
$a = rand(0, 10) === 5 ? new A() : null;
if (false) {
}
elseif ($a && $a->foo) {
echo $a;
}
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-10-23 18:24:53 +02:00
$file_checker->check();
}
public function testGlobalReturn()
{
$stmts = self::$parser->parse('<?php
$foo = "foo";
function a() : string {
global $foo;
return $foo;
}
');
$file_checker = new FileChecker('somefile.php', $stmts);
$file_checker->check();
}
public function testStatic()
{
$stmts = self::$parser->parse('<?php
function a() : string {
static $foo = "foo";
return $foo;
}
');
$file_checker = new FileChecker('somefile.php', $stmts);
$file_checker->check();
}
2016-06-20 22:18:47 +02:00
}