mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
11bc153deb
* Rewriting and streamlining every unit test with data providers. All unit tests have been rewritten into PHPUnit data providers to reduce the amount of unnecessary code-reuse through out the test suite.
285 lines
8.8 KiB
PHP
285 lines
8.8 KiB
PHP
<?php
|
|
namespace Psalm\Tests;
|
|
|
|
class ScopeTest extends TestCase
|
|
{
|
|
use Traits\FileCheckerInvalidCodeParseTestTrait;
|
|
use Traits\FileCheckerValidCodeParseTestTrait;
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function providerFileCheckerValidCodeParse()
|
|
{
|
|
return [
|
|
'newVarInIf' => [
|
|
'<?php
|
|
if (rand(0,100) === 10) {
|
|
$badge = "hello";
|
|
}
|
|
else {
|
|
$badge = "goodbye";
|
|
}
|
|
|
|
echo $badge;'
|
|
],
|
|
'newVarInIfWithElseReturn' => [
|
|
'<?php
|
|
if (rand(0,100) === 10) {
|
|
$badge = "hello";
|
|
}
|
|
else {
|
|
throw new \Exception();
|
|
}
|
|
|
|
echo $badge;'
|
|
],
|
|
'tryCatchVar' => [
|
|
'<?php
|
|
try {
|
|
$worked = true;
|
|
}
|
|
catch (\Exception $e) {
|
|
$worked = false;
|
|
}',
|
|
'assertions' => [
|
|
['bool' => '$worked']
|
|
]
|
|
],
|
|
'assignmentInIf' => [
|
|
'<?php
|
|
if ($row = (rand(0, 10) ? [5] : null)) {
|
|
echo $row[0];
|
|
}'
|
|
],
|
|
'negatedAssignmentInIf' => [
|
|
'<?php
|
|
if (!($row = (rand(0, 10) ? [5] : null))) {
|
|
// do nothing
|
|
}
|
|
else {
|
|
echo $row[0];
|
|
}'
|
|
],
|
|
'assignInElseIf' => [
|
|
'<?php
|
|
if (rand(0, 10) > 5) {
|
|
echo "hello";
|
|
} elseif ($row = (rand(0, 10) ? [5] : null)) {
|
|
echo $row[0];
|
|
}'
|
|
],
|
|
'ifNotEqualsFalse' => [
|
|
'<?php
|
|
if (($row = rand(0,10) ? [1] : false) !== false) {
|
|
echo $row[0];
|
|
}'
|
|
],
|
|
'ifNotEqualsNull' => [
|
|
'<?php
|
|
if (($row = rand(0,10) ? [1] : null) !== null) {
|
|
echo $row[0];
|
|
}'
|
|
],
|
|
'ifNullNotEquals' => [
|
|
'<?php
|
|
if (null !== ($row = rand(0,10) ? [1] : null)) {
|
|
echo $row[0];
|
|
}'
|
|
],
|
|
'ifNullEquals' => [
|
|
'<?php
|
|
if (null === ($row = rand(0,10) ? [1] : null)) {
|
|
|
|
} else {
|
|
echo $row[0];
|
|
}'
|
|
],
|
|
'passedByRefInIf' => [
|
|
'<?php
|
|
if (preg_match("/bad/", "badger", $matches)) {
|
|
echo (string)$matches[0];
|
|
}'
|
|
],
|
|
'passByRefInIfCheckAfter' => [
|
|
'<?php
|
|
if (!preg_match("/bad/", "badger", $matches)) {
|
|
exit();
|
|
}
|
|
echo (string)$matches[0];'
|
|
],
|
|
'passByRefInIfWithBoolean' => [
|
|
'<?php
|
|
$a = true;
|
|
if ($a && preg_match("/bad/", "badger", $matches)) {
|
|
echo (string)$matches[0];
|
|
}'
|
|
],
|
|
'passByRefInVarWithBoolean' => [
|
|
'<?php
|
|
$a = preg_match("/bad/", "badger", $matches) > 0;
|
|
if ($a) {
|
|
echo (string)$matches[1];
|
|
}'
|
|
],
|
|
'functionExists' => [
|
|
'<?php
|
|
if (true && function_exists("flabble")) {
|
|
flabble();
|
|
}'
|
|
],
|
|
'nestedPropertyFetchInElseif' => [
|
|
'<?php
|
|
class A {
|
|
/** @var A|null */
|
|
public $foo;
|
|
|
|
public function __toString() : string {
|
|
return "boop";
|
|
}
|
|
}
|
|
|
|
$a = rand(0, 10) === 5 ? new A() : null;
|
|
|
|
if (false) {
|
|
|
|
}
|
|
elseif ($a && $a->foo) {
|
|
echo $a;
|
|
}'
|
|
],
|
|
'globalReturn' => [
|
|
'<?php
|
|
$foo = "foo";
|
|
|
|
function a() : string {
|
|
global $foo;
|
|
|
|
return $foo;
|
|
}'
|
|
],
|
|
'negateAssertionAndOther' => [
|
|
'<?php
|
|
$a = rand(0, 10) ? "hello" : null;
|
|
|
|
if (rand(0, 10) > 1 && is_string($a)) {
|
|
throw new \Exception("bad");
|
|
}',
|
|
'assertions' => [
|
|
['string|null' => '$a']
|
|
]
|
|
],
|
|
'repeatAssertionWithOther' => [
|
|
'<?php
|
|
$a = rand(0, 10) ? "hello" : null;
|
|
|
|
if (rand(0, 10) > 1 || is_string($a)) {
|
|
if (is_string($a)) {
|
|
echo strpos("e", $a);
|
|
}
|
|
}',
|
|
'assertions' => [
|
|
['string|null' => '$a']
|
|
]
|
|
],
|
|
'refineOredType' => [
|
|
'<?php
|
|
class A {
|
|
public function doThing() : void
|
|
{
|
|
if ($this instanceof B || $this instanceof C) {
|
|
if ($this instanceof B) {
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
class B extends A {}
|
|
class C extends A {}'
|
|
],
|
|
'instanceOfSubtraction' => [
|
|
'<?php
|
|
class Foo {}
|
|
class FooBar extends Foo{}
|
|
class FooBarBat extends FooBar{}
|
|
class FooMoo extends Foo{}
|
|
|
|
$a = new Foo();
|
|
|
|
if ($a instanceof FooBar && !$a instanceof FooBarBat) {
|
|
|
|
} elseif ($a instanceof FooMoo) {
|
|
|
|
}'
|
|
],
|
|
'staticNullRef' => [
|
|
'<?php
|
|
/** @return void */
|
|
function foo() {
|
|
static $bar = null;
|
|
|
|
if ($bar !== null) {
|
|
// do something
|
|
}
|
|
|
|
$bar = 5;
|
|
}'
|
|
]
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function providerFileCheckerInvalidCodeParse()
|
|
{
|
|
return [
|
|
'possiblyUndefinedVarInIf' => [
|
|
'<?php
|
|
if (rand(0,100) === 10) {
|
|
$b = "s";
|
|
}
|
|
|
|
echo $b;',
|
|
'error_message' => 'PossiblyUndefinedVariable - somefile.php:6 - Possibly undefined variable $b, ' .
|
|
'first seen on line 3'
|
|
],
|
|
'possiblyUndefinedArrayInIf' => [
|
|
'<?php
|
|
if (rand(0,100) === 10) {
|
|
$array[] = "hello";
|
|
}
|
|
|
|
echo $array;',
|
|
'error_message' => 'PossiblyUndefinedVariable - somefile.php:3 - Possibly undefined variable ' .
|
|
'$array, first seen on line 3'
|
|
],
|
|
'invalidGlobal' => [
|
|
'<?php
|
|
$a = "heli";
|
|
|
|
global $a;',
|
|
'error_message' => 'InvalidGlobal'
|
|
],
|
|
'thisInStatic' => [
|
|
'<?php
|
|
class A {
|
|
public static function fooFoo() {
|
|
echo $this;
|
|
}
|
|
}',
|
|
'error_message' => 'InvalidStaticVariable'
|
|
],
|
|
'static' => [
|
|
'<?php
|
|
function a() : string {
|
|
static $foo = "foo";
|
|
|
|
return $foo;
|
|
}',
|
|
'error_message' => 'MixedInferredReturnType'
|
|
]
|
|
];
|
|
}
|
|
}
|