forked from loafle/openapi-generator-original
* Add required enum property
* Update samples
* Add test case which reproduce the problem
refs https://github.com/swagger-api/swagger-codegen/pull/7686#issuecomment-368200011
> 2. Non-required enum property is listed as invalid when omitted
* If the property is not empty, perform validation
* Update samples
* Use is_null() according to setter implementation
refs 377247f125/modules/swagger-codegen/src/main/resources/php/model_generic.mustache (L347)
* Update samples
35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace Swagger\Client;
|
|
|
|
use Swagger\Client\Model\EnumTest;
|
|
|
|
class EnumTestTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testPossibleValues()
|
|
{
|
|
$this->assertSame(EnumTest::ENUM_STRING_UPPER, "UPPER");
|
|
$this->assertSame(EnumTest::ENUM_STRING_LOWER, "lower");
|
|
$this->assertSame(EnumTest::ENUM_INTEGER_1, 1);
|
|
$this->assertSame(EnumTest::ENUM_INTEGER_MINUS_1, -1);
|
|
$this->assertSame(EnumTest::ENUM_NUMBER_1_DOT_1, 1.1);
|
|
$this->assertSame(EnumTest::ENUM_NUMBER_MINUS_1_DOT_2, -1.2);
|
|
}
|
|
|
|
public function testNonRequiredPropertyIsOptional()
|
|
{
|
|
$enum = new EnumTest([
|
|
'enum_string_required' => 'UPPER',
|
|
]);
|
|
$this->assertSame([], $enum->listInvalidProperties());
|
|
$this->assertTrue($enum->valid());
|
|
}
|
|
|
|
public function testRequiredProperty()
|
|
{
|
|
$enum = new EnumTest();
|
|
$this->assertSame(["'enum_string_required' can't be null"], $enum->listInvalidProperties());
|
|
$this->assertFalse($enum->valid());
|
|
}
|
|
}
|