Skip to content

Commit 61f5169

Browse files
committed
fix xml attribute in resolveFully option in ComposedSchema
1 parent e9918fa commit 61f5169

File tree

3 files changed

+56
-2
lines changed

3 files changed

+56
-2
lines changed

modules/swagger-parser-v3/src/main/java/io/swagger/v3/parser/util/ResolverFully.java

+4
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,10 @@ public Schema resolveSchema(Schema schema) {
377377
combinedModel.setExample(examples);
378378
}
379379

380+
if(schema.getXml()!= null){
381+
combinedModel.setXml(schema.getXml());
382+
}
383+
380384
result = combinedModel;
381385

382386
} else {

modules/swagger-parser-v3/src/test/java/io/swagger/v3/parser/test/OpenAPIV3ParserTest.java

+9-2
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,15 @@ public class OpenAPIV3ParserTest {
8383
protected int serverPort = getDynamicPort();
8484
protected WireMockServer wireMockServer;
8585

86+
@Test
87+
public void testAnonymousModelAllOf() {
88+
ParseOptions options = new ParseOptions();
89+
options.setResolveFully(true);
90+
SwaggerParseResult result = new OpenAPIV3Parser().readLocation("issue203/issue203AllOf.yaml", null, options);
91+
OpenAPI openAPI = result.getOpenAPI();
92+
assertEquals(openAPI.getComponents().getSchemas().get("Supplier").getXml().getName(),"supplierObject");
93+
}
94+
8695
@Test
8796
public void testIssue1518() {
8897
ParseOptions options = new ParseOptions();
@@ -103,8 +112,6 @@ public void testIssue1518StackOverFlow() {
103112
}catch (StackOverflowError stackOverflowError){
104113
assertTrue(false);
105114
}
106-
107-
108115
}
109116

110117
@Test
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
openapi: 3.0.0
2+
info:
3+
title: test
4+
version: 1.0.0
5+
paths:
6+
/inventory:
7+
get:
8+
responses:
9+
'200':
10+
description: OK
11+
content:
12+
application/xml:
13+
schema:
14+
$ref: '#/components/schemas/InventoryItem'
15+
components:
16+
schemas:
17+
InventoryItem:
18+
type: object
19+
properties:
20+
suppliersArray:
21+
type: array
22+
items:
23+
$ref: '#/components/schemas/Supplier'
24+
xml:
25+
name: inventoryItem
26+
Manufacturer:
27+
type: object
28+
properties:
29+
name:
30+
type: string
31+
example: ACME Corporation
32+
xml:
33+
name: manufacturer
34+
Supplier:
35+
allOf:
36+
- $ref: '#/components/schemas/Manufacturer'
37+
- type: object
38+
properties:
39+
supplierRef:
40+
type: string
41+
example: REF123
42+
xml:
43+
name: supplierObject

0 commit comments

Comments
 (0)