2018-07-07 06:06:05 +02:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
|
|
|
|
use Psalm\Config;
|
|
|
|
use Psalm\Context;
|
|
|
|
|
|
|
|
class MagicMethodAnnotationTest extends TestCase
|
|
|
|
{
|
2018-11-06 03:57:36 +01:00
|
|
|
use Traits\InvalidCodeAnalysisTestTrait;
|
|
|
|
use Traits\ValidCodeAnalysisTestTrait;
|
2018-07-07 06:06:05 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testPhpDocMethodWhenUndefined()
|
|
|
|
{
|
2018-11-30 21:13:25 +01:00
|
|
|
Config::getInstance()->use_phpdoc_method_without_magic_or_parent = true;
|
2018-07-07 06:06:05 +02:00
|
|
|
|
|
|
|
$this->addFile(
|
|
|
|
'somefile.php',
|
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @method string getString()
|
|
|
|
* @method void setInteger(int $integer)
|
|
|
|
* @method setString(int $integer)
|
|
|
|
* @method getBool(string $foo) : bool
|
|
|
|
* @method (string|int)[] getArray() : array
|
|
|
|
* @method (callable() : string) getCallable() : callable
|
|
|
|
*/
|
|
|
|
class Child {}
|
|
|
|
|
|
|
|
$child = new Child();
|
|
|
|
|
|
|
|
$a = $child->getString();
|
|
|
|
$child->setInteger(4);
|
|
|
|
/** @psalm-suppress MixedAssignment */
|
|
|
|
$b = $child->setString(5);
|
|
|
|
$c = $child->getBool("hello");
|
|
|
|
$d = $child->getArray();
|
|
|
|
$e = $child->getCallable();'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->analyzeFile('somefile.php', new Context());
|
|
|
|
}
|
|
|
|
|
2018-11-30 21:13:25 +01:00
|
|
|
/**
|
|
|
|
* @expectedException \Psalm\Exception\CodeException
|
|
|
|
* @expectedExceptionMessage UndefinedMethod
|
2019-03-23 19:27:54 +01:00
|
|
|
*
|
2018-11-30 21:13:25 +01:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testAnnotationWithoutCallConfig()
|
|
|
|
{
|
|
|
|
Config::getInstance()->use_phpdoc_method_without_magic_or_parent = false;
|
|
|
|
|
|
|
|
$this->addFile(
|
|
|
|
'somefile.php',
|
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @method string getString()
|
|
|
|
*/
|
|
|
|
class Child {}
|
|
|
|
|
|
|
|
$child = new Child();
|
|
|
|
|
2019-03-07 00:32:29 +01:00
|
|
|
$child->getString();'
|
2018-11-30 21:13:25 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$context = new Context();
|
|
|
|
|
|
|
|
$this->analyzeFile('somefile.php', $context);
|
2018-07-07 06:06:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testOverrideParentClassRetunType()
|
|
|
|
{
|
2018-11-30 21:13:25 +01:00
|
|
|
Config::getInstance()->use_phpdoc_method_without_magic_or_parent = true;
|
2018-07-07 06:06:05 +02:00
|
|
|
|
|
|
|
$this->addFile(
|
|
|
|
'somefile.php',
|
|
|
|
'<?php
|
|
|
|
class ParentClass {
|
|
|
|
public static function getMe() : self {
|
|
|
|
return new self();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method getMe() : Child
|
|
|
|
*/
|
|
|
|
class Child extends ParentClass {}
|
|
|
|
|
|
|
|
$child = Child::getMe();'
|
|
|
|
);
|
|
|
|
|
|
|
|
$context = new Context();
|
|
|
|
|
|
|
|
$this->analyzeFile('somefile.php', $context);
|
|
|
|
|
|
|
|
$this->assertSame('Child', (string) $context->vars_in_scope['$child']);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-03-01 21:55:20 +01:00
|
|
|
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
|
2018-07-07 06:06:05 +02:00
|
|
|
*/
|
2018-11-06 03:57:36 +01:00
|
|
|
public function providerValidCodeParse()
|
2018-07-07 06:06:05 +02:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
'validSimpleAnnotations' => [
|
|
|
|
'<?php
|
|
|
|
class ParentClass {
|
2018-07-17 04:48:53 +02:00
|
|
|
public function __call(string $name, array $args) {}
|
2018-07-07 06:06:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method string getString() dsa sada
|
|
|
|
* @method void setInteger(int $integer) dsa sada
|
|
|
|
* @method setString(int $integer) dsa sada
|
|
|
|
* @method setMixed(mixed $foo) dsa sada
|
|
|
|
* @method setImplicitMixed($foo) dsa sada
|
|
|
|
* @method setAnotherImplicitMixed( $foo, $bar,$baz) dsa sada
|
|
|
|
* @method setYetAnotherImplicitMixed( $foo ,$bar, $baz ) dsa sada
|
|
|
|
* @method getBool(string $foo) : bool dsa sada
|
|
|
|
* @method (string|int)[] getArray() : array with some text dsa sada
|
|
|
|
* @method (callable() : string) getCallable() : callable dsa sada
|
|
|
|
*/
|
|
|
|
class Child extends ParentClass {}
|
|
|
|
|
|
|
|
$child = new Child();
|
|
|
|
|
|
|
|
$a = $child->getString();
|
|
|
|
$child->setInteger(4);
|
|
|
|
/** @psalm-suppress MixedAssignment */
|
|
|
|
$b = $child->setString(5);
|
|
|
|
$c = $child->getBool("hello");
|
|
|
|
$d = $child->getArray();
|
2018-07-17 04:48:53 +02:00
|
|
|
$child->setArray(["boo"]);
|
2018-07-07 06:06:05 +02:00
|
|
|
$e = $child->getCallable();
|
|
|
|
$child->setMixed("hello");
|
|
|
|
$child->setMixed(4);
|
|
|
|
$child->setImplicitMixed("hello");
|
|
|
|
$child->setImplicitMixed(4);',
|
|
|
|
'assertions' => [
|
|
|
|
'$a' => 'string',
|
|
|
|
'$b' => 'mixed',
|
|
|
|
'$c' => 'bool',
|
2019-01-05 06:15:53 +01:00
|
|
|
'$d' => 'array<array-key, string|int>',
|
2018-07-07 06:06:05 +02:00
|
|
|
'$e' => 'callable():string',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'validAnnotationWithDefault' => [
|
|
|
|
'<?php
|
|
|
|
class ParentClass {
|
2018-07-17 04:48:53 +02:00
|
|
|
public function __call(string $name, array $args) {}
|
2018-07-07 06:06:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method void setArray(array $arr = array(), int $foo = 5) with some more text
|
|
|
|
*/
|
|
|
|
class Child extends ParentClass {}
|
|
|
|
|
|
|
|
$child = new Child();
|
|
|
|
|
|
|
|
$child->setArray(["boo"]);
|
|
|
|
$child->setArray(["boo"], 8);',
|
|
|
|
],
|
2019-01-18 17:37:52 +01:00
|
|
|
'validStaticAnnotationWithDefault' => [
|
|
|
|
'<?php
|
|
|
|
class ParentClass {
|
|
|
|
public static function __callStatic(string $name, array $args) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method static string getString(int $foo) with some more text
|
|
|
|
*/
|
|
|
|
class Child extends ParentClass {}
|
|
|
|
|
|
|
|
$child = new Child();
|
|
|
|
|
|
|
|
$a = $child::getString(5);',
|
|
|
|
'assertions' => [
|
|
|
|
'$a' => 'string',
|
|
|
|
],
|
|
|
|
],
|
2018-07-07 06:06:05 +02:00
|
|
|
'validAnnotationWithVariadic' => [
|
|
|
|
'<?php
|
|
|
|
class ParentClass {
|
2018-07-17 04:48:53 +02:00
|
|
|
public function __call(string $name, array $args) {}
|
2018-07-07 06:06:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method void setInts(int ...$foo) with some more text
|
|
|
|
*/
|
|
|
|
class Child extends ParentClass {}
|
|
|
|
|
|
|
|
$child = new Child();
|
|
|
|
|
|
|
|
$child->setInts(1, 2, 3, 4);',
|
|
|
|
],
|
|
|
|
'validUnionAnnotations' => [
|
|
|
|
'<?php
|
|
|
|
class ParentClass {
|
2018-07-17 04:48:53 +02:00
|
|
|
public function __call(string $name, array $args) {}
|
2018-07-07 06:06:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method setBool(string $foo, string|bool $bar) : bool dsa sada
|
|
|
|
* @method void setAnotherArray(int[]|string[] $arr = [], int $foo = 5) with some more text
|
|
|
|
*/
|
|
|
|
class Child extends ParentClass {}
|
|
|
|
|
|
|
|
$child = new Child();
|
|
|
|
|
|
|
|
$b = $child->setBool("hello", true);
|
|
|
|
$c = $child->setBool("hello", "true");
|
|
|
|
$child->setAnotherArray(["boo"]);',
|
|
|
|
'assertions' => [
|
|
|
|
'$b' => 'bool',
|
|
|
|
'$c' => 'bool',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'namespacedValidAnnotations' => [
|
|
|
|
'<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class ParentClass {
|
2018-07-17 04:48:53 +02:00
|
|
|
public function __call(string $name, array $args) {}
|
2018-07-07 06:06:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method setBool(string $foo, string|bool $bar) : bool
|
|
|
|
*/
|
|
|
|
class Child extends ParentClass {}
|
|
|
|
|
|
|
|
$child = new Child();
|
|
|
|
|
|
|
|
$c = $child->setBool("hello", true);
|
|
|
|
$c = $child->setBool("hello", "true");',
|
|
|
|
],
|
|
|
|
'globalMethod' => [
|
|
|
|
'<?php
|
|
|
|
/** @method void global() */
|
|
|
|
class A {
|
|
|
|
public function __call(string $s) {}
|
|
|
|
}',
|
|
|
|
],
|
2018-09-09 17:45:52 +02:00
|
|
|
'magicMethodInternalCall' => [
|
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @method I[] work()
|
|
|
|
*/
|
|
|
|
class I {
|
|
|
|
function __call(string $method, array $args) { return [new I, new I]; }
|
|
|
|
|
|
|
|
function zugzug(): void {
|
|
|
|
echo count($this->work());
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
2018-11-30 21:13:25 +01:00
|
|
|
'magicMethodOverridesParentWithMoreSpecificType' => [
|
|
|
|
'<?php
|
|
|
|
class C {}
|
|
|
|
class D extends C {}
|
|
|
|
|
|
|
|
class A {
|
|
|
|
public function foo(string $s) : C {
|
|
|
|
return new C;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @method D foo(string $s) */
|
|
|
|
class B extends A {}',
|
|
|
|
],
|
|
|
|
'complicatedMagicMethodInheritance' => [
|
|
|
|
'<?php
|
|
|
|
class BaseActiveRecord {
|
|
|
|
/**
|
|
|
|
* @param string $class
|
|
|
|
* @param array $link
|
|
|
|
* @return ActiveQueryInterface
|
|
|
|
*/
|
|
|
|
public function hasMany($class, $link)
|
|
|
|
{
|
|
|
|
return new ActiveQuery();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method ActiveQuery hasMany($class, array $link)
|
|
|
|
*/
|
|
|
|
class ActiveRecord extends BaseActiveRecord {}
|
|
|
|
|
|
|
|
interface ActiveQueryInterface {}
|
|
|
|
|
|
|
|
class ActiveQuery implements ActiveQueryInterface {
|
|
|
|
/**
|
|
|
|
* @param string $tableName
|
|
|
|
* @param array $link
|
|
|
|
* @param callable $callable
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function viaTable($tableName, $link, callable $callable = null)
|
|
|
|
{
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class Boom extends ActiveRecord {
|
|
|
|
/**
|
|
|
|
* @return ActiveQuery
|
|
|
|
*/
|
|
|
|
public function getUsers()
|
|
|
|
{
|
|
|
|
$query = $this->hasMany("User", ["id" => "user_id"])
|
|
|
|
->viaTable("account_to_user", ["account_id" => "id"]);
|
|
|
|
|
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
2019-01-30 15:46:23 +01:00
|
|
|
'magicMethodReturnSelf' => [
|
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @method static self getSelf()
|
|
|
|
* @method $this getThis()
|
|
|
|
*/
|
|
|
|
class C {
|
|
|
|
public static function __callStatic(string $c, array $args) {}
|
|
|
|
public function __call(string $c, array $args) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
$a = C::getSelf();
|
|
|
|
$b = (new C)->getThis();',
|
|
|
|
[
|
|
|
|
'$a' => 'C',
|
|
|
|
'$b' => 'C',
|
2019-03-23 19:27:54 +01:00
|
|
|
],
|
2019-01-30 15:46:23 +01:00
|
|
|
],
|
2019-01-30 17:44:12 +01:00
|
|
|
'allowMagicMethodStatic' => [
|
|
|
|
'<?php
|
|
|
|
/** @method static getStatic() */
|
|
|
|
class C {
|
|
|
|
public function __call(string $c, array $args) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
class D extends C {}
|
|
|
|
|
|
|
|
$c = (new C)->getStatic();
|
|
|
|
$d = (new D)->getStatic();',
|
|
|
|
[
|
|
|
|
'$c' => 'C',
|
|
|
|
'$d' => 'D',
|
2019-03-23 19:27:54 +01:00
|
|
|
],
|
2019-01-30 17:44:12 +01:00
|
|
|
],
|
2019-02-23 02:42:36 +01:00
|
|
|
'validSimplePsalmAnnotations' => [
|
|
|
|
'<?php
|
|
|
|
class ParentClass {
|
|
|
|
public function __call(string $name, array $args) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @psalm-method string getString() dsa sada
|
|
|
|
* @psalm-method void setInteger(int $integer) dsa sada
|
|
|
|
*/
|
|
|
|
class Child extends ParentClass {}
|
|
|
|
|
|
|
|
$child = new Child();
|
|
|
|
|
2019-02-23 15:37:37 +01:00
|
|
|
$a = $child->getString();
|
|
|
|
$child->setInteger(4);',
|
|
|
|
'assertions' => [
|
|
|
|
'$a' => 'string',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'overrideMethodAnnotations' => [
|
|
|
|
'<?php
|
|
|
|
class ParentClass {
|
|
|
|
public function __call(string $name, array $args) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method int getString() dsa sada
|
|
|
|
* @method void setInteger(string $integer) dsa sada
|
|
|
|
* @psalm-method string getString() dsa sada
|
|
|
|
* @psalm-method void setInteger(int $integer) dsa sada
|
|
|
|
*/
|
|
|
|
class Child extends ParentClass {}
|
|
|
|
|
|
|
|
$child = new Child();
|
|
|
|
|
2019-02-23 02:42:36 +01:00
|
|
|
$a = $child->getString();
|
|
|
|
$child->setInteger(4);',
|
|
|
|
'assertions' => [
|
|
|
|
'$a' => 'string',
|
|
|
|
],
|
|
|
|
],
|
2018-07-07 06:06:05 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-03-01 21:55:20 +01:00
|
|
|
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
|
2018-07-07 06:06:05 +02:00
|
|
|
*/
|
2018-11-06 03:57:36 +01:00
|
|
|
public function providerInvalidCodeParse()
|
2018-07-07 06:06:05 +02:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
'annotationWithBadDocblock' => [
|
|
|
|
'<?php
|
|
|
|
class ParentClass {
|
2018-07-17 04:48:53 +02:00
|
|
|
public function __call(string $name, array $args) {}
|
2018-07-07 06:06:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method string getString(\)
|
|
|
|
*/
|
|
|
|
class Child extends ParentClass {}',
|
|
|
|
'error_message' => 'InvalidDocblock',
|
|
|
|
],
|
|
|
|
'annotationWithByRefParam' => [
|
|
|
|
'<?php
|
|
|
|
class ParentClass {
|
2018-07-17 04:48:53 +02:00
|
|
|
public function __call(string $name, array $args) {}
|
2018-07-07 06:06:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method string getString(&$a)
|
|
|
|
*/
|
|
|
|
class Child extends ParentClass {}',
|
|
|
|
'error_message' => 'InvalidDocblock',
|
|
|
|
],
|
|
|
|
'annotationWithSealed' => [
|
|
|
|
'<?php
|
|
|
|
class ParentClass {
|
2018-07-17 04:48:53 +02:00
|
|
|
public function __call(string $name, array $args) {}
|
2018-07-07 06:06:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method string getString()
|
|
|
|
* @psalm-seal-methods
|
|
|
|
*/
|
|
|
|
class Child extends ParentClass {}
|
|
|
|
|
|
|
|
$child = new Child();
|
|
|
|
$child->getString();
|
|
|
|
$child->foo();',
|
2019-02-27 22:00:44 +01:00
|
|
|
'error_message' => 'UndefinedMethod - src' . DIRECTORY_SEPARATOR . 'somefile.php:14:29 - Method Child::foo does not exist',
|
2018-07-07 06:06:05 +02:00
|
|
|
],
|
|
|
|
'annotationInvalidArg' => [
|
|
|
|
'<?php
|
|
|
|
class ParentClass {
|
2018-07-17 04:48:53 +02:00
|
|
|
public function __call(string $name, array $args) {}
|
2018-07-07 06:06:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method setString(int $integer)
|
|
|
|
*/
|
|
|
|
class Child extends ParentClass {}
|
|
|
|
|
|
|
|
$child = new Child();
|
|
|
|
|
|
|
|
$child->setString("five");',
|
|
|
|
'error_message' => 'InvalidScalarArgument',
|
|
|
|
],
|
|
|
|
'unionAnnotationInvalidArg' => [
|
|
|
|
'<?php
|
|
|
|
class ParentClass {
|
2018-07-17 04:48:53 +02:00
|
|
|
public function __call(string $name, array $args) {}
|
2018-07-07 06:06:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method setBool(string $foo, string|bool $bar) : bool dsa sada
|
|
|
|
*/
|
|
|
|
class Child extends ParentClass {}
|
|
|
|
|
|
|
|
$child = new Child();
|
|
|
|
|
|
|
|
$b = $child->setBool("hello", 5);',
|
|
|
|
'error_message' => 'InvalidScalarArgument',
|
|
|
|
],
|
|
|
|
'validAnnotationWithInvalidVariadicCall' => [
|
|
|
|
'<?php
|
|
|
|
class ParentClass {
|
2018-07-17 04:48:53 +02:00
|
|
|
public function __call(string $name, array $args) {}
|
2018-07-07 06:06:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method void setInts(int ...$foo) with some more text
|
|
|
|
*/
|
|
|
|
class Child extends ParentClass {}
|
|
|
|
|
|
|
|
$child = new Child();
|
|
|
|
|
|
|
|
$child->setInts([1, 2, 3]);',
|
|
|
|
'error_message' => 'InvalidArgument',
|
|
|
|
],
|
2018-11-30 21:13:25 +01:00
|
|
|
'magicMethodOverridesParentWithDifferentReturnType' => [
|
|
|
|
'<?php
|
|
|
|
class C {}
|
|
|
|
class D {}
|
|
|
|
|
|
|
|
class A {
|
|
|
|
public function foo(string $s) : C {
|
|
|
|
return new C;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @method D foo(string $s) */
|
|
|
|
class B extends A {}',
|
2019-03-19 02:05:37 +01:00
|
|
|
'error_message' => 'ImplementedReturnTypeMismatch - src/somefile.php:11:33',
|
2018-11-30 21:13:25 +01:00
|
|
|
],
|
|
|
|
'magicMethodOverridesParentWithDifferentParamType' => [
|
|
|
|
'<?php
|
|
|
|
class C {}
|
|
|
|
class D extends C {}
|
|
|
|
|
|
|
|
class A {
|
|
|
|
public function foo(string $s) : C {
|
|
|
|
return new C;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @method D foo(int $s) */
|
|
|
|
class B extends A {}',
|
2019-03-19 02:05:37 +01:00
|
|
|
'error_message' => 'MoreSpecificImplementedParamType - src/somefile.php:11:21',
|
2018-11-30 21:13:25 +01:00
|
|
|
],
|
2018-07-07 06:06:05 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|