2019-05-10 00:33:27 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
|
|
|
|
class PsalmInternalAnnotationTest extends TestCase
|
|
|
|
{
|
|
|
|
use Traits\InvalidCodeAnalysisTestTrait;
|
|
|
|
use Traits\ValidCodeAnalysisTestTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
|
|
|
|
*/
|
|
|
|
public function providerValidCodeParse()
|
|
|
|
{
|
|
|
|
// commented out entries are not yet implemented
|
|
|
|
return [
|
2019-05-11 16:15:50 +02:00
|
|
|
'internalMethodWithCall' => [
|
|
|
|
'<?php
|
|
|
|
namespace A\B {
|
|
|
|
class Foo {
|
|
|
|
/**
|
|
|
|
* @psalm-internal A\B
|
|
|
|
*/
|
|
|
|
public static function barBar(): void {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace A\B\C {
|
|
|
|
class Bat {
|
|
|
|
public function batBat() : void {
|
|
|
|
\A\B\Foo::barBar();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
2019-05-11 15:58:53 +02:00
|
|
|
'internalClassWithStaticCall' => [
|
|
|
|
'<?php
|
|
|
|
namespace A {
|
|
|
|
/**
|
|
|
|
* @psalm-internal
|
|
|
|
*/
|
|
|
|
class Foo {
|
|
|
|
public static function barBar(): void {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace A\B {
|
|
|
|
class Bat {
|
|
|
|
public function batBat() : void {
|
|
|
|
\A\Foo::barBar();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
2019-05-10 00:33:27 +02:00
|
|
|
// 'internalClassExtendingNamespaceWithStaticCall' => [
|
|
|
|
// '<?php
|
|
|
|
// namespace A {
|
|
|
|
// /**
|
|
|
|
// * @psalm-internal
|
|
|
|
// */
|
|
|
|
// class Foo extends \B\Foo {
|
|
|
|
// public function __construct() {
|
|
|
|
// parent::__construct();
|
|
|
|
// }
|
|
|
|
// public static function barBar(): void {
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// namespace B {
|
|
|
|
// class Foo {
|
|
|
|
// public function __construct() {
|
|
|
|
// static::barBar();
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public static function barBar(): void {
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }',
|
|
|
|
// ],
|
2019-05-11 16:23:49 +02:00
|
|
|
'internalClassWithNew' => [
|
|
|
|
'<?php
|
|
|
|
namespace A\B {
|
|
|
|
/**
|
|
|
|
* @psalm-internal A\B
|
|
|
|
*/
|
|
|
|
class Foo { }
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace A\B\C {
|
|
|
|
class Bat {
|
|
|
|
public function batBat() : void {
|
|
|
|
$a = new \A\B\Foo();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
2019-05-10 00:33:27 +02:00
|
|
|
'internalClassWithExtends' => [
|
|
|
|
'<?php
|
|
|
|
namespace A\B {
|
|
|
|
/**
|
|
|
|
* @psalm-internal A\B
|
|
|
|
*/
|
|
|
|
class Foo { }
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace A\B\C {
|
|
|
|
class Bar extends \A\B\Foo {}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
// 'internalPropertyGet' => [
|
|
|
|
// '<?php
|
|
|
|
// namespace A {
|
|
|
|
// class Foo {
|
|
|
|
// /**
|
|
|
|
// * @psalm-internal
|
|
|
|
// * @var ?int
|
|
|
|
// */
|
|
|
|
// public $foo;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// namespace A\B {
|
|
|
|
// class Bat {
|
|
|
|
// public function batBat() : void {
|
|
|
|
// echo (new \A\Foo)->foo;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }',
|
|
|
|
// ],
|
|
|
|
// 'internalPropertySet' => [
|
|
|
|
// '<?php
|
|
|
|
// namespace A {
|
|
|
|
// class Foo {
|
|
|
|
// /**
|
|
|
|
// * @psalm-internal
|
|
|
|
// * @var ?int
|
|
|
|
// */
|
|
|
|
// public $foo;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// namespace A\B {
|
|
|
|
// class Bat {
|
|
|
|
// public function batBat() : void {
|
|
|
|
// $a = new \A\Foo;
|
|
|
|
// $a->foo = 5;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }',
|
|
|
|
// ],
|
|
|
|
// 'internalMethodInTraitWithCall' => [
|
|
|
|
// '<?php
|
|
|
|
// namespace A {
|
|
|
|
// /**
|
|
|
|
// * @psalm-internal
|
|
|
|
// */
|
|
|
|
// trait T {
|
|
|
|
// public static function barBar(): void {
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// class Foo {
|
|
|
|
// use T;
|
|
|
|
//
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// namespace B {
|
|
|
|
// class Bat {
|
|
|
|
// public function batBat() : void {
|
|
|
|
// \A\Foo::barBar();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }',
|
|
|
|
// ],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
|
|
|
|
*/
|
|
|
|
public function providerInvalidCodeParse()
|
|
|
|
{
|
|
|
|
// commented out entries are not yet implemented
|
|
|
|
return [
|
2019-05-11 16:15:50 +02:00
|
|
|
'internalMethodWithCall' => [
|
|
|
|
'<?php
|
|
|
|
namespace A\B {
|
|
|
|
class Foo {
|
|
|
|
/**
|
|
|
|
* @psalm-internal A\B
|
|
|
|
*/
|
|
|
|
public static function barBar(): void {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace A\C {
|
|
|
|
class Bat {
|
|
|
|
public function batBat(): void {
|
|
|
|
\A\B\Foo::barBar();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
'error_message' => 'The method A\B\Foo::barBar has been marked as internal to A\B',
|
|
|
|
],
|
2019-05-11 15:58:53 +02:00
|
|
|
'internalClassWithStaticCall' => [
|
|
|
|
'<?php
|
|
|
|
namespace A\B {
|
|
|
|
/**
|
|
|
|
* @psalm-internal A\B
|
|
|
|
*/
|
|
|
|
class Foo {
|
|
|
|
public static function barBar(): void {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace A\C {
|
|
|
|
class Bat {
|
|
|
|
public function batBat(): void {
|
|
|
|
\A\B\Foo::barBar();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
'error_message' => 'InternalClass',
|
|
|
|
],
|
2019-05-11 16:23:49 +02:00
|
|
|
'internalClassWithNew' => [
|
|
|
|
'<?php
|
|
|
|
namespace A\B {
|
|
|
|
/**
|
|
|
|
* @psalm-internal A\B
|
|
|
|
*/
|
|
|
|
class Foo { }
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace A\C {
|
|
|
|
class Bat {
|
|
|
|
public function batBat(): void {
|
|
|
|
$a = new \A\B\Foo();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
'error_message' => 'InternalClass',
|
|
|
|
],
|
2019-05-10 00:33:27 +02:00
|
|
|
'internalClassWithExtends' => [
|
|
|
|
'<?php
|
|
|
|
namespace A\B {
|
|
|
|
/**
|
|
|
|
* @psalm-internal A\B
|
|
|
|
*/
|
|
|
|
class Foo { }
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace A\C {
|
|
|
|
class Bar extends \A\B\Foo {}
|
|
|
|
}',
|
|
|
|
'error_message' => 'A\B\Foo is internal to A\B',
|
|
|
|
],
|
|
|
|
// 'internalPropertyGet' => [
|
|
|
|
// '<?php
|
|
|
|
// namespace A {
|
|
|
|
// class Foo {
|
|
|
|
// /**
|
|
|
|
// * @psalm-internal
|
|
|
|
// * @var ?int
|
|
|
|
// */
|
|
|
|
// public $foo;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// namespace B {
|
|
|
|
// class Bat {
|
|
|
|
// public function batBat() : void {
|
|
|
|
// echo (new \A\Foo)->foo;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }',
|
|
|
|
// 'error_message' => 'InternalProperty',
|
|
|
|
// ],
|
|
|
|
// 'internalPropertySet' => [
|
|
|
|
// '<?php
|
|
|
|
// namespace A {
|
|
|
|
// class Foo {
|
|
|
|
// /**
|
|
|
|
// * @psalm-internal
|
|
|
|
// * @var ?int
|
|
|
|
// */
|
|
|
|
// public $foo;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// namespace B {
|
|
|
|
// class Bat {
|
|
|
|
// public function batBat() : void {
|
|
|
|
// $a = new \A\Foo;
|
|
|
|
// $a->foo = 5;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }',
|
|
|
|
// 'error_message' => 'InternalProperty',
|
|
|
|
// ],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|