-
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(type): Add value-of<BackedEnum> type
- Loading branch information
Showing
6 changed files
with
249 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Psl\Type\Internal; | ||
|
||
use BackedEnum; | ||
use Psl\Type\Exception\AssertException; | ||
use Psl\Type\Exception\CoercionException; | ||
use Psl\Type\Type; | ||
|
||
use function array_map; | ||
use function in_array; | ||
use function is_string; | ||
use function Psl\Type\int; | ||
use function Psl\Type\string; | ||
|
||
/** | ||
* @template T of BackedEnum | ||
* | ||
* @extends Type<value-of<T>> | ||
* | ||
* @internal | ||
*/ | ||
final readonly class BackedEnumValueType extends Type | ||
{ | ||
private bool $isStringBacked; | ||
|
||
/** | ||
* @psalm-mutation-free | ||
* | ||
* @param class-string<T> $enum | ||
*/ | ||
public function __construct( | ||
private string $enum | ||
) { | ||
$this->isStringBacked = is_string($this->enum::cases()[0]->value); | ||
} | ||
|
||
/** | ||
* @psalm-assert-if-true value-of<T> $value | ||
*/ | ||
public function matches(mixed $value): bool | ||
{ | ||
if (! is_string($value) && ! is_int($value)) { | ||
return false; | ||
} | ||
|
||
$values = array_map( | ||
static fn (BackedEnum $enum): string|int => $enum->value, | ||
$this->enum::cases(), | ||
); | ||
|
||
return in_array($value, $values, true); | ||
} | ||
|
||
/** | ||
* @throws CoercionException | ||
* | ||
* @return value-of<T> | ||
*/ | ||
public function coerce(mixed $value): string|int | ||
{ | ||
if ($this->isStringBacked) { | ||
try { | ||
$str_value = string()->coerce($value); | ||
if ($this->matches($str_value)) { | ||
return $str_value; | ||
} | ||
} catch (CoercionException) { | ||
} | ||
} else { | ||
try { | ||
$int_value = int()->coerce($value); | ||
if ($this->matches($int_value)) { | ||
return $int_value; | ||
} | ||
} catch (CoercionException) { | ||
} | ||
} | ||
|
||
throw CoercionException::withValue($value, $this->toString()); | ||
} | ||
|
||
/** | ||
* @throws AssertException | ||
* | ||
* @return value-of<T> | ||
* | ||
* @psalm-assert value-of<T> $value | ||
*/ | ||
public function assert(mixed $value): string|int | ||
{ | ||
if ($this->matches($value)) { | ||
return $value; | ||
} | ||
|
||
throw AssertException::withValue($value, $this->toString()); | ||
} | ||
|
||
public function toString(): string | ||
{ | ||
return 'value-of<' . $this->enum . '>'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Psl\Type; | ||
|
||
use BackedEnum; | ||
|
||
/** | ||
* @psalm-pure | ||
* | ||
* @template T of BackedEnum | ||
* | ||
* @param class-string<T> $enum | ||
* | ||
* @return TypeInterface<value-of<T>> | ||
*/ | ||
function backed_enum_value(string $enum): TypeInterface | ||
{ | ||
return new Internal\BackedEnumValueType($enum); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Psl\Tests\Unit\Type; | ||
|
||
use Psl\Str; | ||
use Psl\Tests\Fixture\IntegerEnum; | ||
use Psl\Type; | ||
|
||
use const STDIN; | ||
|
||
/** | ||
* @extends TypeTest<value-of<IntegerEnum>> | ||
*/ | ||
final class IntegerBackedEnumValueTypeTest extends TypeTest | ||
{ | ||
public function getType(): Type\TypeInterface | ||
{ | ||
return Type\backed_enum_value(IntegerEnum::class); | ||
} | ||
|
||
public function getValidCoercions(): iterable | ||
{ | ||
yield [$this->stringable('1'), IntegerEnum::Foo->value]; | ||
yield [1, IntegerEnum::Foo->value]; | ||
yield ['1', IntegerEnum::Foo->value]; | ||
yield ['2', IntegerEnum::Bar->value]; | ||
yield [2, IntegerEnum::Bar->value]; | ||
} | ||
|
||
/** | ||
* @return iterable<array{0: mixed}> | ||
*/ | ||
public function getInvalidCoercions(): iterable | ||
{ | ||
yield [99]; | ||
yield [null]; | ||
yield [STDIN]; | ||
yield ['hello']; | ||
yield [$this->stringable('bar')]; | ||
yield [new class { | ||
}]; | ||
} | ||
|
||
/** | ||
* @return iterable<array{0: Type\Type<mixed>, 1: string}> | ||
*/ | ||
public function getToStringExamples(): iterable | ||
{ | ||
yield [Type\backed_enum_value(IntegerEnum::class), Str\format('value-of<%s>', IntegerEnum::class)]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Psl\Tests\Unit\Type; | ||
|
||
use Psl\Str; | ||
use Psl\Tests\Fixture\StringEnum; | ||
use Psl\Type; | ||
|
||
use const STDIN; | ||
|
||
/** | ||
* @extends TypeTest<value-of<StringEnum>> | ||
*/ | ||
final class StringBackedEnumValueTypeTest extends TypeTest | ||
{ | ||
public function getType(): Type\TypeInterface | ||
{ | ||
return Type\backed_enum_value(StringEnum::class); | ||
} | ||
|
||
public function getValidCoercions(): iterable | ||
{ | ||
yield [1, StringEnum::Bar->value]; | ||
yield [$this->stringable('foo'), StringEnum::Foo->value]; | ||
yield ['foo', StringEnum::Foo->value]; | ||
yield ['1', StringEnum::Bar->value]; | ||
} | ||
|
||
/** | ||
* @return iterable<array{0: mixed}> | ||
*/ | ||
public function getInvalidCoercions(): iterable | ||
{ | ||
yield [null]; | ||
yield [STDIN]; | ||
yield ['hello']; | ||
yield [$this->stringable('bar')]; | ||
yield [new class { | ||
}]; | ||
} | ||
|
||
/** | ||
* @return iterable<array{0: Type\Type<value-of<StringEnum>>, 1: string}> | ||
*/ | ||
public function getToStringExamples(): iterable | ||
{ | ||
yield [Type\backed_enum_value(StringEnum::class), Str\format('value-of<%s>', StringEnum::class)]; | ||
} | ||
} |