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

454 lines
16 KiB
PHP
Raw Normal View History

2016-07-25 00:02:15 +02:00
<?php
2016-07-26 00:37:44 +02:00
namespace Psalm\Tests;
2016-07-25 00:02:15 +02:00
2019-10-04 20:01:58 +02:00
use Psalm\Config;
use Psalm\Context;
2021-12-03 20:29:06 +01:00
use Psalm\Exception\CodeException;
use Psalm\IssueBuffer;
2021-12-04 21:55:53 +01:00
use Psalm\Tests\Traits\InvalidCodeAnalysisTestTrait;
use Psalm\Tests\Traits\ValidCodeAnalysisTestTrait;
2021-08-19 19:34:30 +02:00
use function getcwd;
2021-06-08 04:55:21 +02:00
use const DIRECTORY_SEPARATOR;
class IssueSuppressionTest extends TestCase
2016-07-25 00:02:15 +02:00
{
2021-12-04 21:55:53 +01:00
use ValidCodeAnalysisTestTrait;
use InvalidCodeAnalysisTestTrait;
2016-07-25 00:02:15 +02:00
2021-12-28 20:47:10 +01:00
public function setUp(): void
{
parent::setUp();
$this->project_analyzer->getCodebase()->find_unused_variables = true;
}
public function testIssueSuppressedOnFunction(): void
2019-08-18 20:27:50 +02:00
{
2021-12-03 20:29:06 +01:00
$this->expectException(CodeException::class);
2019-08-18 20:27:50 +02:00
$this->expectExceptionMessage('UnusedPsalmSuppress');
$this->addFile(
getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php',
2019-08-18 20:27:50 +02:00
'<?php
class A {
/**
* @psalm-suppress UndefinedClass
* @psalm-suppress MixedMethodCall
* @psalm-suppress MissingReturnType
* @psalm-suppress UnusedVariable
*/
public function b() {
B::fooFoo()->barBar()->bat()->baz()->bam()->bas()->bee()->bet()->bes()->bis();
}
2022-12-18 17:15:15 +01:00
}',
2019-08-18 20:27:50 +02:00
);
2021-12-03 20:11:20 +01:00
$this->analyzeFile(getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php', new Context());
2019-08-18 20:27:50 +02:00
}
public function testIssueSuppressedOnStatement(): void
2019-08-18 20:27:50 +02:00
{
2021-12-03 20:29:06 +01:00
$this->expectException(CodeException::class);
2019-08-18 20:27:50 +02:00
$this->expectExceptionMessage('UnusedPsalmSuppress');
$this->addFile(
getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php',
2019-08-18 20:27:50 +02:00
'<?php
/** @psalm-suppress InvalidArgument */
2022-12-18 17:15:15 +01:00
echo strlen("hello");',
2019-08-18 20:27:50 +02:00
);
2021-12-03 20:11:20 +01:00
$this->analyzeFile(getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php', new Context());
2019-08-18 20:27:50 +02:00
}
public function testUnusedSuppressAllOnFunction(): void
{
2021-12-03 20:29:06 +01:00
$this->expectException(CodeException::class);
$this->expectExceptionMessage('UnusedPsalmSuppress');
$this->addFile(
getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php',
'<?php
/** @psalm-suppress all */
function foo(): string {
return "foo";
2022-12-18 17:15:15 +01:00
}',
);
2021-12-03 20:11:20 +01:00
$this->analyzeFile(getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php', new Context());
}
public function testUnusedSuppressAllOnStatement(): void
{
2021-12-03 20:29:06 +01:00
$this->expectException(CodeException::class);
$this->expectExceptionMessage('UnusedPsalmSuppress');
$this->addFile(
getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php',
'<?php
/** @psalm-suppress all */
2022-12-18 17:15:15 +01:00
print("foo");',
);
2021-12-03 20:11:20 +01:00
$this->analyzeFile(getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php', new Context());
}
public function testMissingThrowsDocblockSuppressed(): void
2019-10-04 20:01:58 +02:00
{
Config::getInstance()->check_for_throws_docblock = true;
$this->addFile(
getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php',
2019-10-04 20:01:58 +02:00
'<?php
function example1 (): void {
/** @psalm-suppress MissingThrowsDocblock */
throw new Exception();
}
/** @psalm-suppress MissingThrowsDocblock */
if (rand(0, 1)) {
function example2 (): void {
throw new Exception();
}
2022-12-18 17:15:15 +01:00
}',
2019-10-04 20:01:58 +02:00
);
$context = new Context();
$this->analyzeFile(getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php', $context);
2019-10-04 20:01:58 +02:00
}
public function testMissingThrowsDocblockSuppressedWithoutThrow(): void
2019-10-04 20:01:58 +02:00
{
2021-12-03 20:29:06 +01:00
$this->expectException(CodeException::class);
2019-10-04 20:01:58 +02:00
$this->expectExceptionMessage('UnusedPsalmSuppress');
Config::getInstance()->check_for_throws_docblock = true;
$this->addFile(
getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php',
2019-10-04 20:01:58 +02:00
'<?php
/** @psalm-suppress MissingThrowsDocblock */
if (rand(0, 1)) {
function example (): void {}
2022-12-18 17:15:15 +01:00
}',
2019-10-04 20:01:58 +02:00
);
$context = new Context();
$this->analyzeFile(getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php', $context);
2019-10-04 20:01:58 +02:00
}
public function testMissingThrowsDocblockSuppressedDuplicate(): void
2019-10-04 20:01:58 +02:00
{
2021-12-03 20:29:06 +01:00
$this->expectException(CodeException::class);
2019-10-04 20:01:58 +02:00
$this->expectExceptionMessage('UnusedPsalmSuppress');
Config::getInstance()->check_for_throws_docblock = true;
$this->addFile(
getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php',
2019-10-04 20:01:58 +02:00
'<?php
/** @psalm-suppress MissingThrowsDocblock */
function example1 (): void {
/** @psalm-suppress MissingThrowsDocblock */
throw new Exception();
2022-12-18 17:15:15 +01:00
}',
2019-10-04 20:01:58 +02:00
);
$context = new Context();
$this->analyzeFile(getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php', $context);
2019-10-04 20:01:58 +02:00
}
public function testUncaughtThrowInGlobalScopeSuppressed(): void
2019-10-04 20:01:58 +02:00
{
Config::getInstance()->check_for_throws_in_global_scope = true;
$this->addFile(
getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php',
2019-10-04 20:01:58 +02:00
'<?php
if (rand(0, 1)) {
/** @psalm-suppress UncaughtThrowInGlobalScope */
throw new Exception();
}
/** @psalm-suppress UncaughtThrowInGlobalScope */
if (rand(0, 1)) {
throw new Exception();
2021-12-28 20:47:10 +01:00
}
/** @psalm-suppress UncaughtThrowInGlobalScope */
2022-12-18 17:15:15 +01:00
throw new Exception();',
2019-10-04 20:01:58 +02:00
);
$context = new Context();
$this->analyzeFile(getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php', $context);
2019-10-04 20:01:58 +02:00
}
public function testUncaughtThrowInGlobalScopeSuppressedWithoutThrow(): void
2019-10-04 20:01:58 +02:00
{
2021-12-03 20:29:06 +01:00
$this->expectException(CodeException::class);
2019-10-04 20:01:58 +02:00
$this->expectExceptionMessage('UnusedPsalmSuppress');
Config::getInstance()->check_for_throws_in_global_scope = true;
$this->addFile(
getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php',
2019-10-04 20:01:58 +02:00
'<?php
/** @psalm-suppress UncaughtThrowInGlobalScope */
2022-12-18 17:15:15 +01:00
echo "hello";',
2019-10-04 20:01:58 +02:00
);
$context = new Context();
$this->analyzeFile(getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php', $context);
2019-10-04 20:01:58 +02:00
}
public function testPossiblyUnusedPropertySuppressedOnClass(): void
{
$this->project_analyzer->getCodebase()->find_unused_code = "always";
$file_path = getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php';
$this->addFile(
$file_path,
'<?php
/** @psalm-suppress PossiblyUnusedProperty */
class Foo {
public string $bar = "baz";
}
2021-12-28 20:47:10 +01:00
$_foo = new Foo();
2022-12-18 17:15:15 +01:00
',
);
$this->analyzeFile($file_path, new Context(), false);
$this->project_analyzer->consolidateAnalyzedData();
IssueBuffer::processUnusedSuppressions($this->project_analyzer->getCodebase()->file_provider);
}
public function testPossiblyUnusedPropertySuppressedOnProperty(): void
{
$this->project_analyzer->getCodebase()->find_unused_code = "always";
$file_path = getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php';
$this->addFile(
$file_path,
'<?php
class Foo {
/** @psalm-suppress PossiblyUnusedProperty */
public string $bar = "baz";
}
2021-12-28 20:47:10 +01:00
$_foo = new Foo();
2022-12-18 17:15:15 +01:00
',
);
$this->analyzeFile($file_path, new Context(), false);
$this->project_analyzer->consolidateAnalyzedData();
IssueBuffer::processUnusedSuppressions($this->project_analyzer->getCodebase()->file_provider);
}
public function providerValidCodeParse(): iterable
2016-07-25 00:02:15 +02:00
{
return [
'undefinedClassSimple' => [
'code' => '<?php
class A {
/**
* @psalm-suppress UndefinedClass
* @psalm-suppress MixedMethodCall
* @psalm-suppress MissingReturnType
*/
public function b() {
B::fooFoo()->barBar()->bat()->baz()->bam()->bas()->bee()->bet()->bes()->bis();
}
2017-05-27 02:05:57 +02:00
}',
],
'multipleIssues' => [
'code' => '<?php
class A {
/**
* @psalm-suppress UndefinedClass, MixedMethodCall,MissingReturnType because reasons
*/
public function b() {
B::fooFoo()->barBar()->bat()->baz()->bam()->bas()->bee()->bet()->bes()->bis();
}
}',
],
'undefinedClassOneLine' => [
'code' => '<?php
class A {
2018-01-11 21:50:45 +01:00
public function b(): void {
/**
* @psalm-suppress UndefinedClass
*/
new B();
}
}',
],
'undefinedClassOneLineInFile' => [
'code' => '<?php
/**
* @psalm-suppress UndefinedClass
*/
new B();',
],
'excludeIssue' => [
'code' => '<?php
fooFoo();',
'assertions' => [],
'ignored_issues' => ['UndefinedFunction'],
2017-05-27 02:05:57 +02:00
],
2019-06-03 21:02:28 +02:00
'suppressWithNewlineAfterComment' => [
'code' => '<?php
2019-06-03 21:02:28 +02:00
function foo() : void {
/**
* @psalm-suppress TooManyArguments
* here
*/
2021-12-28 20:47:10 +01:00
echo strlen("a", "b");
2019-07-05 22:24:00 +02:00
}',
2019-06-03 21:02:28 +02:00
],
'suppressUndefinedFunction' => [
'code' => '<?php
function verify_return_type(): DateTime {
/** @psalm-suppress UndefinedFunction */
unknown_function_call();
return new DateTime();
}',
],
'suppressAllStatementIssues' => [
'code' => '<?php
/** @psalm-suppress all */
2021-12-28 20:47:10 +01:00
echo strlen(123, 456, 789);',
],
'suppressAllFunctionIssues' => [
'code' => '<?php
/** @psalm-suppress all */
function foo($a)
{
2021-12-28 20:47:10 +01:00
echo strlen(123, 456, 789);
}',
],
'possiblyNullSuppressedAtClassLevel' => [
'code' => '<?php
/** @psalm-suppress PossiblyNullReference */
class C {
private ?DateTime $mightBeNull = null;
public function m(): string {
return $this->mightBeNull->format("");
}
}
',
],
'methodSignatureMismatchSuppressedAtClassLevel' => [
'code' => '<?php
class ParentClass {
/**
* @psalm-suppress MissingParamType
* @return mixed
*/
public function func($var) {
return $var;
}
}
/** @psalm-suppress MethodSignatureMismatch */
class MismatchMethod extends ParentClass {
/** @return mixed */
public function func(string $var) {
return $var;
}
}
',
],
'missingPropertyTypeAtPropertyLevel' => [
'code' => '<?php
class Foo {
/**
* @psalm-suppress MissingPropertyType
*/
public $bar = "baz";
}
',
],
'suppressUnusedSuppression' => [
'code' => '<?php
class Foo {
/**
* @psalm-suppress UnusedPsalmSuppress, MissingPropertyType
*/
public string $bar = "baz";
/**
* @psalm-suppress UnusedPsalmSuppress, MissingReturnType
*/
public function foobar(): string
{
return "foobar";
}
}
',
],
2021-12-28 20:47:10 +01:00
'suppressUnevaluatedCode' => [
'code' => '<?php
2021-12-28 20:47:10 +01:00
die();
/**
* @psalm-suppress UnevaluatedCode
*/
break;
',
],
];
2016-12-14 18:28:38 +01:00
}
public function providerInvalidCodeParse(): iterable
{
return [
'undefinedClassOneLineWithLineAfter' => [
'code' => '<?php
class A {
public function b() {
/**
* @psalm-suppress UndefinedClass
*/
new B();
new C();
}
}',
'error_message' => 'UndefinedClass - src' . DIRECTORY_SEPARATOR . 'somefile.php:8:33 - Class, interface or enum named C',
],
'undefinedClassOneLineInFileAfter' => [
'code' => '<?php
/**
* @psalm-suppress UndefinedClass
*/
new B();
new C();',
'error_message' => 'UndefinedClass - src' . DIRECTORY_SEPARATOR . 'somefile.php:6:25 - Class, interface or enum named C',
],
'missingParamTypeShouldntPreventUndefinedClassError' => [
'code' => '<?php
/** @psalm-suppress MissingParamType */
function foo($s = Foo::BAR) : void {}',
'error_message' => 'UndefinedClass',
],
'suppressUnusedSuppressionByItselfIsNotSuppressed' => [
'code' => '<?php
class Foo {
/**
* @psalm-suppress UnusedPsalmSuppress
*/
public string $bar = "baz";
}
',
'error_message' => 'UnusedPsalmSuppress',
],
];
}
2016-07-25 00:02:15 +02:00
}