diff --git a/ModelDescriber/JMSModelDescriber.php b/ModelDescriber/JMSModelDescriber.php index ce099a6..42d28a7 100644 --- a/ModelDescriber/JMSModelDescriber.php +++ b/ModelDescriber/JMSModelDescriber.php @@ -100,8 +100,15 @@ class JMSModelDescriber implements ModelDescriberInterface, ModelRegistryAwareIn continue; } + if(!array_key_exists($name, $model->getGroups()) || !is_array($model->getGroups()[$name])) { + $groups = $model->getGroups(); + } else { + $groups = $model->getGroups()[$name]; + } + + $property->setRef( - $this->modelRegistry->register(new Model(new Type(Type::BUILTIN_TYPE_OBJECT, false, $type), $model->getGroups())) + $this->modelRegistry->register(new Model(new Type(Type::BUILTIN_TYPE_OBJECT, false, $type), $groups)) ); } diff --git a/Tests/Functional/Controller/JMSController.php b/Tests/Functional/Controller/JMSController.php index 3aa6dd6..94bf5d8 100644 --- a/Tests/Functional/Controller/JMSController.php +++ b/Tests/Functional/Controller/JMSController.php @@ -13,6 +13,7 @@ namespace Nelmio\ApiDocBundle\Tests\Functional\Controller; use Nelmio\ApiDocBundle\Annotation\Model; use Nelmio\ApiDocBundle\Tests\Functional\Entity\JMSUser; +use Nelmio\ApiDocBundle\Tests\Functional\Entity\JMSComplex; use Nelmio\ApiDocBundle\Tests\Functional\Entity\VirtualProperty; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; use Swagger\Annotations as SWG; @@ -42,4 +43,16 @@ class JMSController public function yamlAction() { } + + /** + * @Route("/api/jms_complex", methods={"GET"}) + * @SWG\Response( + * response=200, + * description="Success", + * @Model(type=JMSComplex::class, groups={"list", "details", "user" : {"list"}}) + * ) + */ + public function complexAction() + { + } } diff --git a/Tests/Functional/Entity/JMSComplex.php b/Tests/Functional/Entity/JMSComplex.php new file mode 100644 index 0000000..3cb6006 --- /dev/null +++ b/Tests/Functional/Entity/JMSComplex.php @@ -0,0 +1,43 @@ +getModel('JMSUser')->toArray()); } + public function testModelComplexDocumentation() + { + $this->assertEquals([ + 'type' => 'object', + 'properties' => [ + 'id' => ['type' => 'integer'], + 'user' => ['$ref' => '#/definitions/JMSUser2'], + 'name' => ['type' => 'string'] + ], + ], $this->getModel('JMSComplex')->toArray()); + + $this->assertEquals([ + 'type' => 'object', + 'properties' => [ + 'id' => [ + 'type' => 'integer', + 'title' => 'userid', + 'description' => 'User id', + 'readOnly' => true, + 'example' => '1', + ], + ], + ], $this->getModel('JMSUser2')->toArray()); + } + public function testYamlConfig() { $this->assertEquals([ diff --git a/composer.json b/composer.json index a3466bf..de9cc69 100644 --- a/composer.json +++ b/composer.json @@ -34,6 +34,7 @@ "symfony/browser-kit": "^2.8|^3.0|^4.0", "symfony/cache": "^3.1|^4.0", "symfony/phpunit-bridge": "^3.3", + "symfony/stopwatch": "^2.8|^3.0|^4.0", "sensio/framework-extra-bundle": "^3.0", "symfony/stopwatch": "^2.8|^3.0|^4.0", "doctrine/annotations": "^1.2",