mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
128 lines
3.5 KiB
PHP
128 lines
3.5 KiB
PHP
|
<?php
|
||
|
namespace Psalm\Tests;
|
||
|
|
||
|
use const DIRECTORY_SEPARATOR;
|
||
|
|
||
|
class PureAnnotationTest extends TestCase
|
||
|
{
|
||
|
use Traits\InvalidCodeAnalysisTestTrait;
|
||
|
use Traits\ValidCodeAnalysisTestTrait;
|
||
|
|
||
|
/**
|
||
|
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
|
||
|
*/
|
||
|
public function providerValidCodeParse()
|
||
|
{
|
||
|
return [
|
||
|
'simplePureFunction' => [
|
||
|
'<?php
|
||
|
namespace Bar;
|
||
|
|
||
|
class A {
|
||
|
public int $a = 5;
|
||
|
}
|
||
|
|
||
|
/** @psalm-pure */
|
||
|
function filterOdd(int $i, A $a) : ?int {
|
||
|
if ($i % 2 === 0 || $a->a === 2) {
|
||
|
return $i;
|
||
|
}
|
||
|
|
||
|
$a = new A();
|
||
|
|
||
|
return null;
|
||
|
}',
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
|
||
|
*/
|
||
|
public function providerInvalidCodeParse()
|
||
|
{
|
||
|
return [
|
||
|
'impurePropertyAssignment' => [
|
||
|
'<?php
|
||
|
namespace Bar;
|
||
|
|
||
|
class A {
|
||
|
public int $a = 5;
|
||
|
}
|
||
|
|
||
|
/** @psalm-pure */
|
||
|
function filterOdd(int $i, A $a) : ?int {
|
||
|
$a->a++;
|
||
|
|
||
|
if ($i % 2 === 0 || $a->a === 2) {
|
||
|
return $i;
|
||
|
}
|
||
|
|
||
|
return null;
|
||
|
}',
|
||
|
'error_message' => 'ImpurePropertyAssignment',
|
||
|
],
|
||
|
'impureMethodCall' => [
|
||
|
'<?php
|
||
|
namespace Bar;
|
||
|
|
||
|
class A {
|
||
|
public int $a = 5;
|
||
|
|
||
|
public function foo() : void {
|
||
|
$this->a++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/** @psalm-pure */
|
||
|
function filterOdd(int $i, A $a) : ?int {
|
||
|
$a->foo();
|
||
|
|
||
|
if ($i % 2 === 0 || $a->a === 2) {
|
||
|
return $i;
|
||
|
}
|
||
|
|
||
|
return null;
|
||
|
}',
|
||
|
'error_message' => 'ImpureMethodCall',
|
||
|
],
|
||
|
'impureFunctionCall' => [
|
||
|
'<?php
|
||
|
namespace Bar;
|
||
|
|
||
|
/** @psalm-pure */
|
||
|
function filterOdd(array $a) : void {
|
||
|
extract($a);
|
||
|
}',
|
||
|
'error_message' => 'ImpureFunctionCall',
|
||
|
],
|
||
|
'impureConstructorCall' => [
|
||
|
'<?php
|
||
|
namespace Bar;
|
||
|
|
||
|
class A {
|
||
|
public int $a = 5;
|
||
|
}
|
||
|
|
||
|
class B {
|
||
|
public function __construct(A $a) {
|
||
|
$a->a++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/** @psalm-pure */
|
||
|
function filterOdd(int $i, A $a) : ?int {
|
||
|
$b = new B($a);
|
||
|
|
||
|
if ($i % 2 === 0 || $a->a === 2) {
|
||
|
return $i;
|
||
|
}
|
||
|
|
||
|
return null;
|
||
|
}',
|
||
|
'error_message' => 'ImpureMethodCall',
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
}
|