diff options
author | Przemyslaw Wasala <przemyslaw.wasala@nokia.com> | 2018-11-16 18:32:28 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-11-16 18:32:28 +0000 |
commit | 04d00af2b844424118fe87e05c9fe80fe04ef9d2 (patch) | |
tree | e9377562ab7ad535db3b1fc745efb407f3163d7c /prh-app-server/src/test | |
parent | 797f48d96f972f4bd7cf4316506e2fa7b2955802 (diff) | |
parent | 828fc610ba0b70e44af91ef87a9093279b2c680b (diff) |
Merge "PrhAppConfigTest refactor"
Diffstat (limited to 'prh-app-server/src/test')
-rw-r--r-- | prh-app-server/src/test/java/org/onap/dcaegen2/services/prh/configuration/PrhAppConfigTest.java | 142 | ||||
-rw-r--r-- | prh-app-server/src/test/resources/not_json_object.json | 1 |
2 files changed, 41 insertions, 102 deletions
diff --git a/prh-app-server/src/test/java/org/onap/dcaegen2/services/prh/configuration/PrhAppConfigTest.java b/prh-app-server/src/test/java/org/onap/dcaegen2/services/prh/configuration/PrhAppConfigTest.java index 61e17d37..42acc592 100644 --- a/prh-app-server/src/test/java/org/onap/dcaegen2/services/prh/configuration/PrhAppConfigTest.java +++ b/prh-app-server/src/test/java/org/onap/dcaegen2/services/prh/configuration/PrhAppConfigTest.java @@ -22,22 +22,14 @@ package org.onap.dcaegen2.services.prh.configuration; import static java.lang.ClassLoader.getSystemResource; import static java.nio.file.Files.readAllBytes; -import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNull; -import static org.mockito.ArgumentMatchers.any; -import static org.mockito.Mockito.doReturn; -import static org.mockito.Mockito.mock; import static org.mockito.Mockito.spy; -import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; -import com.google.gson.JsonElement; -import com.google.gson.JsonParser; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; -import java.nio.charset.StandardCharsets; import java.nio.file.Paths; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; @@ -53,118 +45,64 @@ import org.springframework.core.io.Resource; @ExtendWith({MockitoExtension.class}) class PrhAppConfigTest { - private final String jsonString = - new String(readAllBytes(Paths.get(getSystemResource("correct_config.json").toURI()))); - private final String incorrectJsonString = - new String(readAllBytes(Paths.get(getSystemResource("incorrect_config.json").toURI()))); - private PrhAppConfig prhAppConfig; + private static final String CORRECT_CONFIG_FILE = "correct_config.json"; + private static final String INCORRECT_CONFIG_FILE = "incorrect_config.json"; + private static final String NOT_JSON_OBJECT_FILE = "not_json_object.json"; private AppConfig appConfig; - - PrhAppConfigTest() throws Exception { - } - @BeforeEach void setUp() { - prhAppConfig = spy(PrhAppConfig.class); - appConfig = spy(new AppConfig()); + appConfig = new AppConfig(); } @Test - void whenTheConfigurationFits_GetAaiAndDmaapObjectRepresentationConfiguration() { - // - // Given - // - InputStream inputStream = new ByteArrayInputStream((jsonString.getBytes( - StandardCharsets.UTF_8))); - // - // When - // - prhAppConfig.setResourceFile(new InputStreamResource(inputStream)); - prhAppConfig.initFileStreamReader(); - appConfig.dmaapConsumerConfiguration = prhAppConfig.getDmaapConsumerConfiguration(); - appConfig.dmaapPublisherConfiguration = prhAppConfig.getDmaapPublisherConfiguration(); - appConfig.aaiClientConfiguration = prhAppConfig.getAaiClientConfiguration(); - // - // Then - // - verify(prhAppConfig).initFileStreamReader(); - assertNotNull(prhAppConfig.getDmaapConsumerConfiguration()); - assertNotNull(prhAppConfig.getDmaapPublisherConfiguration()); - assertNotNull(prhAppConfig.getAaiClientConfiguration()); - assertEquals(appConfig.getDmaapPublisherConfiguration(), prhAppConfig.getDmaapPublisherConfiguration()); - assertEquals(appConfig.getDmaapConsumerConfiguration(), prhAppConfig.getDmaapConsumerConfiguration()); - assertEquals(appConfig.getAaiClientConfiguration(), prhAppConfig.getAaiClientConfiguration()); - + void whenTheConfigurationFits() throws Exception { + InputStream inputStream = createInputStream(CORRECT_CONFIG_FILE); + appConfig.setResourceFile(new InputStreamResource(inputStream)); + appConfig.initFileStreamReader(); + + assertNotNull(appConfig.getDmaapConsumerConfiguration()); + assertNotNull(appConfig.getDmaapPublisherConfiguration()); + assertNotNull(appConfig.getAaiClientConfiguration()); } @Test - void whenFileIsNotExist_ThrowIoException() throws IOException { - // - // Given - InputStream inputStream = new ByteArrayInputStream((jsonString.getBytes( - StandardCharsets.UTF_8))); + void whenFileDoesNotExist() throws Exception { + InputStream inputStream = createInputStream(CORRECT_CONFIG_FILE); Resource resource = spy(new InputStreamResource(inputStream)); - // when(resource.getInputStream()).thenThrow(new IOException()); - prhAppConfig.setResourceFile(resource); - // - // When - // - prhAppConfig.initFileStreamReader(); - // - // Then - // - verify(prhAppConfig).initFileStreamReader(); - assertNull(prhAppConfig.getAaiClientConfiguration()); - assertNull(prhAppConfig.getDmaapConsumerConfiguration()); - assertNull(prhAppConfig.getDmaapPublisherConfiguration()); + appConfig.setResourceFile(resource); + appConfig.initFileStreamReader(); + assertNull(appConfig.getAaiClientConfiguration()); + assertNull(appConfig.getDmaapConsumerConfiguration()); + assertNull(appConfig.getDmaapPublisherConfiguration()); } @Test - void whenFileIsExistsButJsonIsIncorrect() { - // - // Given - // - InputStream inputStream = new ByteArrayInputStream((incorrectJsonString.getBytes( - StandardCharsets.UTF_8))); - // - // When - // - prhAppConfig.setResourceFile(new InputStreamResource(inputStream)); - prhAppConfig.initFileStreamReader(); - - // - // Then - // - verify(prhAppConfig).initFileStreamReader(); - assertNotNull(prhAppConfig.getAaiClientConfiguration()); - assertNotNull(prhAppConfig.getDmaapConsumerConfiguration()); - assertNull(prhAppConfig.getDmaapPublisherConfiguration()); - + void whenFileExistsButDmaapPublisherJsonConfigurationIsIncorrect() throws Exception { + InputStream inputStream = createInputStream(INCORRECT_CONFIG_FILE); + appConfig.setResourceFile(new InputStreamResource(inputStream)); + appConfig.initFileStreamReader(); + + assertNotNull(appConfig.getAaiClientConfiguration()); + assertNotNull(appConfig.getDmaapConsumerConfiguration()); + assertNull(appConfig.getDmaapPublisherConfiguration()); } - @Test - void whenTheConfigurationFits_ButRootElementIsNotAJsonObject() { - // Given - InputStream inputStream = new ByteArrayInputStream((jsonString.getBytes( - StandardCharsets.UTF_8))); - // When - prhAppConfig.setResourceFile(new InputStreamResource(inputStream)); - JsonElement jsonElement = mock(JsonElement.class); - when(jsonElement.isJsonObject()).thenReturn(false); - doReturn(jsonElement).when(prhAppConfig).getJsonElement(any(JsonParser.class), any(InputStream.class)); - prhAppConfig.initFileStreamReader(); - appConfig.dmaapConsumerConfiguration = prhAppConfig.getDmaapConsumerConfiguration(); - appConfig.dmaapPublisherConfiguration = prhAppConfig.getDmaapPublisherConfiguration(); - appConfig.aaiClientConfiguration = prhAppConfig.getAaiClientConfiguration(); - - // Then - verify(prhAppConfig).initFileStreamReader(); - assertNull(prhAppConfig.getAaiClientConfiguration()); - assertNull(prhAppConfig.getDmaapConsumerConfiguration()); - assertNull(prhAppConfig.getDmaapPublisherConfiguration()); + void whenRootElementIsNotAJsonObject() throws Exception { + InputStream inputStream = createInputStream(NOT_JSON_OBJECT_FILE); + appConfig.setResourceFile(new InputStreamResource(inputStream)); + appConfig.initFileStreamReader(); + + + assertNull(appConfig.getAaiClientConfiguration()); + assertNull(appConfig.getDmaapConsumerConfiguration()); + assertNull(appConfig.getDmaapPublisherConfiguration()); + } + + private InputStream createInputStream(String jsonFile) throws Exception { + return new ByteArrayInputStream(readAllBytes(Paths.get(getSystemResource(jsonFile).toURI()))); } }
\ No newline at end of file diff --git a/prh-app-server/src/test/resources/not_json_object.json b/prh-app-server/src/test/resources/not_json_object.json new file mode 100644 index 00000000..f50456ee --- /dev/null +++ b/prh-app-server/src/test/resources/not_json_object.json @@ -0,0 +1 @@ +["a", "d", "d"] |