2020-01-03 05:50:19 +01:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
|
|
|
|
use const DIRECTORY_SEPARATOR;
|
|
|
|
use Psalm\Config;
|
|
|
|
use Psalm\Context;
|
|
|
|
|
|
|
|
class MixinAnnotationTest extends TestCase
|
|
|
|
{
|
|
|
|
use Traits\ValidCodeAnalysisTestTrait;
|
2020-05-25 06:19:46 +02:00
|
|
|
use Traits\InvalidCodeAnalysisTestTrait;
|
2020-01-03 05:50:19 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
|
|
|
|
*/
|
|
|
|
public function providerValidCodeParse()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'validSimpleAnnotations' => [
|
|
|
|
'<?php
|
|
|
|
class ParentClass {
|
|
|
|
public function __call(string $name, array $args) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
class Provider {
|
|
|
|
public function getString() : string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setInteger(int $i) : void {}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @mixin Provider */
|
|
|
|
class Child extends ParentClass {}
|
|
|
|
|
|
|
|
$child = new Child();
|
|
|
|
|
|
|
|
$a = $child->getString();
|
|
|
|
$child->setInteger(4);',
|
|
|
|
'assertions' => [
|
|
|
|
'$a' => 'string',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'anotherSimpleExample' => [
|
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @mixin B
|
|
|
|
*/
|
|
|
|
class A {
|
|
|
|
/** @var B */
|
|
|
|
private $b;
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
$this->b = new B();
|
|
|
|
}
|
|
|
|
|
2020-01-07 00:04:21 +01:00
|
|
|
public function c(string $s) : void {}
|
|
|
|
|
2020-01-03 05:50:19 +01:00
|
|
|
/**
|
|
|
|
* @param array<mixed> $arguments
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function __call(string $method, array $arguments)
|
|
|
|
{
|
|
|
|
return $this->b->$method(...$arguments);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function b(): void {
|
|
|
|
echo "b";
|
|
|
|
}
|
2020-01-07 00:04:21 +01:00
|
|
|
|
|
|
|
public function c(int $s) : void {}
|
2020-01-03 05:50:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$a = new A();
|
|
|
|
$a->b();'
|
|
|
|
],
|
2020-03-19 02:38:53 +01:00
|
|
|
'allowConstructor' => [
|
|
|
|
'<?php
|
|
|
|
abstract class AParent {
|
|
|
|
protected int $i;
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
$this->i = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class M {
|
|
|
|
public function __construct() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @mixin M
|
|
|
|
*/
|
|
|
|
class A extends AParent {}'
|
|
|
|
],
|
2020-04-26 22:49:52 +02:00
|
|
|
'implicitMixin' => [
|
|
|
|
'<?php
|
|
|
|
function foo(string $dir) : void {
|
|
|
|
$iterator = new \RecursiveIteratorIterator(
|
|
|
|
new \RecursiveDirectoryIterator($dir)
|
|
|
|
);
|
|
|
|
|
|
|
|
while ($iterator->valid()) {
|
|
|
|
if (!$iterator->isDot() && $iterator->isLink()) {}
|
|
|
|
|
|
|
|
$iterator->next();
|
|
|
|
}
|
|
|
|
}'
|
|
|
|
],
|
2020-04-26 22:59:03 +02:00
|
|
|
'wrapCustomIterator' => [
|
|
|
|
'<?php
|
|
|
|
class Subject implements Iterator {
|
|
|
|
/**
|
|
|
|
* the index method exists
|
|
|
|
*
|
|
|
|
* @param int $index
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function index($index) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function current() {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function next() {}
|
|
|
|
|
|
|
|
public function key() {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function valid() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rewind() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
$iter = new IteratorIterator(new Subject());
|
|
|
|
$b = $iter->index(0);',
|
|
|
|
[
|
|
|
|
'$b' => 'bool',
|
|
|
|
]
|
|
|
|
],
|
2020-04-27 15:10:24 +02:00
|
|
|
'templatedMixin' => [
|
|
|
|
'<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @template T
|
|
|
|
*/
|
|
|
|
abstract class Foo {
|
|
|
|
/** @return T */
|
|
|
|
abstract public function hi();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @mixin Foo<string>
|
|
|
|
*/
|
|
|
|
class Bar {}
|
|
|
|
|
|
|
|
$bar = new Bar();
|
|
|
|
$b = $bar->hi();',
|
|
|
|
[
|
|
|
|
'$b' => 'string',
|
|
|
|
]
|
|
|
|
],
|
2020-05-01 17:23:02 +02:00
|
|
|
'templatedMixinSelf' => [
|
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @template T
|
|
|
|
*/
|
|
|
|
class Animal {
|
|
|
|
/** @var T */
|
|
|
|
private $item;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param T $item
|
|
|
|
*/
|
|
|
|
public function __construct($item) {
|
|
|
|
$this->item = $item;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return T
|
|
|
|
*/
|
|
|
|
public function get() {
|
|
|
|
return $this->item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @mixin Animal<self>
|
|
|
|
*/
|
|
|
|
class Dog {
|
2020-05-03 01:57:38 +02:00
|
|
|
public function __construct() {}
|
2020-05-01 17:23:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function getDog(): Dog {
|
|
|
|
return (new Dog())->get();
|
|
|
|
}'
|
|
|
|
],
|
2020-05-03 01:57:38 +02:00
|
|
|
'inheritPropertyAnnotations' => [
|
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @property string $foo
|
|
|
|
*/
|
2020-05-10 15:04:30 +02:00
|
|
|
class A {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @mixin A
|
|
|
|
*/
|
|
|
|
class B {
|
2020-05-03 01:57:38 +02:00
|
|
|
/** @return mixed */
|
|
|
|
public function __get(string $s) {
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function toArray(B $b) : string {
|
|
|
|
return $b->foo;
|
|
|
|
}'
|
|
|
|
],
|
2020-05-27 17:12:09 +02:00
|
|
|
'inheritTemplatedMixinWithStatic' => [
|
2020-05-27 05:32:01 +02:00
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @template T
|
|
|
|
*/
|
|
|
|
class Mixin {
|
|
|
|
/**
|
|
|
|
* @psalm-var T
|
|
|
|
*/
|
|
|
|
private $var;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @psalm-param T $var
|
|
|
|
*/
|
|
|
|
public function __construct ($var) {
|
|
|
|
$this->var = $var;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @psalm-return T
|
|
|
|
*/
|
|
|
|
public function type() {
|
|
|
|
return $this->var;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @template T as object
|
|
|
|
* @mixin Mixin<T>
|
|
|
|
*/
|
|
|
|
abstract class Foo {
|
|
|
|
/** @var Mixin<T> */
|
|
|
|
public object $obj;
|
|
|
|
|
|
|
|
public function __call(string $name, array $args) {
|
|
|
|
return $this->obj->$name(...$args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @extends Foo<static>
|
|
|
|
*/
|
|
|
|
abstract class FooChild extends Foo{}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @psalm-suppress MissingConstructor
|
|
|
|
*/
|
|
|
|
final class FooGrandChild extends FooChild {}
|
|
|
|
|
|
|
|
function test() : FooGrandChild {
|
|
|
|
return (new FooGrandChild)->type();
|
|
|
|
}'
|
|
|
|
],
|
2020-05-28 07:59:24 +02:00
|
|
|
'inheritTemplatedMixinWithStaticAndFinalClass' => [
|
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @template T
|
|
|
|
*/
|
|
|
|
class Mixin {
|
|
|
|
/**
|
|
|
|
* @psalm-var T
|
|
|
|
*/
|
|
|
|
private $var;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @psalm-param T $var
|
|
|
|
*/
|
|
|
|
public function __construct ($var) {
|
|
|
|
$this->var = $var;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @psalm-return self<T>
|
|
|
|
*/
|
|
|
|
public function getMixin() {
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @template T as object
|
|
|
|
* @mixin Mixin<T>
|
|
|
|
*/
|
|
|
|
abstract class Foo {
|
|
|
|
/** @var Mixin<T> */
|
|
|
|
public object $obj;
|
|
|
|
|
|
|
|
public function __call(string $name, array $args) {
|
|
|
|
return $this->obj->$name(...$args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @extends Foo<static>
|
|
|
|
*/
|
|
|
|
abstract class FooChild extends Foo{}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @psalm-suppress MissingConstructor
|
|
|
|
*/
|
|
|
|
final class FooGrandChild extends FooChild {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @psalm-return Mixin<FooGrandChild>
|
|
|
|
*/
|
|
|
|
function test() : Mixin {
|
|
|
|
return (new FooGrandChild)->getMixin();
|
|
|
|
}'
|
|
|
|
],
|
2020-01-03 05:50:19 +01:00
|
|
|
];
|
|
|
|
}
|
2020-05-25 06:19:46 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
|
|
|
|
*/
|
|
|
|
public function providerInvalidCodeParse()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'undefinedMixinClass' => [
|
|
|
|
'<?php
|
|
|
|
/** @mixin B */
|
|
|
|
class A {}',
|
|
|
|
'error_message' => 'UndefinedDocblockClass'
|
|
|
|
],
|
|
|
|
'undefinedMixinClassWithPropertyFetch' => [
|
|
|
|
'<?php
|
|
|
|
/** @mixin B */
|
|
|
|
class A {}
|
|
|
|
|
|
|
|
(new A)->foo;',
|
|
|
|
'error_message' => 'UndefinedPropertyFetch'
|
|
|
|
],
|
|
|
|
'undefinedMixinClassWithPropertyAssignment' => [
|
|
|
|
'<?php
|
|
|
|
/** @mixin B */
|
|
|
|
class A {}
|
|
|
|
|
|
|
|
(new A)->foo = "bar";',
|
|
|
|
'error_message' => 'UndefinedPropertyAssignment'
|
|
|
|
],
|
|
|
|
'undefinedMixinClassWithMethodCall' => [
|
|
|
|
'<?php
|
|
|
|
/** @mixin B */
|
|
|
|
class A {}
|
|
|
|
|
|
|
|
(new A)->foo();',
|
|
|
|
'error_message' => 'UndefinedMethod'
|
|
|
|
],
|
2020-05-27 17:12:09 +02:00
|
|
|
'inheritTemplatedMixinWithSelf' => [
|
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @template T
|
|
|
|
*/
|
|
|
|
class Mixin {
|
|
|
|
/**
|
|
|
|
* @psalm-var T
|
|
|
|
*/
|
|
|
|
private $var;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @psalm-param T $var
|
|
|
|
*/
|
|
|
|
public function __construct ($var) {
|
|
|
|
$this->var = $var;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @psalm-return T
|
|
|
|
*/
|
|
|
|
public function type() {
|
|
|
|
return $this->var;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @template T as object
|
|
|
|
* @mixin Mixin<T>
|
|
|
|
*/
|
|
|
|
abstract class Foo {
|
|
|
|
/** @var Mixin<T> */
|
|
|
|
public object $obj;
|
|
|
|
|
|
|
|
public function __call(string $name, array $args) {
|
|
|
|
return $this->obj->$name(...$args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @extends Foo<self>
|
|
|
|
*/
|
|
|
|
abstract class FooChild extends Foo{}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @psalm-suppress MissingConstructor
|
|
|
|
*/
|
|
|
|
final class FooGrandChild extends FooChild {}
|
|
|
|
|
|
|
|
function test() : FooGrandChild {
|
|
|
|
return (new FooGrandChild)->type();
|
|
|
|
}',
|
|
|
|
'error_message' => 'LessSpecificReturnStatement'
|
|
|
|
],
|
2020-05-25 06:19:46 +02:00
|
|
|
];
|
|
|
|
}
|
2020-01-03 05:50:19 +01:00
|
|
|
}
|