mirror of
https://github.com/danog/Valinor.git
synced 2024-12-14 18:16:19 +01:00
0144bf084a
This enables full PHP 8.1 support 🎉
85 lines
2.6 KiB
PHP
85 lines
2.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace CuyZ\Valinor\Tests\Unit\Mapper\Tree\Builder;
|
|
|
|
use AssertionError;
|
|
use CuyZ\Valinor\Mapper\Tree\Builder\EnumNodeBuilder;
|
|
use CuyZ\Valinor\Mapper\Tree\Builder\RootNodeBuilder;
|
|
use CuyZ\Valinor\Mapper\Tree\Exception\InvalidEnumValue;
|
|
use CuyZ\Valinor\Mapper\Tree\Shell;
|
|
use CuyZ\Valinor\Tests\Fake\Type\FakeType;
|
|
use CuyZ\Valinor\Tests\Fixture\Enum\BackedIntegerEnum;
|
|
use CuyZ\Valinor\Tests\Fixture\Enum\BackedStringEnum;
|
|
use CuyZ\Valinor\Tests\Fixture\Enum\PureEnum;
|
|
use CuyZ\Valinor\Type\Types\EnumType;
|
|
use PHPUnit\Framework\TestCase;
|
|
use stdClass;
|
|
|
|
/**
|
|
* @requires PHP >= 8.1
|
|
*/
|
|
final class EnumNodeBuilderTest extends TestCase
|
|
{
|
|
private RootNodeBuilder $builder;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->builder = new RootNodeBuilder(new EnumNodeBuilder());
|
|
}
|
|
|
|
public function test_invalid_type_fails_assertion(): void
|
|
{
|
|
$this->expectException(AssertionError::class);
|
|
|
|
$this->builder->build(Shell::root(new FakeType(), []));
|
|
}
|
|
|
|
public function test_invalid_value_throws_exception(): void
|
|
{
|
|
$type = new EnumType(PureEnum::class);
|
|
|
|
$this->expectException(InvalidEnumValue::class);
|
|
$this->expectExceptionCode(1633093113);
|
|
$this->expectExceptionMessage('Invalid value `foo`, it must be one of `FOO`, `BAR`.');
|
|
|
|
$this->builder->build(Shell::root($type, 'foo'));
|
|
}
|
|
|
|
public function test_invalid_string_value_throws_exception(): void
|
|
{
|
|
$type = new EnumType(BackedStringEnum::class);
|
|
|
|
$this->expectException(InvalidEnumValue::class);
|
|
$this->expectExceptionCode(1633093113);
|
|
$this->expectExceptionMessage('Invalid value `stdClass`, it must be one of `foo`, `bar`.');
|
|
|
|
$this->builder->build(Shell::root($type, new stdClass()));
|
|
}
|
|
|
|
public function test_boolean_instead_of_integer_value_throws_exception(): void
|
|
{
|
|
$type = new EnumType(BackedIntegerEnum::class);
|
|
|
|
$this->expectException(InvalidEnumValue::class);
|
|
$this->expectExceptionCode(1633093113);
|
|
$this->expectExceptionMessage('Invalid value `bool`, it must be one of `42`, `1337`.');
|
|
|
|
$this->builder->build(Shell::root($type, false));
|
|
}
|
|
|
|
public function test_invalid_integer_value_throws_exception(): void
|
|
{
|
|
$type = new EnumType(BackedIntegerEnum::class);
|
|
|
|
$this->expectException(InvalidEnumValue::class);
|
|
$this->expectExceptionCode(1633093113);
|
|
$this->expectExceptionMessage('Invalid value `stdClass`, it must be one of `42`, `1337`.');
|
|
|
|
$this->builder->build(Shell::root($type, new stdClass()));
|
|
}
|
|
}
|