/* * Copyright (c) 2021 PANTHEON.tech, s.r.o. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.netconf.sal.rest.doc.impl; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.node.ObjectNode; import com.google.common.collect.ImmutableList; import java.util.ArrayList; import java.util.List; import java.util.Set; import java.util.stream.Collectors; import java.util.stream.StreamSupport; import org.junit.Test; import org.opendaylight.netconf.sal.rest.doc.swagger.SwaggerObject; import org.opendaylight.yangtools.yang.common.Revision; public final class ApiDocGeneratorRFC8040Test extends AbstractApiDocTest { private static final String NAME = "toaster2"; private static final String MY_YANG = "my-yang"; private static final String MY_YANG_REVISION = "2022-10-06"; private static final String REVISION_DATE = "2009-11-20"; private static final String NAME_2 = "toaster"; private static final String REVISION_DATE_2 = "2009-11-20"; private static final String PATH_PARAMS_TEST_MODULE = "path-params-test"; private static final String MANDATORY_TEST = "mandatory-test"; private static final String CONFIG_ROOT_CONTAINER = "mandatory-test_config_root-container"; private static final String CONFIG_ROOT_CONTAINER_POST = "mandatory-test_config_root-container_post"; private static final String ROOT_CONTAINER = "mandatory-test_root-container"; private static final String CONFIG_MANDATORY_CONTAINER = "mandatory-test_root-container_config_mandatory-container"; private static final String CONFIG_MANDATORY_CONTAINER_POST = "mandatory-test_root-container_config_mandatory-container_post"; private static final String MANDATORY_CONTAINER = "mandatory-test_root-container_mandatory-container"; private static final String CONFIG_MANDATORY_LIST = "mandatory-test_root-container_config_mandatory-list"; private static final String CONFIG_MANDATORY_LIST_POST = "mandatory-test_root-container_config_mandatory-list_post"; private static final String MANDATORY_LIST = "mandatory-test_root-container_mandatory-list"; private static final String MANDATORY_TEST_MODULE = "mandatory-test_module"; private static final String CHOICE_TEST_MODULE = "choice-test"; private static final String PROPERTIES = "properties"; private final ApiDocGeneratorRFC8040 generator = new ApiDocGeneratorRFC8040(SCHEMA_SERVICE); /** * Test that paths are generated according to the model. */ @Test public void testPaths() { final var module = CONTEXT.findModule(NAME, Revision.of(REVISION_DATE)).orElseThrow(); final SwaggerObject doc = generator.getSwaggerDocSpec(module, "http", "localhost:8181", "/", "", CONTEXT, ApiDocServiceImpl.OAversion.V2_0); assertEquals(List.of("/rests/data", "/rests/data/toaster2:toaster", "/rests/data/toaster2:toaster/toasterSlot={slotId}", "/rests/data/toaster2:toaster/toasterSlot={slotId}/toaster-augmented:slotInfo", "/rests/data/toaster2:lst", "/rests/data/toaster2:lst/cont1", "/rests/data/toaster2:lst/cont1/cont11", "/rests/data/toaster2:lst/cont1/lst11", "/rests/data/toaster2:lst/lst1={key1},{key2}", "/rests/operations/toaster2:make-toast", "/rests/operations/toaster2:cancel-toast", "/rests/operations/toaster2:restock-toaster"), ImmutableList.copyOf(doc.getPaths().fieldNames())); } /** * Test that generated configuration paths allow to use operations: get, put, delete and post. */ @Test public void testConfigPaths() { final List configPaths = List.of("/rests/data/toaster2:lst", "/rests/data/toaster2:lst/cont1", "/rests/data/toaster2:lst/cont1/cont11", "/rests/data/toaster2:lst/cont1/lst11", "/rests/data/toaster2:lst/lst1={key1},{key2}"); final var module = CONTEXT.findModule(NAME, Revision.of(REVISION_DATE)).orElseThrow(); final SwaggerObject doc = generator.getSwaggerDocSpec(module, "http", "localhost:8181", "/", "", CONTEXT, ApiDocServiceImpl.OAversion.V2_0); for (final String path : configPaths) { final JsonNode node = doc.getPaths().get(path); assertFalse(node.path("get").isMissingNode()); assertFalse(node.path("put").isMissingNode()); assertFalse(node.path("delete").isMissingNode()); assertFalse(node.path("post").isMissingNode()); } } /** * Test that generated document contains the following definitions. */ @Test public void testDefinitions() { final var module = CONTEXT.findModule(NAME, Revision.of(REVISION_DATE)).orElseThrow(); final SwaggerObject doc = generator.getSwaggerDocSpec(module, "http", "localhost:8181", "/", "", CONTEXT, ApiDocServiceImpl.OAversion.V2_0); final ObjectNode definitions = doc.getDefinitions(); assertNotNull(definitions); final JsonNode configLstTop = definitions.get("toaster2_config_lst_TOP"); assertNotNull(configLstTop); DocGenTestHelper.containsReferences(configLstTop, "lst", "#/definitions/toaster2_config_lst"); final JsonNode configLst = definitions.get("toaster2_config_lst"); assertNotNull(configLst); DocGenTestHelper.containsReferences(configLst, "lst1", "#/definitions/toaster2_lst_config_lst1"); DocGenTestHelper.containsReferences(configLst, "cont1", "#/definitions/toaster2_lst_config_cont1"); final JsonNode configLst1Top = definitions.get("toaster2_lst_config_lst1_TOP"); assertNotNull(configLst1Top); DocGenTestHelper.containsReferences(configLst1Top, "lst1", "#/definitions/toaster2_lst_config_lst1"); final JsonNode configLst1 = definitions.get("toaster2_lst_config_lst1"); assertNotNull(configLst1); final JsonNode configCont1Top = definitions.get("toaster2_lst_config_cont1_TOP"); assertNotNull(configCont1Top); DocGenTestHelper.containsReferences(configCont1Top, "cont1", "#/definitions/toaster2_lst_config_cont1"); final JsonNode configCont1 = definitions.get("toaster2_lst_config_cont1"); assertNotNull(configCont1); DocGenTestHelper.containsReferences(configCont1, "cont11", "#/definitions/toaster2_lst_cont1_config_cont11"); DocGenTestHelper.containsReferences(configCont1, "lst11", "#/definitions/toaster2_lst_cont1_config_lst11"); final JsonNode configCont11Top = definitions.get("toaster2_lst_cont1_config_cont11_TOP"); assertNotNull(configCont11Top); DocGenTestHelper.containsReferences(configCont11Top, "cont11", "#/definitions/toaster2_lst_cont1_config_cont11"); final JsonNode configCont11 = definitions.get("toaster2_lst_cont1_config_cont11"); assertNotNull(configCont11); final JsonNode configLst11Top = definitions.get("toaster2_lst_cont1_config_lst11_TOP"); assertNotNull(configLst11Top); DocGenTestHelper.containsReferences(configLst11Top, "lst11", "#/definitions/toaster2_lst_cont1_config_lst11"); final JsonNode configLst11 = definitions.get("toaster2_lst_cont1_config_lst11"); assertNotNull(configLst11); } /** * Test that generated document contains RPC definition for "make-toast" with correct input. */ @Test public void testRPC() { final var module = CONTEXT.findModule(NAME_2, Revision.of(REVISION_DATE_2)).orElseThrow(); final SwaggerObject doc = generator.getSwaggerDocSpec(module, "http", "localhost:8181", "/", "", CONTEXT, ApiDocServiceImpl.OAversion.V2_0); assertNotNull(doc); final ObjectNode definitions = doc.getDefinitions(); final JsonNode inputTop = definitions.get("toaster_make-toast_input_TOP"); assertNotNull(inputTop); final String testString = "{\"input\":{\"$ref\":\"#/definitions/toaster_make-toast_input\"}}"; assertEquals(testString, inputTop.get("properties").toString()); final JsonNode input = definitions.get("toaster_make-toast_input"); final JsonNode properties = input.get("properties"); assertTrue(properties.has("toasterDoneness")); assertTrue(properties.has("toasterToastType")); } @Test public void testMandatory() { final var module = CONTEXT.findModule(MANDATORY_TEST).orElseThrow(); final var doc = generator.getSwaggerDocSpec(module, "http", "localhost:8181", "/", "", CONTEXT, ApiDocServiceImpl.OAversion.V3_0); assertNotNull(doc); final var definitions = doc.getDefinitions(); final var containersWithRequired = new ArrayList(); final var reqRootContainerElements = Set.of("mandatory-root-leaf", "mandatory-container", "mandatory-first-choice", "mandatory-list"); verifyRequiredField(definitions.get(CONFIG_ROOT_CONTAINER), reqRootContainerElements); containersWithRequired.add(CONFIG_ROOT_CONTAINER); verifyRequiredField(definitions.get(ROOT_CONTAINER), reqRootContainerElements); containersWithRequired.add(ROOT_CONTAINER); verifyRequiredField(definitions.get(CONFIG_ROOT_CONTAINER_POST), reqRootContainerElements); containersWithRequired.add(CONFIG_ROOT_CONTAINER_POST); final var reqMandatoryContainerElements = Set.of("mandatory-leaf", "leaf-list-with-min-elements"); verifyRequiredField(definitions.get(CONFIG_MANDATORY_CONTAINER), reqMandatoryContainerElements); containersWithRequired.add(CONFIG_MANDATORY_CONTAINER); verifyRequiredField(definitions.get(MANDATORY_CONTAINER), reqMandatoryContainerElements); containersWithRequired.add(MANDATORY_CONTAINER); verifyRequiredField(definitions.get(CONFIG_MANDATORY_CONTAINER_POST), reqMandatoryContainerElements); containersWithRequired.add(CONFIG_MANDATORY_CONTAINER_POST); final var reqMandatoryListElements = Set.of("mandatory-list-field"); verifyRequiredField(definitions.get(CONFIG_MANDATORY_LIST), reqMandatoryListElements); containersWithRequired.add(CONFIG_MANDATORY_LIST); verifyRequiredField(definitions.get(MANDATORY_LIST), reqMandatoryListElements); containersWithRequired.add(MANDATORY_LIST); verifyRequiredField(definitions.get(CONFIG_MANDATORY_LIST_POST), reqMandatoryListElements); containersWithRequired.add(CONFIG_MANDATORY_LIST_POST); final var testModuleMandatoryArray = Set.of("root-container", "root-mandatory-list"); verifyRequiredField(definitions.get(MANDATORY_TEST_MODULE), testModuleMandatoryArray); containersWithRequired.add(MANDATORY_TEST_MODULE); verifyThatPropertyDoesNotHaveRequired(containersWithRequired, definitions); } /** * Test that request parameters are correctly numbered. * *

* It means we should have name and name1, etc. when we have the same parameter in path multiple times. */ @Test public void testParametersNumbering() { final var module = CONTEXT.findModule(PATH_PARAMS_TEST_MODULE).orElseThrow(); final var doc = generator.getSwaggerDocSpec(module, "http", "localhost:8181", "/", "", CONTEXT, ApiDocServiceImpl.OAversion.V3_0); var pathToList1 = "/rests/data/path-params-test:cont/list1={name}"; assertTrue(doc.getPaths().has(pathToList1)); assertEquals(List.of("name"), getPathParameters(doc.getPaths(), pathToList1)); var pathToList2 = "/rests/data/path-params-test:cont/list1={name}/list2={name1}"; assertTrue(doc.getPaths().has(pathToList2)); assertEquals(List.of("name", "name1"), getPathParameters(doc.getPaths(), pathToList2)); var pathToList3 = "/rests/data/path-params-test:cont/list3={name}"; assertTrue(doc.getPaths().has(pathToList3)); assertEquals(List.of("name"), getPathParameters(doc.getPaths(), pathToList3)); var pathToList4 = "/rests/data/path-params-test:cont/list1={name}/list4={name1}"; assertTrue(doc.getPaths().has(pathToList4)); assertEquals(List.of("name", "name1"), getPathParameters(doc.getPaths(), pathToList4)); var pathToList5 = "/rests/data/path-params-test:cont/list1={name}/cont2"; assertTrue(doc.getPaths().has(pathToList4)); assertEquals(List.of("name"), getPathParameters(doc.getPaths(), pathToList5)); } private static void verifyThatPropertyDoesNotHaveRequired(final List expected, final ObjectNode definitions) { final var fields = definitions.fields(); while (fields.hasNext()) { final var next = fields.next(); final var nodeName = next.getKey(); final var jsonNode = next.getValue(); if (expected.contains(nodeName)) { continue; } assertNull("Json node " + nodeName + " should not have 'required' field in body", jsonNode.get("required")); } } private static void verifyRequiredField(final JsonNode rootContainer, final Set expected) { assertNotNull(rootContainer); final var required = rootContainer.get("required"); assertNotNull(required); assertTrue(required.isArray()); final var actualContainerArray = StreamSupport.stream(required.spliterator(), false) .map(JsonNode::textValue) .collect(Collectors.toSet()); assertEquals(expected, actualContainerArray); } /** * Test that request for actions is correct and has parameters. */ @Test public void testActionPathsParams() { final var module = CONTEXT.findModule("action-types").orElseThrow(); final var doc = generator.getSwaggerDocSpec(module, "http", "localhost:8181", "/", "", CONTEXT, ApiDocServiceImpl.OAversion.V3_0); final var pathWithParameters = "/rests/operations/action-types:list={name}/list-action"; assertTrue(doc.getPaths().has(pathWithParameters)); assertEquals(List.of("name"), getPathParameters(doc.getPaths(), pathWithParameters)); final var pathWithoutParameters = "/rests/operations/action-types:multi-container/inner-container/action"; assertTrue(doc.getPaths().has(pathWithoutParameters)); assertEquals(List.of(), getPathParameters(doc.getPaths(), pathWithoutParameters)); } @Test public void testChoice() { final var module = CONTEXT.findModule(CHOICE_TEST_MODULE).orElseThrow(); final var doc = generator.getSwaggerDocSpec(module, "http", "localhost:8181", "/", "", CONTEXT, ApiDocServiceImpl.OAversion.V2_0); assertNotNull(doc); final var definitions = doc.getDefinitions(); JsonNode firstContainer = definitions.get("choice-test_first-container"); assertEquals("default-value", firstContainer.get(PROPERTIES).get("leaf-default").get("default").asText()); assertFalse(firstContainer.get(PROPERTIES).has("leaf-non-default")); JsonNode secondContainer = definitions.get("choice-test_second-container"); assertTrue(secondContainer.get(PROPERTIES).has("leaf-first-case")); assertFalse(secondContainer.get(PROPERTIES).has("leaf-second-case")); } @Test public void testSimpleOpenApiObjects() { final var module = CONTEXT.findModule(MY_YANG, Revision.of(MY_YANG_REVISION)).orElseThrow(); final var doc = generator.getSwaggerDocSpec(module, "http", "localhost:8181", "/", "", CONTEXT,ApiDocServiceImpl.OAversion.V3_0); assertEquals(List.of("/rests/data", "/rests/data/my-yang:data"), ImmutableList.copyOf(doc.getPaths().fieldNames())); final var JsonNodeMyYangData = doc.getPaths().get("/rests/data/my-yang:data"); verifyRequestRef(JsonNodeMyYangData.path("post"), "#/components/schemas/my-yang_config_data_post", "#/components/schemas/my-yang_config_data_post_xml"); verifyRequestRef(JsonNodeMyYangData.path("put"), "#/components/schemas/my-yang_config_data_TOP", "#/components/schemas/my-yang_config_data"); verifyRequestRef(JsonNodeMyYangData.path("get"), "#/components/schemas/my-yang_data_TOP", "#/components/schemas/my-yang_data"); // Test `components/schemas` objects final var definitions = doc.getDefinitions(); assertEquals(7, definitions.size()); assertTrue(definitions.has("my-yang_config_data")); assertTrue(definitions.has("my-yang_config_data_post")); assertTrue(definitions.has("my-yang_config_data_post_xml")); assertTrue(definitions.has("my-yang_config_data_TOP")); assertTrue(definitions.has("my-yang_data")); assertTrue(definitions.has("my-yang_data_TOP")); assertTrue(definitions.has("my-yang_module")); } @Test public void testToaster2OpenApiObjects() { final var module = CONTEXT.findModule(NAME, Revision.of(REVISION_DATE)).orElseThrow(); final var doc = generator.getSwaggerDocSpec(module, "http", "localhost:8181", "/", "", CONTEXT, ApiDocServiceImpl.OAversion.V3_0); final var jsonNodeToaster = doc.getPaths().get("/rests/data/toaster2:toaster"); verifyRequestRef(jsonNodeToaster.path("post"), "#/components/schemas/toaster2_config_toaster_post", "#/components/schemas/toaster2_config_toaster_post_xml"); verifyRequestRef(jsonNodeToaster.path("put"), "#/components/schemas/toaster2_config_toaster_TOP", "#/components/schemas/toaster2_config_toaster"); verifyRequestRef(jsonNodeToaster.path("get"), "#/components/schemas/toaster2_toaster_TOP", "#/components/schemas/toaster2_toaster"); final var jsonNodeToasterSlot = doc.getPaths().get("/rests/data/toaster2:toaster/toasterSlot={slotId}"); verifyRequestRef(jsonNodeToasterSlot.path("post"), "#/components/schemas/toaster2_toaster_config_toasterSlot_post", "#/components/schemas/toaster2_toaster_config_toasterSlot_post_xml"); verifyRequestRef(jsonNodeToasterSlot.path("put"), "#/components/schemas/toaster2_toaster_config_toasterSlot_TOP", "#/components/schemas/toaster2_toaster_config_toasterSlot"); verifyRequestRef(jsonNodeToasterSlot.path("get"), "#/components/schemas/toaster2_toaster_toasterSlot_TOP", "#/components/schemas/toaster2_toaster_toasterSlot"); final var jsonNodeSlotInfo = doc.getPaths().get( "/rests/data/toaster2:toaster/toasterSlot={slotId}/toaster-augmented:slotInfo"); verifyRequestRef(jsonNodeSlotInfo.path("post"), "#/components/schemas/toaster2_toaster_toasterSlot_config_slotInfo_post", "#/components/schemas/toaster2_toaster_toasterSlot_config_slotInfo_post_xml"); verifyRequestRef(jsonNodeSlotInfo.path("put"), "#/components/schemas/toaster2_toaster_toasterSlot_config_slotInfo_TOP", "#/components/schemas/toaster2_toaster_toasterSlot_config_slotInfo"); verifyRequestRef(jsonNodeSlotInfo.path("get"), "#/components/schemas/toaster2_toaster_toasterSlot_slotInfo_TOP", "#/components/schemas/toaster2_toaster_toasterSlot_slotInfo"); final var jsonNodeLst = doc.getPaths().get("/rests/data/toaster2:lst"); verifyRequestRef(jsonNodeLst.path("post"), "#/components/schemas/toaster2_config_lst_post", "#/components/schemas/toaster2_config_lst_post_xml"); verifyRequestRef(jsonNodeLst.path("put"), "#/components/schemas/toaster2_config_lst_TOP", "#/components/schemas/toaster2_config_lst"); verifyRequestRef(jsonNodeLst.path("get"), "#/components/schemas/toaster2_lst_TOP", "#/components/schemas/toaster2_lst"); final var jsonNodeLst1 = doc.getPaths().get("/rests/data/toaster2:lst/lst1={key1},{key2}"); verifyRequestRef(jsonNodeLst1.path("post"), "#/components/schemas/toaster2_lst_config_lst1_post", "#/components/schemas/toaster2_lst_config_lst1_post_xml"); verifyRequestRef(jsonNodeLst1.path("put"), "#/components/schemas/toaster2_lst_config_lst1_TOP", "#/components/schemas/toaster2_lst_config_lst1"); verifyRequestRef(jsonNodeLst1.path("get"), "#/components/schemas/toaster2_lst_lst1_TOP", "#/components/schemas/toaster2_lst_lst1"); final var jsonNodeMakeToast = doc.getPaths().get("/rests/operations/toaster2:make-toast"); assertTrue(jsonNodeMakeToast.path("get").isMissingNode()); verifyRequestRef(jsonNodeMakeToast.path("post"), "#/components/schemas/toaster2_make-toast_input_TOP", "#/components/schemas/toaster2_make-toast_input"); final var jsonNodeCancelToast = doc.getPaths().get("/rests/operations/toaster2:cancel-toast"); assertTrue(jsonNodeCancelToast.path("get").isMissingNode()); // Test RPC with empty input final var postContent = jsonNodeCancelToast.path("post").get("requestBody").get("content"); final var jsonSchema = postContent.get("application/json").get("schema"); assertNull(jsonSchema.get("$ref")); assertEquals(2, jsonSchema.size()); final var xmlSchema = postContent.get("application/xml").get("schema"); assertNull(xmlSchema.get("$ref")); assertEquals(2, xmlSchema.size()); // Test `components/schemas` objects final var definitions = doc.getDefinitions(); assertEquals(60, definitions.size()); } /** * Test JSON and XML references for request operation. */ private static void verifyRequestRef(final JsonNode path, final String expectedJsonRef, final String expectedXmlRef) { final JsonNode postContent; if (path.get("requestBody") != null) { postContent = path.get("requestBody").get("content"); } else { postContent = path.get("responses").get("200").get("content"); } assertNotNull(postContent); final var postJsonRef = postContent.get("application/json").get("schema").get("$ref"); assertNotNull(postJsonRef); assertEquals(expectedJsonRef, postJsonRef.textValue()); final var postXmlRef = postContent.get("application/xml").get("schema").get("$ref"); assertNotNull(postXmlRef); assertEquals(expectedXmlRef, postXmlRef.textValue()); } }