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-06-26 22:52:29 +02:00
|
|
|
use const DIRECTORY_SEPARATOR;
|
2019-10-04 20:01:58 +02:00
|
|
|
use Psalm\Config;
|
|
|
|
use Psalm\Context;
|
2019-06-26 22:52:29 +02:00
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
class IssueSuppressionTest extends TestCase
|
2016-07-25 00:02:15 +02:00
|
|
|
{
|
2018-11-06 03:57:36 +01:00
|
|
|
use Traits\ValidCodeAnalysisTestTrait;
|
|
|
|
use Traits\InvalidCodeAnalysisTestTrait;
|
2016-07-25 00:02:15 +02:00
|
|
|
|
2020-09-12 17:24:05 +02:00
|
|
|
public function testIssueSuppressedOnFunction(): void
|
2019-08-18 20:27:50 +02:00
|
|
|
{
|
|
|
|
$this->expectException(\Psalm\Exception\CodeException::class);
|
|
|
|
$this->expectExceptionMessage('UnusedPsalmSuppress');
|
|
|
|
|
|
|
|
$this->addFile(
|
|
|
|
'somefile.php',
|
|
|
|
'<?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();
|
|
|
|
}
|
|
|
|
}'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->analyzeFile('somefile.php', new \Psalm\Context());
|
|
|
|
}
|
|
|
|
|
2020-09-12 17:24:05 +02:00
|
|
|
public function testIssueSuppressedOnStatement(): void
|
2019-08-18 20:27:50 +02:00
|
|
|
{
|
|
|
|
$this->expectException(\Psalm\Exception\CodeException::class);
|
|
|
|
$this->expectExceptionMessage('UnusedPsalmSuppress');
|
|
|
|
|
|
|
|
$this->addFile(
|
|
|
|
'somefile.php',
|
|
|
|
'<?php
|
|
|
|
/** @psalm-suppress InvalidArgument */
|
2020-09-11 01:05:47 +02:00
|
|
|
echo strlen("hello");'
|
2019-08-18 20:27:50 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->analyzeFile('somefile.php', new \Psalm\Context());
|
|
|
|
}
|
|
|
|
|
2020-09-12 17:24:05 +02:00
|
|
|
public function testUnusedSuppressAllOnFunction(): void
|
2020-01-12 16:38:32 +01:00
|
|
|
{
|
|
|
|
$this->expectException(\Psalm\Exception\CodeException::class);
|
|
|
|
$this->expectExceptionMessage('UnusedPsalmSuppress');
|
|
|
|
|
|
|
|
$this->addFile(
|
|
|
|
'somefile.php',
|
|
|
|
'<?php
|
|
|
|
/** @psalm-suppress all */
|
|
|
|
function foo(): string {
|
|
|
|
return "foo";
|
|
|
|
}'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->analyzeFile('somefile.php', new \Psalm\Context());
|
|
|
|
}
|
|
|
|
|
2020-09-12 17:24:05 +02:00
|
|
|
public function testUnusedSuppressAllOnStatement(): void
|
2020-01-12 16:38:32 +01:00
|
|
|
{
|
|
|
|
$this->expectException(\Psalm\Exception\CodeException::class);
|
|
|
|
$this->expectExceptionMessage('UnusedPsalmSuppress');
|
|
|
|
|
|
|
|
$this->addFile(
|
|
|
|
'somefile.php',
|
|
|
|
'<?php
|
|
|
|
/** @psalm-suppress all */
|
|
|
|
print("foo");'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->analyzeFile('somefile.php', new \Psalm\Context());
|
|
|
|
}
|
|
|
|
|
2020-09-12 17:24:05 +02:00
|
|
|
public function testMissingThrowsDocblockSuppressed(): void
|
2019-10-04 20:01:58 +02:00
|
|
|
{
|
|
|
|
Config::getInstance()->check_for_throws_docblock = true;
|
|
|
|
|
|
|
|
$this->addFile(
|
|
|
|
'somefile.php',
|
|
|
|
'<?php
|
|
|
|
function example1 (): void {
|
|
|
|
/** @psalm-suppress MissingThrowsDocblock */
|
|
|
|
throw new Exception();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @psalm-suppress MissingThrowsDocblock */
|
|
|
|
if (rand(0, 1)) {
|
|
|
|
function example2 (): void {
|
|
|
|
throw new Exception();
|
|
|
|
}
|
|
|
|
}'
|
|
|
|
);
|
|
|
|
|
|
|
|
$context = new Context();
|
|
|
|
|
|
|
|
$this->analyzeFile('somefile.php', $context);
|
|
|
|
}
|
|
|
|
|
2020-09-12 17:24:05 +02:00
|
|
|
public function testMissingThrowsDocblockSuppressedWithoutThrow(): void
|
2019-10-04 20:01:58 +02:00
|
|
|
{
|
|
|
|
$this->expectException(\Psalm\Exception\CodeException::class);
|
|
|
|
$this->expectExceptionMessage('UnusedPsalmSuppress');
|
|
|
|
Config::getInstance()->check_for_throws_docblock = true;
|
|
|
|
|
|
|
|
$this->addFile(
|
|
|
|
'somefile.php',
|
|
|
|
'<?php
|
|
|
|
/** @psalm-suppress MissingThrowsDocblock */
|
|
|
|
if (rand(0, 1)) {
|
|
|
|
function example (): void {}
|
|
|
|
}'
|
|
|
|
);
|
|
|
|
|
|
|
|
$context = new Context();
|
|
|
|
|
|
|
|
$this->analyzeFile('somefile.php', $context);
|
|
|
|
}
|
|
|
|
|
2020-09-12 17:24:05 +02:00
|
|
|
public function testMissingThrowsDocblockSuppressedDuplicate(): void
|
2019-10-04 20:01:58 +02:00
|
|
|
{
|
|
|
|
$this->expectException(\Psalm\Exception\CodeException::class);
|
|
|
|
$this->expectExceptionMessage('UnusedPsalmSuppress');
|
|
|
|
Config::getInstance()->check_for_throws_docblock = true;
|
|
|
|
|
|
|
|
$this->addFile(
|
|
|
|
'somefile.php',
|
|
|
|
'<?php
|
|
|
|
/** @psalm-suppress MissingThrowsDocblock */
|
|
|
|
function example1 (): void {
|
|
|
|
/** @psalm-suppress MissingThrowsDocblock */
|
|
|
|
throw new Exception();
|
|
|
|
}'
|
|
|
|
);
|
|
|
|
|
|
|
|
$context = new Context();
|
|
|
|
|
|
|
|
$this->analyzeFile('somefile.php', $context);
|
|
|
|
}
|
|
|
|
|
2020-09-12 17:24:05 +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(
|
|
|
|
'somefile.php',
|
|
|
|
'<?php
|
|
|
|
/** @psalm-suppress UncaughtThrowInGlobalScope */
|
|
|
|
throw new Exception();
|
|
|
|
|
|
|
|
if (rand(0, 1)) {
|
|
|
|
/** @psalm-suppress UncaughtThrowInGlobalScope */
|
|
|
|
throw new Exception();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @psalm-suppress UncaughtThrowInGlobalScope */
|
|
|
|
if (rand(0, 1)) {
|
|
|
|
throw new Exception();
|
|
|
|
}'
|
|
|
|
);
|
|
|
|
|
|
|
|
$context = new Context();
|
|
|
|
|
|
|
|
$this->analyzeFile('somefile.php', $context);
|
|
|
|
}
|
|
|
|
|
2020-09-12 17:24:05 +02:00
|
|
|
public function testUncaughtThrowInGlobalScopeSuppressedWithoutThrow(): void
|
2019-10-04 20:01:58 +02:00
|
|
|
{
|
|
|
|
$this->expectException(\Psalm\Exception\CodeException::class);
|
|
|
|
$this->expectExceptionMessage('UnusedPsalmSuppress');
|
|
|
|
Config::getInstance()->check_for_throws_in_global_scope = true;
|
|
|
|
|
|
|
|
$this->addFile(
|
|
|
|
'somefile.php',
|
|
|
|
'<?php
|
|
|
|
/** @psalm-suppress UncaughtThrowInGlobalScope */
|
|
|
|
strlen("a");'
|
|
|
|
);
|
|
|
|
|
|
|
|
$context = new Context();
|
|
|
|
|
|
|
|
$this->analyzeFile('somefile.php', $context);
|
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
2019-03-01 21:55:20 +01:00
|
|
|
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
|
2017-01-13 20:07:23 +01:00
|
|
|
*/
|
2020-09-12 17:24:05 +02:00
|
|
|
public function providerValidCodeParse(): iterable
|
2016-07-25 00:02:15 +02:00
|
|
|
{
|
2017-04-25 05:45:02 +02:00
|
|
|
return [
|
2019-08-18 18:25:48 +02:00
|
|
|
'undefinedClassSimple' => [
|
2017-04-25 05:45:02 +02:00
|
|
|
'<?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
|
|
|
}',
|
2017-04-25 05:45:02 +02:00
|
|
|
],
|
2020-09-13 22:41:14 +02:00
|
|
|
'multipleIssues' => [
|
|
|
|
'<?php
|
|
|
|
class A {
|
|
|
|
/**
|
|
|
|
* @psalm-suppress UndefinedClass, MixedMethodCall,MissingReturnType because reasons
|
|
|
|
*/
|
|
|
|
public function b() {
|
|
|
|
B::fooFoo()->barBar()->bat()->baz()->bam()->bas()->bee()->bet()->bes()->bis();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
2017-10-27 00:19:19 +02:00
|
|
|
'undefinedClassOneLine' => [
|
|
|
|
'<?php
|
|
|
|
class A {
|
2018-01-11 21:50:45 +01:00
|
|
|
public function b(): void {
|
2017-10-27 00:19:19 +02:00
|
|
|
/**
|
|
|
|
* @psalm-suppress UndefinedClass
|
|
|
|
*/
|
|
|
|
new B();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'undefinedClassOneLineInFile' => [
|
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @psalm-suppress UndefinedClass
|
|
|
|
*/
|
|
|
|
new B();',
|
|
|
|
],
|
2017-04-25 05:45:02 +02:00
|
|
|
'excludeIssue' => [
|
|
|
|
'<?php
|
|
|
|
fooFoo();',
|
|
|
|
'assertions' => [],
|
2017-05-27 02:05:57 +02:00
|
|
|
'error_levels' => ['UndefinedFunction'],
|
|
|
|
],
|
2019-06-03 21:02:28 +02:00
|
|
|
'suppressWithNewlineAfterComment' => [
|
|
|
|
'<?php
|
|
|
|
function foo() : void {
|
|
|
|
/**
|
|
|
|
* @psalm-suppress TooManyArguments
|
|
|
|
* here
|
|
|
|
*/
|
|
|
|
strlen("a", "b");
|
2019-07-05 22:24:00 +02:00
|
|
|
}',
|
2019-06-03 21:02:28 +02:00
|
|
|
],
|
2019-06-15 22:14:36 +02:00
|
|
|
'suppressUndefinedFunction' => [
|
|
|
|
'<?php
|
|
|
|
function verify_return_type(): DateTime {
|
|
|
|
/** @psalm-suppress UndefinedFunction */
|
|
|
|
unknown_function_call();
|
|
|
|
|
|
|
|
return new DateTime();
|
|
|
|
}',
|
|
|
|
],
|
2020-01-12 16:38:32 +01:00
|
|
|
'suppressAllStatementIssues' => [
|
|
|
|
'<?php
|
|
|
|
/** @psalm-suppress all */
|
|
|
|
strlen(123, 456, 789);',
|
|
|
|
],
|
|
|
|
'suppressAllFunctionIssues' => [
|
|
|
|
'<?php
|
|
|
|
/** @psalm-suppress all */
|
|
|
|
function foo($a)
|
|
|
|
{
|
|
|
|
strlen(123, 456, 789);
|
|
|
|
}',
|
|
|
|
],
|
2017-04-25 05:45:02 +02:00
|
|
|
];
|
2016-12-14 18:28:38 +01:00
|
|
|
}
|
2017-10-27 00:19:19 +02:00
|
|
|
|
|
|
|
/**
|
2019-03-01 21:55:20 +01:00
|
|
|
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
|
2017-10-27 00:19:19 +02:00
|
|
|
*/
|
2020-09-12 17:24:05 +02:00
|
|
|
public function providerInvalidCodeParse(): iterable
|
2017-10-27 00:19:19 +02:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
'undefinedClassOneLineWithLineAfter' => [
|
|
|
|
'<?php
|
|
|
|
class A {
|
|
|
|
public function b() {
|
|
|
|
/**
|
|
|
|
* @psalm-suppress UndefinedClass
|
|
|
|
*/
|
|
|
|
new B();
|
|
|
|
new C();
|
|
|
|
}
|
|
|
|
}',
|
2019-02-27 22:00:44 +01:00
|
|
|
'error_message' => 'UndefinedClass - src' . DIRECTORY_SEPARATOR . 'somefile.php:8:33 - Class or interface C',
|
2017-10-27 00:19:19 +02:00
|
|
|
],
|
|
|
|
'undefinedClassOneLineInFileAfter' => [
|
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @psalm-suppress UndefinedClass
|
|
|
|
*/
|
|
|
|
new B();
|
|
|
|
new C();',
|
2019-02-27 22:00:44 +01:00
|
|
|
'error_message' => 'UndefinedClass - src' . DIRECTORY_SEPARATOR . 'somefile.php:6:25 - Class or interface C',
|
2017-10-27 00:19:19 +02:00
|
|
|
],
|
2019-06-07 20:24:15 +02:00
|
|
|
'missingParamTypeShouldntPreventUndefinedClassError' => [
|
|
|
|
'<?php
|
|
|
|
/** @psalm-suppress MissingParamType */
|
|
|
|
function foo($s = Foo::BAR) : void {}',
|
|
|
|
'error_message' => 'UndefinedClass',
|
|
|
|
],
|
2017-10-27 00:19:19 +02:00
|
|
|
];
|
|
|
|
}
|
2016-07-25 00:02:15 +02:00
|
|
|
}
|