2018-05-20 23:19:53 +02:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
|
|
|
|
use Psalm\Config;
|
|
|
|
use Psalm\Context;
|
|
|
|
|
|
|
|
class EnumTest extends TestCase
|
|
|
|
{
|
|
|
|
use Traits\FileCheckerInvalidCodeParseTestTrait;
|
|
|
|
use Traits\FileCheckerValidCodeParseTestTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function providerFileCheckerValidCodeParse()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'enumStringOrEnumIntCorrect' => [
|
|
|
|
'<?php
|
2018-05-21 06:46:56 +02:00
|
|
|
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
|
2018-05-21 06:46:56 +02:00
|
|
|
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);',
|
|
|
|
],
|
2018-05-21 00:58:34 +02:00
|
|
|
'noRedundantConditionWithSwitch' => [
|
|
|
|
'<?php
|
2018-05-21 06:46:56 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
2018-05-21 06:46:56 +02:00
|
|
|
'classConstantCorrect' => [
|
|
|
|
'<?php
|
|
|
|
namespace Ns;
|
|
|
|
|
|
|
|
class C {
|
2018-08-09 02:36:16 +02:00
|
|
|
const A1 = "bat";
|
2018-05-21 06:46:56 +02:00
|
|
|
const B = "baz";
|
|
|
|
}
|
2018-08-09 02:36:16 +02:00
|
|
|
/** @psalm-param "foo"|"bar"|C::A1|C::B $s */
|
2018-05-21 06:46:56 +02:00
|
|
|
function foo($s) : void {}
|
|
|
|
foo("foo");
|
|
|
|
foo("bar");
|
|
|
|
foo("bat");
|
|
|
|
foo("baz");',
|
|
|
|
],
|
2018-05-20 23:19:53 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function providerFileCheckerInvalidCodeParse()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'enumStringOrEnumIntIncorrectString' => [
|
|
|
|
'<?php
|
2018-05-21 06:46:56 +02:00
|
|
|
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
|
2018-05-21 06:46:56 +02:00
|
|
|
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
|
2018-05-21 06:46:56 +02:00
|
|
|
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',
|
|
|
|
],
|
2018-05-21 06:46:56 +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',
|
|
|
|
],
|
|
|
|
'classConstantCorrect' => [
|
|
|
|
'<?php
|
|
|
|
namespace Ns;
|
|
|
|
|
|
|
|
/** @psalm-param "foo"|"bar"|C::A|C::B $s */
|
|
|
|
function foo($s) : void {}',
|
|
|
|
'error_message' => 'UndefinedClass',
|
|
|
|
],
|
2018-05-20 23:19:53 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|