1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
psalm/tests/FileManipulation/ImmutableAnnotationAdditionTest.php
Ben Davies d31dc663b9
Split unit test over multiple jobs in GitHub Actions, lowering the total run time (#4985)
* Split unit test over multiple jobs in GitHub Actions, lowering the total run time

* rename FileManipulationTest to FileManipulationTestCase so it does not run as a standalone Test
2021-01-29 11:47:31 +01:00

222 lines
6.4 KiB
PHP

<?php
namespace Psalm\Tests\FileManipulation;
class ImmutableAnnotationAdditionTest extends FileManipulationTestCase
{
/**
* @return array<string,array{string,string,string,string[],bool}>
*/
public function providerValidCodeParse(): array
{
return [
'addPureAnnotationToFunction' => [
'<?php
class A {
public int $i;
public function __construct(int $i) {
$this->i = $i;
}
public function getPlus5() {
return $this->i + 5;
}
}',
'<?php
/**
* @psalm-immutable
*/
class A {
public int $i;
public function __construct(int $i) {
$this->i = $i;
}
public function getPlus5() {
return $this->i + 5;
}
}',
'7.4',
['MissingImmutableAnnotation'],
true,
],
'addPureAnnotationToFunctionWithExistingDocblock' => [
'<?php
/**
* This is a class
* that is cool
*
* @Foo\Bar
*/
class A {
public int $i;
public function __construct(int $i) {
$this->i = $i;
}
public function getPlus5() {
return $this->i + 5;
}
}',
'<?php
/**
* This is a class
* that is cool
*
* @Foo\Bar
*
* @psalm-immutable
*/
class A {
public int $i;
public function __construct(int $i) {
$this->i = $i;
}
public function getPlus5() {
return $this->i + 5;
}
}',
'7.4',
['MissingImmutableAnnotation'],
true,
],
'dontAddPureAnnotationWhenMethodHasImpurity' => [
'<?php
class A {
public int $i;
public function __construct(int $i) {
$this->i = $i;
}
public function getPlus5() {
echo $this->i;
return $this->i + 5;
}
}',
'<?php
class A {
public int $i;
public function __construct(int $i) {
$this->i = $i;
}
public function getPlus5() {
echo $this->i;
return $this->i + 5;
}
}',
'7.4',
['MissingImmutableAnnotation'],
true,
],
'addPureAnnotationWhenClassCanHoldMutableData' => [
'<?php
class B {
public int $i = 5;
}
class A {
public B $b;
public function __construct(B $b) {
$this->b = $b;
}
public function getPlus5() {
return $this->b->i + 5;
}
}
$b = new B();
$a = new A($b);
echo $a->getPlus5();
$b->i = 6;
echo $a->getPlus5();',
'<?php
class B {
public int $i = 5;
}
/**
* @psalm-immutable
*/
class A {
public B $b;
public function __construct(B $b) {
$this->b = $b;
}
public function getPlus5() {
return $this->b->i + 5;
}
}
$b = new B();
$a = new A($b);
echo $a->getPlus5();
$b->i = 6;
echo $a->getPlus5();',
'7.4',
['MissingImmutableAnnotation'],
true,
],
'addPureAnnotationToClassThatExtends' => [
'<?php
class AParent {
public int $i;
public function __construct(int $i) {
$this->i = $i;
}
public function mutate() : void {
echo "hello";
}
}
class A extends AParent {
public function getPlus5() {
return $this->i + 5;
}
}',
'<?php
class AParent {
public int $i;
public function __construct(int $i) {
$this->i = $i;
}
public function mutate() : void {
echo "hello";
}
}
class A extends AParent {
public function getPlus5() {
return $this->i + 5;
}
}',
'7.4',
['MissingImmutableAnnotation'],
true,
],
];
}
}