1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 22:01:48 +01:00
psalm/tests/IssueSuppressionTest.php

158 lines
5.0 KiB
PHP
Raw Normal View History

2016-07-24 18:02:15 -04:00
<?php
2016-07-25 18:37:44 -04:00
namespace Psalm\Tests;
2016-07-24 18:02:15 -04:00
use const DIRECTORY_SEPARATOR;
class IssueSuppressionTest extends TestCase
2016-07-24 18:02:15 -04:00
{
2018-11-05 21:57:36 -05:00
use Traits\ValidCodeAnalysisTestTrait;
use Traits\InvalidCodeAnalysisTestTrait;
2016-07-24 18:02:15 -04:00
2019-08-18 14:27:50 -04:00
/**
* @return void
*/
public function testIssueSuppressedOnFunction()
{
$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());
}
/**
* @return void
*/
public function testIssueSuppressedOnStatement()
{
$this->expectException(\Psalm\Exception\CodeException::class);
$this->expectExceptionMessage('UnusedPsalmSuppress');
$this->addFile(
'somefile.php',
'<?php
/** @psalm-suppress InvalidArgument */
echo strpos("hello", "e");'
);
$this->analyzeFile('somefile.php', new \Psalm\Context());
}
2017-01-13 14:07:23 -05:00
/**
2019-03-01 22:55:20 +02:00
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
2017-01-13 14:07:23 -05:00
*/
2018-11-05 21:57:36 -05:00
public function providerValidCodeParse()
2016-07-24 18:02:15 -04:00
{
return [
'undefinedClassSimple' => [
'<?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-26 20:05:57 -04:00
}',
],
'undefinedClassOneLine' => [
'<?php
class A {
2018-01-11 15:50:45 -05:00
public function b(): void {
/**
* @psalm-suppress UndefinedClass
*/
new B();
}
}',
],
'undefinedClassOneLineInFile' => [
'<?php
/**
* @psalm-suppress UndefinedClass
*/
new B();',
],
'excludeIssue' => [
'<?php
fooFoo();',
'assertions' => [],
2017-05-26 20:05:57 -04:00
'error_levels' => ['UndefinedFunction'],
],
2019-06-03 15:02:28 -04:00
'suppressWithNewlineAfterComment' => [
'<?php
function foo() : void {
/**
* @psalm-suppress TooManyArguments
* here
*/
strlen("a", "b");
2019-07-05 16:24:00 -04:00
}',
2019-06-03 15:02:28 -04:00
],
'suppressUndefinedFunction' => [
'<?php
function verify_return_type(): DateTime {
/** @psalm-suppress UndefinedFunction */
unknown_function_call();
return new DateTime();
}',
],
];
2016-12-14 12:28:38 -05:00
}
/**
2019-03-01 22:55:20 +02:00
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
*/
2018-11-05 21:57:36 -05:00
public function providerInvalidCodeParse()
{
return [
'undefinedClassOneLineWithLineAfter' => [
'<?php
class A {
public function b() {
/**
* @psalm-suppress UndefinedClass
*/
new B();
new C();
}
}',
2019-02-27 16:00:44 -05:00
'error_message' => 'UndefinedClass - src' . DIRECTORY_SEPARATOR . 'somefile.php:8:33 - Class or interface C',
],
'undefinedClassOneLineInFileAfter' => [
'<?php
/**
* @psalm-suppress UndefinedClass
*/
new B();
new C();',
2019-02-27 16:00:44 -05:00
'error_message' => 'UndefinedClass - src' . DIRECTORY_SEPARATOR . 'somefile.php:6:25 - Class or interface C',
],
'missingParamTypeShouldntPreventUndefinedClassError' => [
'<?php
/** @psalm-suppress MissingParamType */
function foo($s = Foo::BAR) : void {}',
'error_message' => 'UndefinedClass',
],
];
}
2016-07-24 18:02:15 -04:00
}