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

181 lines
5.8 KiB
PHP
Raw Normal View History

<?php
namespace Psalm\Tests;
class PropertyTypeInvarianceTest extends TestCase
{
use Traits\InvalidCodeAnalysisTestTrait;
use Traits\ValidCodeAnalysisTestTrait;
/**
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
*/
public function providerValidCodeParse(): iterable
{
return [
'validcode' => [
'<?php
class ParentClass
{
/** @var null|string */
protected $mightExist;
protected ?string $mightExistNative = null;
/** @var string */
protected $doesExist = "";
protected string $doesExistNative = "";
}
class ChildClass extends ParentClass
{
/** @var null|string */
protected $mightExist = "";
protected ?string $mightExistNative = null;
/** @var string */
protected $doesExist = "";
protected string $doesExistNative = "";
}',
],
'allowTemplatedInvariance' => [
'<?php
/**
* @template T as string|null
*/
abstract class A {
/** @var T */
public $foo;
}
/**
* @extends A<string>
*/
class AChild extends A {
/** @var string */
public $foo = "foo";
}',
],
'allowTemplatedInvarianceWithListTemplate' => [
'<?php
abstract class Item {}
class Foo extends Item {}
/** @template TItem of Item */
abstract class ItemCollection
{
/** @var list<TItem> */
protected $items = [];
}
/** @extends ItemCollection<Foo> */
class FooCollection extends ItemCollection
{
/** @var list<Foo> */
protected $items = [];
}',
],
'allowTemplatedInvarianceWithClassTemplate' => [
'<?php
abstract class Item {}
class Foo extends Item {}
/** @template T */
class Collection {}
/** @template TItem of Item */
abstract class ItemCollection
{
/** @var Collection<TItem>|null */
protected $items;
}
/** @extends ItemCollection<Foo> */
class FooCollection extends ItemCollection
{
/** @var Collection<Foo>|null */
protected $items;
}',
],
'allowTemplatedInvarianceWithClassString' => [
'<?php
abstract class Item {}
class Foo extends Item {}
/** @template T of Item */
abstract class ItemType
{
/** @var class-string<T>|null */
protected $type;
}
/** @extends ItemType<Foo> */
class FooTypes extends ItemType
{
/** @var class-string<Foo>|null */
protected $type;
}',
],
];
}
/**
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
*/
public function providerInvalidCodeParse(): iterable
{
return [
'variantDocblockProperties' => [
'<?php
class ParentClass
{
/** @var null|string */
protected $mightExist;
}
class ChildClass extends ParentClass
{
/** @var string */
protected $mightExist = "";
}',
'error_message' => 'NonInvariantDocblockPropertyType',
],
'variantProperties' => [
'<?php
class ParentClass
{
protected ?string $mightExist = null;
}
class ChildClass extends ParentClass
{
protected string $mightExist = "";
}',
'error_message' => 'NonInvariantPropertyType',
],
// TODO support property invariance checks with templates
// 'disallowInvalidTemplatedInvariance' => [
// '<?php
// /**
// * @template T as string|null
// */
// abstract class A {
// /** @var T */
// public $foo;
// }
// /**
// * @extends A<string>
// */
// class AChild extends A {
// /** @var int */
// public $foo = 0;
// }',
// 'error_message' => 'NonInvariantPropertyType',
// ],
];
}
}