From 1c41fb27eddd8b6f76720377a9032ae75483266d Mon Sep 17 00:00:00 2001 From: Vladimir Razuvaev Date: Tue, 4 Jul 2017 16:27:40 +0700 Subject: [PATCH] Added test for enums with `null` values --- tests/Type/DefinitionTest.php | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/tests/Type/DefinitionTest.php b/tests/Type/DefinitionTest.php index a39e933..f6d7674 100644 --- a/tests/Type/DefinitionTest.php +++ b/tests/Type/DefinitionTest.php @@ -253,6 +253,41 @@ class DefinitionTest extends \PHPUnit_Framework_TestCase $this->assertEquals(true, $value->isDeprecated()); } + /** + * @it defines an enum type with a value of `null` + */ + public function testDefinesAnEnumTypeWithAValueOfNullAndUndefined() + { + $EnumTypeWithNullishValue = new EnumType([ + 'name' => 'EnumWithNullishValue', + 'values' => [ + 'NULL' => ['value' => null], + 'UNDEFINED' => ['value' => null], + ] + ]); + + $expected = [ + [ + 'name' => 'NULL', + 'description' => null, + 'deprecationReason' => null, + 'value' => null, + ], + [ + 'name' => 'UNDEFINED', + 'description' => null, + 'deprecationReason' => null, + 'value' => null, + ], + ]; + + $actual = $EnumTypeWithNullishValue->getValues(); + + $this->assertEquals(count($expected), count($actual)); + $this->assertEquals($expected[0], (array)$actual[0]); + $this->assertEquals($expected[1], (array)$actual[1]); + } + /** * @it defines an object type with deprecated field */