Skip to content

Commit b9eddbd

Browse files
committed
added test for reading schema with "allOf"
issue #31
1 parent e316519 commit b9eddbd

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

tests/spec/SchemaTest.php

+50
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
<?php
22

33
use cebe\openapi\Reader;
4+
use cebe\openapi\ReferenceContext;
45
use cebe\openapi\spec\Discriminator;
6+
use cebe\openapi\spec\Reference;
57
use cebe\openapi\spec\Schema;
68
use cebe\openapi\spec\Type;
79

@@ -181,4 +183,52 @@ public function testPathsCanNotBeCreatedFromBullshit($config, $expectedException
181183

182184
new Schema($config);
183185
}
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+
}
184234
}

0 commit comments

Comments
 (0)