|
1 | 1 | <?php
|
2 | 2 |
|
3 | 3 | use cebe\openapi\Reader;
|
| 4 | +use cebe\openapi\ReferenceContext; |
4 | 5 | use cebe\openapi\spec\Discriminator;
|
| 6 | +use cebe\openapi\spec\Reference; |
5 | 7 | use cebe\openapi\spec\Schema;
|
6 | 8 | use cebe\openapi\spec\Type;
|
7 | 9 |
|
@@ -181,4 +183,52 @@ public function testPathsCanNotBeCreatedFromBullshit($config, $expectedException
|
181 | 183 |
|
182 | 184 | new Schema($config);
|
183 | 185 | }
|
| 186 | + |
| 187 | + public function testAllOf() |
| 188 | + { |
| 189 | + $json = <<<'JSON' |
| 190 | +{ |
| 191 | + "components": { |
| 192 | + "schemas": { |
| 193 | + "identifier": { |
| 194 | + "type": "object", |
| 195 | + "properties": { |
| 196 | + "id": {"type": "string"} |
| 197 | + } |
| 198 | + }, |
| 199 | + "person": { |
| 200 | + "allOf": [ |
| 201 | + {"$ref": "#/components/schemas/identifier"}, |
| 202 | + { |
| 203 | + "type": "object", |
| 204 | + "properties": { |
| 205 | + "name": { |
| 206 | + "type": "string" |
| 207 | + } |
| 208 | + } |
| 209 | + } |
| 210 | + ] |
| 211 | + } |
| 212 | + } |
| 213 | + } |
| 214 | +} |
| 215 | +JSON; |
| 216 | + $openApi = Reader::readFromJson($json); |
| 217 | + $this->assertInstanceOf(Schema::class, $identifier = $openApi->components->schemas['identifier']); |
| 218 | + $this->assertInstanceOf(Schema::class, $person = $openApi->components->schemas['person']); |
| 219 | + |
| 220 | + $this->assertEquals('object', $identifier->type); |
| 221 | + $this->assertTrue(is_array($person->allOf)); |
| 222 | + $this->assertCount(2, $person->allOf); |
| 223 | + |
| 224 | + $this->assertInstanceOf(Reference::class, $person->allOf[0]); |
| 225 | + $this->assertInstanceOf(Schema::class, $refResolved = $person->allOf[0]->resolve(new ReferenceContext($openApi, 'tmp://openapi.yaml'))); |
| 226 | + $this->assertInstanceOf(Schema::class, $person->allOf[1]); |
| 227 | + |
| 228 | + $this->assertEquals('object', $refResolved->type); |
| 229 | + $this->assertEquals('object', $person->allOf[1]->type); |
| 230 | + |
| 231 | + $this->assertArrayHasKey('id', $refResolved->properties); |
| 232 | + $this->assertArrayHasKey('name', $person->allOf[1]->properties); |
| 233 | + } |
184 | 234 | }
|
0 commit comments