mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
623 lines
20 KiB
PHP
623 lines
20 KiB
PHP
<?php
|
|
namespace Psalm\Tests;
|
|
|
|
class TryCatchTest extends TestCase
|
|
{
|
|
use Traits\ValidCodeAnalysisTestTrait;
|
|
use Traits\InvalidCodeAnalysisTestTrait;
|
|
|
|
/**
|
|
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
|
|
*/
|
|
public function providerValidCodeParse(): iterable
|
|
{
|
|
return [
|
|
'addThrowableInterfaceType' => [
|
|
'<?php
|
|
interface CustomThrowable {}
|
|
class CustomException extends Exception implements CustomThrowable {}
|
|
|
|
/** @psalm-suppress InvalidCatch */
|
|
try {
|
|
throw new CustomException("Bad");
|
|
} catch (CustomThrowable $e) {
|
|
echo $e->getMessage();
|
|
}',
|
|
],
|
|
'rethrowInterfaceExceptionWithoutInvalidThrow' => [
|
|
'<?php
|
|
interface CustomThrowable {}
|
|
class CustomException extends Exception implements CustomThrowable {}
|
|
|
|
/** @psalm-suppress InvalidCatch */
|
|
try {
|
|
throw new CustomException("Bad");
|
|
} catch (CustomThrowable $e) {
|
|
throw $e;
|
|
}',
|
|
],
|
|
'tryCatchVar' => [
|
|
'<?php
|
|
try {
|
|
$worked = true;
|
|
}
|
|
catch (\Exception $e) {
|
|
$worked = false;
|
|
}',
|
|
'assertions' => [
|
|
'$worked' => 'bool',
|
|
],
|
|
],
|
|
'alwaysReturnsBecauseCatchDoesNothing' => [
|
|
'<?php
|
|
function throws(): void {
|
|
throw new Exception("bad");
|
|
}
|
|
function foo(): string {
|
|
try {
|
|
throws();
|
|
} catch (Exception $e) {
|
|
// do nothing
|
|
}
|
|
|
|
return "hello";
|
|
}',
|
|
],
|
|
'wheresTheCatch' => [
|
|
'<?php
|
|
function foo() : bool {
|
|
try {
|
|
return true;
|
|
} finally {
|
|
}
|
|
}
|
|
|
|
function bar() : bool {
|
|
try {
|
|
// do nothing
|
|
} finally {
|
|
return true;
|
|
}
|
|
}',
|
|
],
|
|
'catchWithNoReturnButFinallyReturns' => [
|
|
'<?php
|
|
function foo() : bool {
|
|
try {
|
|
if (rand(0, 1)) throw new Exception("bad");
|
|
} catch (Exception $e) {
|
|
echo $e->getMessage();
|
|
// do nothing here either
|
|
} finally {
|
|
return true;
|
|
}
|
|
}',
|
|
],
|
|
'stopAnalysisAfterBadTryIssue' => [
|
|
'<?php
|
|
$foo = true;
|
|
|
|
try {
|
|
$a->bar();
|
|
} catch (\TypeError $e) {
|
|
$foo = false;
|
|
}
|
|
|
|
if (!$foo) {}',
|
|
'assertions' => [],
|
|
'error_message' => [
|
|
'UndefinedGlobalVariable' => \Psalm\Config::REPORT_INFO,
|
|
'MixedMethodCall' => \Psalm\Config::REPORT_INFO,
|
|
],
|
|
],
|
|
'issetAfterTryCatchWithoutAssignmentInCatch' => [
|
|
'<?php
|
|
function test(): string {
|
|
throw new Exception("bad");
|
|
}
|
|
|
|
$a = "foo";
|
|
|
|
try {
|
|
$var = test();
|
|
} catch (Exception $e) {
|
|
echo "bad";
|
|
}
|
|
|
|
if (isset($var)) {}
|
|
|
|
echo $a;',
|
|
],
|
|
'issetAfterTryCatchWithoutAssignmentInCatchButReturn' => [
|
|
'<?php
|
|
function test(): string {
|
|
throw new Exception("bad");
|
|
}
|
|
|
|
$a = "foo";
|
|
|
|
try {
|
|
$var = test();
|
|
} catch (Exception $e) {
|
|
return;
|
|
}
|
|
|
|
echo $var;
|
|
|
|
echo $a;',
|
|
],
|
|
'issetAfterTryCatchWithAssignmentInCatch' => [
|
|
'<?php
|
|
function test(): string {
|
|
throw new Exception("bad");
|
|
}
|
|
|
|
$a = "foo";
|
|
|
|
try {
|
|
$var = test();
|
|
} catch (Exception $e) {
|
|
$var = "bad";
|
|
}
|
|
|
|
echo $var;
|
|
echo $a;',
|
|
],
|
|
'issetAfterTryCatchWithIfInCatch' => [
|
|
'<?php
|
|
function test(): string {
|
|
throw new Exception("bad");
|
|
}
|
|
|
|
function foo() : void {
|
|
$a = null;
|
|
|
|
$params = null;
|
|
|
|
try {
|
|
$a = test();
|
|
|
|
$params = $a;
|
|
} catch (\Exception $exception) {
|
|
$params = "hello";
|
|
}
|
|
|
|
echo $params;
|
|
}',
|
|
],
|
|
'noRedundantConditionsInFinally' => [
|
|
'<?php
|
|
function doThings(): void {}
|
|
function message(): string { return "message"; }
|
|
|
|
$errors = [];
|
|
|
|
try {
|
|
doThings();
|
|
} catch (RuntimeException $e) {
|
|
$errors["field"] = message();
|
|
} catch (LengthException $e) {
|
|
$errors[rand(0,1) ? "field" : "field2"] = message();
|
|
} finally {
|
|
if (!empty($errors)) {
|
|
return $errors;
|
|
}
|
|
}',
|
|
],
|
|
'typeDoesNotContainTypeInCatch' => [
|
|
'<?php
|
|
function foo(bool $test, callable $bar): string {
|
|
try {
|
|
$bar();
|
|
|
|
if ($test) {
|
|
return "moo";
|
|
}
|
|
return "miau";
|
|
} catch (\Exception $exception) {
|
|
if ($test) {
|
|
return "moo";
|
|
}
|
|
return "miau";
|
|
}
|
|
}',
|
|
],
|
|
'notAlwaysUndefinedVarInFinally' => [
|
|
'<?php
|
|
function maybeThrows() : void {
|
|
if (rand(0, 1)) {
|
|
throw new UnexpectedValueException();
|
|
}
|
|
}
|
|
|
|
function doTry() : void {
|
|
try {
|
|
maybeThrows();
|
|
return;
|
|
} catch (Exception $exception) {
|
|
throw $exception;
|
|
} finally {
|
|
if (isset($exception)) {
|
|
echo "here";
|
|
}
|
|
}
|
|
}',
|
|
],
|
|
'noReturnInsideCatch' => [
|
|
'<?php
|
|
/**
|
|
* @return never-returns
|
|
*/
|
|
function example() : void {
|
|
throw new Exception();
|
|
}
|
|
|
|
try {
|
|
$str = "a";
|
|
} catch (Exception $e) {
|
|
example();
|
|
}
|
|
ord($str);',
|
|
],
|
|
'varSetInOnlyCatch' => [
|
|
'<?php
|
|
try {
|
|
if (rand(0, 1)) {
|
|
throw new \Exception("Gotcha!");
|
|
}
|
|
|
|
exit;
|
|
} catch (\Exception $e) {
|
|
$lastException = $e;
|
|
}
|
|
|
|
echo $lastException->getMessage();'
|
|
],
|
|
'varSetInOnlyCatchWithNull' => [
|
|
'<?php
|
|
$lastException = null;
|
|
|
|
try {
|
|
if (rand(0, 1)) {
|
|
throw new \Exception("Gotcha!");
|
|
}
|
|
|
|
exit;
|
|
} catch (\Exception $e) {
|
|
$lastException = $e;
|
|
}
|
|
|
|
echo $lastException->getMessage();'
|
|
],
|
|
'allowDoubleNestedLoop' => [
|
|
'<?php
|
|
function foo() : void {
|
|
do {
|
|
try {
|
|
do {
|
|
$count = rand(0, 10);
|
|
} while ($count === 5);
|
|
} catch (Exception $e) {}
|
|
} while (rand(0, 1));
|
|
}'
|
|
],
|
|
'aliasException' => [
|
|
'<?php
|
|
namespace UserException;
|
|
|
|
class UserException extends \Exception {
|
|
|
|
}
|
|
|
|
namespace Alias\UserException;
|
|
|
|
use function class_alias;
|
|
|
|
class_alias(
|
|
\UserException\UserException::class,
|
|
\Alias\UserException\UserExceptionAlias::class
|
|
);
|
|
|
|
namespace Client;
|
|
|
|
try {
|
|
throw new \Alias\UserException\UserExceptionAlias();
|
|
} catch (\Alias\UserException\UserExceptionAlias $e) {
|
|
// do nothing
|
|
}'
|
|
],
|
|
'aliasAnotherException' => [
|
|
'<?php
|
|
namespace UserException;
|
|
|
|
class UserException extends \Exception {
|
|
|
|
}
|
|
|
|
namespace Alias\UserException;
|
|
|
|
use function class_alias;
|
|
|
|
class_alias(
|
|
\UserException\UserException::class,
|
|
\'\Alias\UserException\UserExceptionAlias\'
|
|
);
|
|
|
|
namespace Client;
|
|
|
|
try {
|
|
throw new \Alias\UserException\UserExceptionAlias();
|
|
} catch (\Alias\UserException\UserExceptionAlias $e) {
|
|
// do nothing
|
|
}'
|
|
],
|
|
'notRedundantVarCheckInFinally' => [
|
|
'<?php
|
|
$var = "a";
|
|
try {
|
|
if (rand(0, 1)) {
|
|
throw new \Exception();
|
|
}
|
|
$var = "b";
|
|
} finally {
|
|
if ($var === "a") {
|
|
echo $var;
|
|
}
|
|
}'
|
|
],
|
|
'suppressUndefinedVarInFinally' => [
|
|
'<?php
|
|
try {} finally {
|
|
/** @psalm-suppress UndefinedGlobalVariable, MixedPropertyAssignment */
|
|
$event->end = null;
|
|
}',
|
|
],
|
|
'returnsInTry' => [
|
|
'<?php
|
|
final class A
|
|
{
|
|
private ?string $property = null;
|
|
|
|
public function handle(string $arg): string
|
|
{
|
|
if (null !== $this->property) {
|
|
return $arg;
|
|
}
|
|
|
|
try {
|
|
return $arg;
|
|
} finally {
|
|
}
|
|
}
|
|
}'
|
|
],
|
|
'finallyArgMaybeUndefined' => [
|
|
'<?php
|
|
class TestMe {
|
|
private function startTransaction(): void {
|
|
}
|
|
|
|
private function endTransaction(bool $commit): void {
|
|
echo $commit ? "Committing" : "Rolling back";
|
|
}
|
|
|
|
public function doWork(): void {
|
|
$this->startTransaction();
|
|
try {
|
|
$this->workThatMayOrMayNotThrow();
|
|
$success = true;
|
|
} finally {
|
|
$this->endTransaction($success ?? false);
|
|
}
|
|
}
|
|
|
|
private function workThatMayOrMayNotThrow(): void {}
|
|
}'
|
|
],
|
|
'finallyArgIsNotUndefinedIfSet' => [
|
|
'<?php
|
|
function fooFunction (): string {
|
|
try{
|
|
$foo = "foo";
|
|
} finally {
|
|
/** @psalm-suppress PossiblyUndefinedVariable */
|
|
echo $foo;
|
|
$foo = "bar";
|
|
}
|
|
|
|
return $foo;
|
|
}'
|
|
],
|
|
'allowReturningPossiblyUndefinedFromTry' => [
|
|
'<?php
|
|
function fooFunction (): string {
|
|
try{
|
|
$foo = "foo";
|
|
} finally {
|
|
/** @psalm-suppress PossiblyUndefinedVariable */
|
|
echo $foo;
|
|
}
|
|
|
|
return $foo;
|
|
}'
|
|
],
|
|
'mixedNotUndefinedAfterTry' => [
|
|
'<?php
|
|
/**
|
|
* @return array<int, mixed>
|
|
* @psalm-suppress MixedAssignment
|
|
*/
|
|
function fetchFromCache(mixed $m)
|
|
{
|
|
$data = [];
|
|
|
|
try {
|
|
$value = $m;
|
|
} catch (Throwable $e) {
|
|
$value = $m;
|
|
}
|
|
|
|
$data[] = $value;
|
|
|
|
return $data;
|
|
}',
|
|
[],
|
|
[],
|
|
'8.0'
|
|
],
|
|
'issetInCatch' => [
|
|
'<?php
|
|
function foo() : void {
|
|
try {
|
|
$a = 0;
|
|
} catch (Exception $e) {
|
|
echo isset($a) ? $a : 1;
|
|
}
|
|
}'
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
|
|
*/
|
|
public function providerInvalidCodeParse(): iterable
|
|
{
|
|
return [
|
|
'invalidCatchClass' => [
|
|
'<?php
|
|
class A {}
|
|
try {
|
|
$worked = true;
|
|
}
|
|
catch (A $e) {}',
|
|
'error_message' => 'InvalidCatch',
|
|
],
|
|
'invalidThrowClass' => [
|
|
'<?php
|
|
class A {}
|
|
throw new A();',
|
|
'error_message' => 'InvalidThrow',
|
|
],
|
|
'theresNoCatch' => [
|
|
'<?php
|
|
function missing_return() : bool {
|
|
try {
|
|
} finally {
|
|
}
|
|
}',
|
|
'error_message' => 'InvalidReturnType',
|
|
],
|
|
'catchDoesNotReturn' => [
|
|
'<?php
|
|
function missing_return() : bool {
|
|
try {
|
|
} finally {
|
|
}
|
|
}',
|
|
'error_message' => 'InvalidReturnType',
|
|
],
|
|
'catchWithNoReturnAndFinallyDoesNotReturn' => [
|
|
'<?php
|
|
function foo() : bool {
|
|
try {
|
|
if (rand(0, 1)) throw new Exception("bad");
|
|
return true;
|
|
} catch (Exception $e) {
|
|
echo $e->getMessage();
|
|
// do nothing here either
|
|
} finally {
|
|
|
|
}
|
|
}',
|
|
'error_message' => 'InvalidReturnType',
|
|
],
|
|
'catchWithNoReturnAndNoFinally' => [
|
|
'<?php
|
|
function foo() : bool {
|
|
try {
|
|
if (rand(0, 1)) throw new Exception("bad");
|
|
return true;
|
|
} catch (Exception $e) {
|
|
echo $e->getMessage();
|
|
// do nothing here either
|
|
}
|
|
}',
|
|
'error_message' => 'InvalidReturnType',
|
|
],
|
|
'preventPossiblyUndefinedVarInTry' => [
|
|
'<?php
|
|
class Foo {
|
|
public static function possiblyThrows(): bool {
|
|
$result = (bool)rand(0, 1);
|
|
|
|
if (!$result) {
|
|
throw new \Exception("BOOM");
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
try {
|
|
$result = Foo::possiblyThrows();
|
|
$a = "ACME";
|
|
|
|
if ($result) {
|
|
echo $a;
|
|
}
|
|
} catch (\Exception $e) {
|
|
echo $a;
|
|
}',
|
|
'error_message' => 'PossiblyUndefinedGlobalVariable',
|
|
],
|
|
'possiblyNullReturnInTry' => [
|
|
'<?php
|
|
function foo() : string {
|
|
$a = null;
|
|
|
|
try {
|
|
$a = dangerous();
|
|
} catch (Exception $e) {
|
|
return $a;
|
|
}
|
|
|
|
return $a;
|
|
}
|
|
|
|
function dangerous() : string {
|
|
if (rand(0, 1)) {
|
|
throw new \Exception("bad");
|
|
}
|
|
return "hello";
|
|
}',
|
|
'error_message' => 'NullableReturnStatement'
|
|
],
|
|
'isAlwaysDefinedInFinally' => [
|
|
'<?php
|
|
function maybeThrows() : void {
|
|
if (rand(0, 1)) {
|
|
throw new UnexpectedValueException();
|
|
}
|
|
}
|
|
|
|
function doTry() : void {
|
|
$exception = new \Exception();
|
|
|
|
try {
|
|
maybeThrows();
|
|
return;
|
|
} catch (Exception $exception) {
|
|
throw $exception;
|
|
} finally {
|
|
if ($exception) {
|
|
echo "here";
|
|
}
|
|
}
|
|
}',
|
|
'error_message' => 'RedundantCondition'
|
|
],
|
|
];
|
|
}
|
|
}
|