2016-07-25 00:02:15 +02:00
|
|
|
<?php
|
2021-12-15 04:58:32 +01:00
|
|
|
|
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;
|
2021-12-11 18:45:06 +01:00
|
|
|
use Psalm\IssueBuffer;
|
2021-12-04 21:55:53 +01:00
|
|
|
use Psalm\Tests\Traits\InvalidCodeAnalysisTestTrait;
|
|
|
|
use Psalm\Tests\Traits\ValidCodeAnalysisTestTrait;
|
2019-06-26 22:52:29 +02:00
|
|
|
|
2021-08-19 19:34:30 +02:00
|
|
|
use function getcwd;
|
|
|
|
|
2021-06-08 04:55:21 +02:00
|
|
|
use const DIRECTORY_SEPARATOR;
|
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2020-09-12 17:24:05 +02:00
|
|
|
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(
|
2021-08-19 19:31:58 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-09-12 17:24:05 +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(
|
2021-08-19 19:31:58 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-09-12 17:24:05 +02:00
|
|
|
public function testUnusedSuppressAllOnFunction(): void
|
2020-01-12 16:38:32 +01:00
|
|
|
{
|
2021-12-03 20:29:06 +01:00
|
|
|
$this->expectException(CodeException::class);
|
2020-01-12 16:38:32 +01:00
|
|
|
$this->expectExceptionMessage('UnusedPsalmSuppress');
|
|
|
|
|
2021-08-19 19:31:58 +02:00
|
|
|
|
2020-01-12 16:38:32 +01:00
|
|
|
$this->addFile(
|
2021-08-19 19:31:58 +02:00
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php',
|
2020-01-12 16:38:32 +01:00
|
|
|
'<?php
|
|
|
|
/** @psalm-suppress all */
|
|
|
|
function foo(): string {
|
|
|
|
return "foo";
|
2022-12-18 17:15:15 +01:00
|
|
|
}',
|
2020-01-12 16:38:32 +01:00
|
|
|
);
|
|
|
|
|
2021-12-03 20:11:20 +01:00
|
|
|
$this->analyzeFile(getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php', new Context());
|
2020-01-12 16:38:32 +01:00
|
|
|
}
|
|
|
|
|
2020-09-12 17:24:05 +02:00
|
|
|
public function testUnusedSuppressAllOnStatement(): void
|
2020-01-12 16:38:32 +01:00
|
|
|
{
|
2021-12-03 20:29:06 +01:00
|
|
|
$this->expectException(CodeException::class);
|
2020-01-12 16:38:32 +01:00
|
|
|
$this->expectExceptionMessage('UnusedPsalmSuppress');
|
|
|
|
|
|
|
|
$this->addFile(
|
2021-08-19 19:31:58 +02:00
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php',
|
2020-01-12 16:38:32 +01:00
|
|
|
'<?php
|
|
|
|
/** @psalm-suppress all */
|
2022-12-18 17:15:15 +01:00
|
|
|
print("foo");',
|
2020-01-12 16:38:32 +01:00
|
|
|
);
|
2021-12-03 20:11:20 +01:00
|
|
|
$this->analyzeFile(getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php', new Context());
|
2020-01-12 16:38:32 +01:00
|
|
|
}
|
|
|
|
|
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(
|
2021-08-19 19:31:58 +02:00
|
|
|
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();
|
|
|
|
|
2021-08-19 19:31:58 +02:00
|
|
|
$this->analyzeFile(getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php', $context);
|
2019-10-04 20:01:58 +02:00
|
|
|
}
|
|
|
|
|
2020-09-12 17:24:05 +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(
|
2021-08-19 19:31:58 +02:00
|
|
|
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();
|
|
|
|
|
2021-08-19 19:31:58 +02:00
|
|
|
$this->analyzeFile(getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php', $context);
|
2019-10-04 20:01:58 +02:00
|
|
|
}
|
|
|
|
|
2020-09-12 17:24:05 +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(
|
2021-08-19 19:31:58 +02:00
|
|
|
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();
|
|
|
|
|
2021-08-19 19:31:58 +02:00
|
|
|
$this->analyzeFile(getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php', $context);
|
2019-10-04 20:01:58 +02:00
|
|
|
}
|
|
|
|
|
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(
|
2021-08-19 19:31:58 +02:00
|
|
|
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();
|
|
|
|
|
2021-08-19 19:31:58 +02:00
|
|
|
$this->analyzeFile(getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php', $context);
|
2019-10-04 20:01:58 +02:00
|
|
|
}
|
|
|
|
|
2020-09-12 17:24:05 +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(
|
2021-08-19 19:31:58 +02:00
|
|
|
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();
|
|
|
|
|
2021-08-19 19:31:58 +02:00
|
|
|
$this->analyzeFile(getcwd() . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'somefile.php', $context);
|
2019-10-04 20:01:58 +02:00
|
|
|
}
|
|
|
|
|
2021-12-11 18:45:06 +01: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
|
|
|
',
|
2021-12-11 18:45:06 +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
|
|
|
',
|
2021-12-11 18:45:06 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->analyzeFile($file_path, new Context(), false);
|
|
|
|
$this->project_analyzer->consolidateAnalyzedData();
|
|
|
|
IssueBuffer::processUnusedSuppressions($this->project_analyzer->getCodebase()->file_provider);
|
|
|
|
}
|
|
|
|
|
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' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2017-04-25 05:45:02 +02:00
|
|
|
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' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2020-09-13 22:41:14 +02:00
|
|
|
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' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2017-10-27 00:19:19 +02:00
|
|
|
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' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2017-10-27 00:19:19 +02:00
|
|
|
/**
|
|
|
|
* @psalm-suppress UndefinedClass
|
|
|
|
*/
|
|
|
|
new B();',
|
|
|
|
],
|
2017-04-25 05:45:02 +02:00
|
|
|
'excludeIssue' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2017-04-25 05:45:02 +02:00
|
|
|
fooFoo();',
|
|
|
|
'assertions' => [],
|
2022-01-13 19:49:37 +01:00
|
|
|
'ignored_issues' => ['UndefinedFunction'],
|
2017-05-27 02:05:57 +02:00
|
|
|
],
|
2019-06-03 21:02:28 +02:00
|
|
|
'suppressWithNewlineAfterComment' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'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
|
|
|
],
|
2019-06-15 22:14:36 +02:00
|
|
|
'suppressUndefinedFunction' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2019-06-15 22:14:36 +02:00
|
|
|
function verify_return_type(): DateTime {
|
|
|
|
/** @psalm-suppress UndefinedFunction */
|
|
|
|
unknown_function_call();
|
|
|
|
|
|
|
|
return new DateTime();
|
|
|
|
}',
|
|
|
|
],
|
2020-01-12 16:38:32 +01:00
|
|
|
'suppressAllStatementIssues' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2020-01-12 16:38:32 +01:00
|
|
|
/** @psalm-suppress all */
|
2021-12-28 20:47:10 +01:00
|
|
|
echo strlen(123, 456, 789);',
|
2020-01-12 16:38:32 +01:00
|
|
|
],
|
|
|
|
'suppressAllFunctionIssues' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2020-01-12 16:38:32 +01:00
|
|
|
/** @psalm-suppress all */
|
|
|
|
function foo($a)
|
|
|
|
{
|
2021-12-28 20:47:10 +01:00
|
|
|
echo strlen(123, 456, 789);
|
2020-01-12 16:38:32 +01:00
|
|
|
}',
|
|
|
|
],
|
2021-05-04 04:26:56 +02:00
|
|
|
'possiblyNullSuppressedAtClassLevel' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2021-05-04 04:26:56 +02:00
|
|
|
/** @psalm-suppress PossiblyNullReference */
|
|
|
|
class C {
|
|
|
|
private ?DateTime $mightBeNull = null;
|
|
|
|
|
|
|
|
public function m(): string {
|
|
|
|
return $this->mightBeNull->format("");
|
|
|
|
}
|
|
|
|
}
|
2021-05-06 03:46:29 +02:00
|
|
|
',
|
2021-05-04 04:26:56 +02:00
|
|
|
],
|
2021-05-06 03:46:29 +02:00
|
|
|
'methodSignatureMismatchSuppressedAtClassLevel' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2021-05-06 03:46:29 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
',
|
2021-12-11 18:45:06 +01:00
|
|
|
],
|
|
|
|
'missingPropertyTypeAtPropertyLevel' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2021-12-11 18:45:06 +01:00
|
|
|
class Foo {
|
|
|
|
/**
|
|
|
|
* @psalm-suppress MissingPropertyType
|
|
|
|
*/
|
|
|
|
public $bar = "baz";
|
|
|
|
}
|
|
|
|
',
|
|
|
|
],
|
2021-12-11 20:21:45 +01:00
|
|
|
'suppressUnusedSuppression' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2021-12-11 20:21:45 +01:00
|
|
|
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' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2021-12-28 20:47:10 +01:00
|
|
|
die();
|
|
|
|
/**
|
|
|
|
* @psalm-suppress UnevaluatedCode
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
',
|
|
|
|
],
|
2017-04-25 05:45:02 +02:00
|
|
|
];
|
2016-12-14 18:28:38 +01:00
|
|
|
}
|
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' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2017-10-27 00:19:19 +02:00
|
|
|
class A {
|
|
|
|
public function b() {
|
|
|
|
/**
|
|
|
|
* @psalm-suppress UndefinedClass
|
|
|
|
*/
|
|
|
|
new B();
|
|
|
|
new C();
|
|
|
|
}
|
|
|
|
}',
|
2021-05-03 23:54:09 +02:00
|
|
|
'error_message' => 'UndefinedClass - src' . DIRECTORY_SEPARATOR . 'somefile.php:8:33 - Class, interface or enum named C',
|
2017-10-27 00:19:19 +02:00
|
|
|
],
|
|
|
|
'undefinedClassOneLineInFileAfter' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2017-10-27 00:19:19 +02:00
|
|
|
/**
|
|
|
|
* @psalm-suppress UndefinedClass
|
|
|
|
*/
|
|
|
|
new B();
|
|
|
|
new C();',
|
2021-05-03 23:54:09 +02:00
|
|
|
'error_message' => 'UndefinedClass - src' . DIRECTORY_SEPARATOR . 'somefile.php:6:25 - Class, interface or enum named C',
|
2017-10-27 00:19:19 +02:00
|
|
|
],
|
2019-06-07 20:24:15 +02:00
|
|
|
'missingParamTypeShouldntPreventUndefinedClassError' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2019-06-07 20:24:15 +02:00
|
|
|
/** @psalm-suppress MissingParamType */
|
|
|
|
function foo($s = Foo::BAR) : void {}',
|
|
|
|
'error_message' => 'UndefinedClass',
|
|
|
|
],
|
2021-12-11 20:21:45 +01:00
|
|
|
'suppressUnusedSuppressionByItselfIsNotSuppressed' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2021-12-11 20:21:45 +01:00
|
|
|
class Foo {
|
|
|
|
/**
|
|
|
|
* @psalm-suppress UnusedPsalmSuppress
|
|
|
|
*/
|
|
|
|
public string $bar = "baz";
|
|
|
|
}
|
|
|
|
',
|
|
|
|
'error_message' => 'UnusedPsalmSuppress',
|
|
|
|
],
|
2017-10-27 00:19:19 +02:00
|
|
|
];
|
|
|
|
}
|
2016-07-25 00:02:15 +02:00
|
|
|
}
|