1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
psalm/tests/EnumTest.php

248 lines
7.9 KiB
PHP
Raw Normal View History

2018-05-20 23:19:53 +02:00
<?php
namespace Psalm\Tests;
class EnumTest extends TestCase
{
2018-11-06 03:57:36 +01:00
use Traits\InvalidCodeAnalysisTestTrait;
use Traits\ValidCodeAnalysisTestTrait;
2018-05-20 23:19:53 +02:00
/**
2019-03-01 21:55:20 +01:00
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
2018-05-20 23:19:53 +02:00
*/
public function providerValidCodeParse(): iterable
2018-05-20 23:19:53 +02:00
{
return [
'enumStringOrEnumIntCorrect' => [
'<?php
namespace Ns;
2018-05-20 23:19:53 +02:00
/** @psalm-param ( "foo\"with" | "bar" | 1 | 2 | 3 ) $s */
function foo($s) : void {}
foo("foo\"with");
foo("bar");
foo(1);
foo(2);
foo(3);',
],
'enumStringOrEnumIntWithoutSpacesCorrect' => [
'<?php
namespace Ns;
/** @psalm-param "foo\"with"|"bar"|1|2|3|4.0|4.1 $s */
2018-05-20 23:19:53 +02:00
function foo($s) : void {}
foo("foo\"with");
foo("bar");
foo(1);
foo(2);
foo(3);
foo(4.0);
foo(4.1);',
2018-05-20 23:19:53 +02:00
],
2018-05-21 00:58:34 +02:00
'noRedundantConditionWithSwitch' => [
'<?php
namespace Ns;
2018-05-21 00:58:34 +02:00
/**
* @psalm-param ( "foo" | "bar") $s
*/
function foo(string $s) : void {
switch ($s) {
case "foo":
break;
case "bar":
break;
}
}',
],
'classConstantCorrect' => [
'<?php
namespace Ns;
class C {
const A1 = "bat";
const B = "baz";
}
/** @psalm-param "foo"|"bar"|C::A1|C::B $s */
function foo($s) : void {}
foo("foo");
foo("bar");
foo("bat");
foo("baz");',
],
'selfClassConstGoodValue' => [
'<?php
class A {
const FOO = "foo";
const BAR = "bar";
/**
* @param (self::FOO | self::BAR) $s
*/
public static function foo(string $s) : void {}
}
A::foo("foo");',
],
'classConstants' => [
'<?php
namespace NS {
use OtherNS\C as E;
class C {}
class D {};
/** @psalm-param C::class|D::class|E::class $s */
function foo(string $s) : void {}
foo(C::class);
foo(D::class);
foo(E::class);
foo(\OtherNS\C::class);
}
namespace OtherNS {
class C {}
}',
],
2018-05-20 23:19:53 +02:00
];
}
/**
2019-03-01 21:55:20 +01:00
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
2018-05-20 23:19:53 +02:00
*/
public function providerInvalidCodeParse(): iterable
2018-05-20 23:19:53 +02:00
{
return [
'enumStringOrEnumIntIncorrectString' => [
'<?php
namespace Ns;
2018-05-20 23:19:53 +02:00
/** @psalm-param ( "foo" | "bar" | 1 | 2 | 3 ) $s */
function foo($s) : void {}
foo("bat");',
'error_message' => 'InvalidArgument',
],
'enumStringOrEnumIntIncorrectInt' => [
'<?php
namespace Ns;
2018-05-20 23:19:53 +02:00
/** @psalm-param ( "foo" | "bar" | 1 | 2 | 3 ) $s */
function foo($s) : void {}
foo(4);',
'error_message' => 'InvalidArgument',
],
'enumStringOrEnumIntWithoutSpacesIncorrect' => [
'<?php
namespace Ns;
2018-05-20 23:19:53 +02:00
/** @psalm-param "foo\"with"|"bar"|1|2|3 $s */
function foo($s) : void {}
foo(4);',
'error_message' => 'InvalidArgument',
],
'enumWrongFloat' => [
'<?php
namespace Ns;
/** @psalm-param 1.2|3.4|5.6 $s */
function foo($s) : void {}
foo(7.8);',
'error_message' => 'InvalidArgument',
2018-05-20 23:19:53 +02:00
],
'classConstantIncorrect' => [
'<?php
namespace Ns;
class C {
const A = "bat";
const B = "baz";
}
/** @psalm-param "foo"|"bar"|C::A|C::B $s */
function foo($s) : void {}
foo("for");',
'error_message' => 'InvalidArgument',
],
'classConstantNoClass' => [
'<?php
namespace Ns;
/** @psalm-param "foo"|"bar"|C::A|C::B $s */
function foo($s) : void {}',
'error_message' => 'UndefinedDocblockClass',
],
'selfClassConstBadValue' => [
'<?php
class A {
const FOO = "foo";
const BAR = "bar";
/**
* @param (self::FOO | self::BAR) $s
*/
public static function foo(string $s) : void {}
}
A::foo("for");',
'error_message' => 'InvalidArgument',
],
2018-08-09 03:46:37 +02:00
'selfClassConstBadConst' => [
'<?php
class A {
const FOO = "foo";
const BAR = "bar";
/**
* @param (self::1FOO | self::BAR) $s
*/
public static function foo(string $s) : void {}
}',
'error_message' => 'InvalidDocblock',
],
'classConstantInvalidValue' => [
'<?php
namespace NS {
use OtherNS\C as E;
class C {}
class D {};
class F {};
/** @psalm-param C::class|D::class|E::class $s */
function foo(string $s) : void {}
foo(F::class);
}
namespace OtherNS {
class C {}
}',
'error_message' => 'InvalidArgument',
],
'nonExistentConstantClass' => [
'<?php
/**
* @return Foo::HELLO|5
*/
function getVal()
{
return 5;
}',
'error_message' => 'UndefinedDocblockClass',
],
'nonExistentClassConstant' => [
'<?php
class Foo {}
/**
* @return Foo::HELLO|5
*/
function getVal()
{
return 5;
}',
'error_message' => 'UndefinedConstant',
],
'noIntToFloatEnum' => [
'<?php
/** @param 0.3|0.5 $p */
function f($p): void {}
f(1);',
'error_message' => 'InvalidArgument',
],
2018-05-20 23:19:53 +02:00
];
}
}