| 12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * @license Apache 2.0
- */
- namespace SwaggerTests;
- use Swagger\Annotations\Schema;
- class HandleReferencesTest extends SwaggerTestCase
- {
- public function testRef()
- {
- $swagger = \Swagger\scan(__DIR__ . '/Fixtures/DynamicReference.php');
- /** @var Schema $schema */
- $schema = $swagger->paths[0]->post->responses[0]->schema;
- $props = $schema->properties;
- $this->assertEquals('success', $props[0]->property, 'The @SWG\Schema should contain properties from the extended @SWG\Response');
- $this->assertEquals('data', $props[1]->property, 'The @SWG\Schema should contain properties from the extended @SWG\Response');
- $this->assertEquals('#/definitions/Product', $props[1]->ref, 'The @SWG\Schema should contain the original property from the child. This property will override the parent property from @SWG\Response');
- $this->assertEquals('errors', $props[2]->property, 'The @SWG\Schema should contain properties from the extended @SWG\Response');
- $this->assertEquals('token', $props[3]->property, 'The @SWG\Schema should contain properties from the extended @SWG\Response');
- $this->assertEquals('status', $props[4]->property, 'The @SWG\Schema should contain properties from the extended @SWG\Response');
- $this->assertEquals('test', $props[5]->property, 'The @SWG\Schema should contain properties from the extended @SWG\Response');
- $this->assertEquals('string', $props[5]->type, 'The @SWG\Schema should contain properties from the extended @SWG\Response');
- $this->assertEquals('The status of a product', $props[5]->description, 'The @SWG\Schema should contain properties from the extended @SWG\Response');
- }
- }
|