mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 15:51:48 +03:00
Check min/max On Range Constraints Before Use
Previously it was possible to set only one of the min or max values and get a schema like: "property": { "type": "integer", "minimum": 1, "maximum": 0 } Also possible that `Range` would be used with {min,max}PropertyPath and you'd get a schema with both minimum and max set to zero. With the checks in place, that's no longer the case.
This commit is contained in:
parent
7fd8c0ecfe
commit
5f1645db40
@ -85,8 +85,12 @@ class SymfonyConstraintAnnotationReader
|
||||
} elseif ($annotation instanceof Assert\Choice) {
|
||||
$this->applyEnumFromChoiceConstraint($property, $annotation, $reflection);
|
||||
} elseif ($annotation instanceof Assert\Range) {
|
||||
$property->minimum = (int) $annotation->min;
|
||||
$property->maximum = (int) $annotation->max;
|
||||
if (isset($annotation->min)) {
|
||||
$property->minimum = (int) $annotation->min;
|
||||
}
|
||||
if (isset($annotation->max)) {
|
||||
$property->maximum = (int) $annotation->max;
|
||||
}
|
||||
} elseif ($annotation instanceof Assert\LessThan) {
|
||||
$property->exclusiveMaximum = true;
|
||||
$property->maximum = (int) $annotation->value;
|
||||
|
@ -316,4 +316,76 @@ class SymfonyConstraintAnnotationReaderTest extends TestCase
|
||||
}];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param object $entity
|
||||
* @group https://github.com/nelmio/NelmioApiDocBundle/issues/1822
|
||||
* @dataProvider provideRangeConstraintDoesNotSetMaximumIfMaxIsNotSet
|
||||
*/
|
||||
public function testRangeConstraintDoesNotSetMaximumIfMaxIsNotSet($entity)
|
||||
{
|
||||
$schema = new OA\Schema([]);
|
||||
$schema->merge([new OA\Property(['property' => 'property1'])]);
|
||||
|
||||
$symfonyConstraintAnnotationReader = new SymfonyConstraintAnnotationReader(new AnnotationReader());
|
||||
$symfonyConstraintAnnotationReader->setSchema($schema);
|
||||
|
||||
$symfonyConstraintAnnotationReader->updateProperty(new \ReflectionProperty($entity, 'property1'), $schema->properties[0]);
|
||||
|
||||
$this->assertSame(OA\UNDEFINED, $schema->properties[0]->maximum);
|
||||
$this->assertSame(10, $schema->properties[0]->minimum);
|
||||
}
|
||||
|
||||
public function provideRangeConstraintDoesNotSetMaximumIfMaxIsNotSet(): iterable
|
||||
{
|
||||
yield 'Annotations' => [new class() {
|
||||
/**
|
||||
* @Assert\Range(min = 10)
|
||||
*/
|
||||
private $property1;
|
||||
}];
|
||||
|
||||
if (\PHP_VERSION_ID >= 80000) {
|
||||
yield 'Attributes' => [new class() {
|
||||
#[Assert\Range(min: 10)]
|
||||
private $property1;
|
||||
}];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param object $entity
|
||||
* @group https://github.com/nelmio/NelmioApiDocBundle/issues/1822
|
||||
* @dataProvider provideRangeConstraintDoesNotSetMinimumIfMinIsNotSet
|
||||
*/
|
||||
public function testRangeConstraintDoesNotSetMinimumIfMinIsNotSet($entity)
|
||||
{
|
||||
$schema = new OA\Schema([]);
|
||||
$schema->merge([new OA\Property(['property' => 'property1'])]);
|
||||
|
||||
$symfonyConstraintAnnotationReader = new SymfonyConstraintAnnotationReader(new AnnotationReader());
|
||||
$symfonyConstraintAnnotationReader->setSchema($schema);
|
||||
|
||||
$symfonyConstraintAnnotationReader->updateProperty(new \ReflectionProperty($entity, 'property1'), $schema->properties[0]);
|
||||
|
||||
$this->assertSame(OA\UNDEFINED, $schema->properties[0]->minimum);
|
||||
$this->assertSame(10, $schema->properties[0]->maximum);
|
||||
}
|
||||
|
||||
public function provideRangeConstraintDoesNotSetMinimumIfMinIsNotSet(): iterable
|
||||
{
|
||||
yield 'Annotations' => [new class() {
|
||||
/**
|
||||
* @Assert\Range(max = 10)
|
||||
*/
|
||||
private $property1;
|
||||
}];
|
||||
|
||||
if (\PHP_VERSION_ID >= 80000) {
|
||||
yield 'Attributes' => [new class() {
|
||||
#[Assert\Range(max: 10)]
|
||||
private $property1;
|
||||
}];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user