|
1 | | -package io.swagger.v3.parser.test; |
2 | | - |
3 | | - |
4 | | -import io.swagger.v3.oas.models.OpenAPI; |
5 | | -import io.swagger.v3.oas.models.media.Schema; |
6 | | -import io.swagger.v3.oas.models.media.StringSchema; |
7 | | -import io.swagger.v3.parser.OpenAPIV3Parser; |
8 | | -import io.swagger.v3.parser.core.models.ParseOptions; |
9 | | -import io.swagger.v3.parser.urlresolver.PermittedUrlsChecker; |
10 | | -import io.swagger.v3.parser.util.RemoteUrl; |
11 | | -import mockit.Expectations; |
12 | | -import mockit.Mocked; |
13 | | -import org.testng.annotations.Test; |
14 | | - |
15 | | -import java.io.File; |
16 | | -import java.nio.charset.Charset; |
17 | | -import java.nio.charset.StandardCharsets; |
18 | | -import java.nio.file.Files; |
19 | | -import java.util.ArrayList; |
20 | | - |
21 | | -import static org.testng.Assert.assertEquals; |
22 | | -import static org.testng.Assert.assertNotNull; |
23 | | -import static org.testng.Assert.assertTrue; |
24 | | - |
25 | | -public class LocalReferenceTest { |
26 | | - |
27 | | - @Mocked |
28 | | - public RemoteUrl remoteUrl; |
29 | | - |
30 | | - private static String issue_454_yaml, issue_454_components_yaml; |
31 | | - |
32 | | - static { |
33 | | - try { |
34 | | - issue_454_yaml = readFile("src/test/resources/nested-network-references/issue-454.yaml"); |
35 | | - issue_454_components_yaml = readFile("src/test/resources/nested-network-references/issue-454-components.yaml"); |
36 | | - } catch (Exception e) { |
37 | | - e.printStackTrace(); |
38 | | - } |
39 | | - } |
40 | | - |
41 | | - @Test |
42 | | - public void testAuth() throws Exception { |
43 | | - new Expectations() {{ |
44 | | - RemoteUrl.urlToString("https://remote-server.com/issue-454.yaml", new ArrayList<>()); |
45 | | - result = issue_454_yaml; |
46 | | - |
47 | | - RemoteUrl.urlToString("https://remote-components.com/issue-454-components", new ArrayList<>(), (PermittedUrlsChecker) any); |
48 | | - result = issue_454_components_yaml; |
49 | | - }}; |
50 | | - ParseOptions options = new ParseOptions(); |
51 | | - options.setResolve(true); |
52 | | - OpenAPI swagger = new OpenAPIV3Parser().read("https://remote-server.com/issue-454.yaml", |
53 | | - null, options); |
54 | | - |
55 | | - assertNotNull(swagger.getComponents().getSchemas().get("ErrorModel")); |
56 | | - assertNotNull(swagger.getComponents().getSchemas().get("ModelWithNestedProperties")); |
57 | | - |
58 | | - Schema model = swagger.getComponents().getSchemas().get("ModelWithNestedProperties"); |
59 | | - Schema property = (Schema) model.getProperties().get("remoteProperty"); |
60 | | - assertNotNull(property); |
61 | | - assertTrue(property.get$ref() != null); |
62 | | - assertEquals(property.get$ref(), "#/components/schemas/RemoteComponent"); |
63 | | - assertNotNull(swagger.getComponents().getSchemas().get("NestedProperty")); |
64 | | - |
65 | | - Schema nestedModel = swagger.getComponents().getSchemas().get("NestedProperty"); |
66 | | - assertNotNull(nestedModel); |
67 | | - assertNotNull(nestedModel.getProperties().get("name")); |
68 | | - assertTrue(nestedModel.getProperties().get("name") instanceof StringSchema); |
69 | | - } |
70 | | - |
71 | | - private static String readFile(String name) throws Exception { |
72 | | - return new String(Files.readAllBytes(new File(name).toPath()), StandardCharsets.UTF_8); |
73 | | - } |
74 | | -} |
| 1 | +//package io.swagger.v3.parser.test; |
| 2 | +// |
| 3 | +// |
| 4 | +//import io.swagger.v3.oas.models.OpenAPI; |
| 5 | +//import io.swagger.v3.oas.models.media.Schema; |
| 6 | +//import io.swagger.v3.oas.models.media.StringSchema; |
| 7 | +//import io.swagger.v3.parser.OpenAPIV3Parser; |
| 8 | +//import io.swagger.v3.parser.core.models.ParseOptions; |
| 9 | +//import io.swagger.v3.parser.urlresolver.PermittedUrlsChecker; |
| 10 | +//import io.swagger.v3.parser.util.RemoteUrl; |
| 11 | +//import mockit.Expectations; |
| 12 | +//import mockit.Mocked; |
| 13 | +//import org.testng.annotations.Test; |
| 14 | +// |
| 15 | +//import java.io.File; |
| 16 | +//import java.nio.charset.StandardCharsets; |
| 17 | +//import java.nio.file.Files; |
| 18 | +//import java.util.ArrayList; |
| 19 | +// |
| 20 | +//import static org.testng.Assert.assertEquals; |
| 21 | +//import static org.testng.Assert.assertNotNull; |
| 22 | +//import static org.testng.Assert.assertTrue; |
| 23 | +// |
| 24 | +//public class LocalReferenceTest { |
| 25 | +// |
| 26 | +// @Mocked |
| 27 | +// public RemoteUrl remoteUrl; |
| 28 | +// |
| 29 | +// private static String issue_454_yaml, issue_454_components_yaml; |
| 30 | +// |
| 31 | +// static { |
| 32 | +// try { |
| 33 | +// issue_454_yaml = readFile("src/test/resources/nested-network-references/issue-454.yaml"); |
| 34 | +// issue_454_components_yaml = readFile("src/test/resources/nested-network-references/issue-454-components.yaml"); |
| 35 | +// } catch (Exception e) { |
| 36 | +// e.printStackTrace(); |
| 37 | +// } |
| 38 | +// } |
| 39 | +// |
| 40 | +// @Test |
| 41 | +// public void testAuth() throws Exception { |
| 42 | +// new Expectations() {{ |
| 43 | +// RemoteUrl.urlToString("https://remote-server.com/issue-454.yaml", new ArrayList<>()); |
| 44 | +// result = issue_454_yaml; |
| 45 | +// |
| 46 | +// RemoteUrl.urlToString("https://remote-components.com/issue-454-components", new ArrayList<>(), (PermittedUrlsChecker) any); |
| 47 | +// result = issue_454_components_yaml; |
| 48 | +// }}; |
| 49 | +// ParseOptions options = new ParseOptions(); |
| 50 | +// options.setResolve(true); |
| 51 | +// OpenAPI swagger = new OpenAPIV3Parser().read("https://remote-server.com/issue-454.yaml", |
| 52 | +// null, options); |
| 53 | +// |
| 54 | +// assertNotNull(swagger.getComponents().getSchemas().get("ErrorModel")); |
| 55 | +// assertNotNull(swagger.getComponents().getSchemas().get("ModelWithNestedProperties")); |
| 56 | +// |
| 57 | +// Schema model = swagger.getComponents().getSchemas().get("ModelWithNestedProperties"); |
| 58 | +// Schema property = (Schema) model.getProperties().get("remoteProperty"); |
| 59 | +// assertNotNull(property); |
| 60 | +// assertTrue(property.get$ref() != null); |
| 61 | +// assertEquals(property.get$ref(), "#/components/schemas/RemoteComponent"); |
| 62 | +// assertNotNull(swagger.getComponents().getSchemas().get("NestedProperty")); |
| 63 | +// |
| 64 | +// Schema nestedModel = swagger.getComponents().getSchemas().get("NestedProperty"); |
| 65 | +// assertNotNull(nestedModel); |
| 66 | +// assertNotNull(nestedModel.getProperties().get("name")); |
| 67 | +// assertTrue(nestedModel.getProperties().get("name") instanceof StringSchema); |
| 68 | +// } |
| 69 | +// |
| 70 | +// private static String readFile(String name) throws Exception { |
| 71 | +// return new String(Files.readAllBytes(new File(name).toPath()), StandardCharsets.UTF_8); |
| 72 | +// } |
| 73 | +//} |
0 commit comments