diff options
author | bogumil_zebek <bogumil.zebek@nokia.com> | 2019-11-18 09:05:30 +0100 |
---|---|---|
committer | Zebek Bogumil <bogumil.zebek@nokia.com> | 2019-11-18 09:05:30 +0100 |
commit | 3aadc4547b62d205b488ece3d8d7c01e1d906a5a (patch) | |
tree | 165fbc3363117bd68f198f9b5e1f4f855721e0fa /sparkybe-onap-service/src/test/java | |
parent | 4b7b80bef8eb432fbcd82489fcd13263a3a26a8e (diff) |
Improve code quality
Remove sonar violations.
Issue-ID: AAI-2710
Signed-off-by: Zebek Bogumil <bogumil.zebek@nokia.com>
Change-Id: I557581b72b527f9d38dd5f9f7099085a8b639c88
Diffstat (limited to 'sparkybe-onap-service/src/test/java')
3 files changed, 197 insertions, 0 deletions
diff --git a/sparkybe-onap-service/src/test/java/org/onap/aai/sparky/sync/entity/ObjectIdCollectionTest.java b/sparkybe-onap-service/src/test/java/org/onap/aai/sparky/sync/entity/ObjectIdCollectionTest.java new file mode 100644 index 0000000..210e0c9 --- /dev/null +++ b/sparkybe-onap-service/src/test/java/org/onap/aai/sparky/sync/entity/ObjectIdCollectionTest.java @@ -0,0 +1,81 @@ +/** + * ============LICENSE_START======================================================= + * org.onap.aai + * ================================================================================ + * Copyright © 2019 Nokia Intellectual Property. All rights reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END========================================================= + */ +package org.onap.aai.sparky.sync.entity; + +import com.google.common.collect.Lists; +import org.junit.Before; +import org.junit.Test; + +import java.util.List; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + + +public class ObjectIdCollectionTest { + + private ObjectIdCollection objectIdCollection; + + @Before + public void setUp(){ + objectIdCollection = new ObjectIdCollection(); + } + + @Test + public void shouldBePossibleToStoreObjectId(){ + // when + objectIdCollection.addObjectId("1"); + objectIdCollection.addObjectId("2"); + + // then + assertEquals(2, objectIdCollection.getSize()); + assertTrue(objectIdCollection.getImportedObjectIds().contains("1")); + assertTrue(objectIdCollection.getImportedObjectIds().contains("2")); + } + + @Test + public void shouldBePossibleToStoreCollectionOfObjectIds(){ + // given + List<String> objectIds = Lists.newArrayList("1","2","3"); + + // when + objectIdCollection.addAll(objectIds); + + // then + assertEquals(3, objectIdCollection.getSize()); + assertTrue(objectIdCollection.getImportedObjectIds().contains("1")); + assertTrue(objectIdCollection.getImportedObjectIds().contains("2")); + assertTrue(objectIdCollection.getImportedObjectIds().contains("3")); + } + + @Test + public void shouldBePossibleToClearObjectIds(){ + // given + List<String> objectIds = Lists.newArrayList("1","2","3"); + objectIdCollection.addAll(objectIds); + + // when + objectIdCollection.clear(); + + // then + assertEquals(0, objectIdCollection.getSize()); + } + +} diff --git a/sparkybe-onap-service/src/test/java/org/onap/aai/sparky/util/ErrorUtilTest.java b/sparkybe-onap-service/src/test/java/org/onap/aai/sparky/util/ErrorUtilTest.java new file mode 100644 index 0000000..5ab7029 --- /dev/null +++ b/sparkybe-onap-service/src/test/java/org/onap/aai/sparky/util/ErrorUtilTest.java @@ -0,0 +1,66 @@ +/** + * ============LICENSE_START======================================================= + * org.onap.aai + * ================================================================================ + * Copyright © 2019 Nokia Intellectual Property. All rights reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END========================================================= + */ +package org.onap.aai.sparky.util; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mock; +import org.mockito.runners.MockitoJUnitRunner; + +import static org.junit.Assert.assertEquals; +import static org.mockito.Mockito.when; + +@RunWith(MockitoJUnitRunner.class) +public class ErrorUtilTest { + + private StackTraceElement[] stackTraceElements = new StackTraceElement[]{ + new StackTraceElement("TestClass", "methodA", "a", 2), + new StackTraceElement("TestClass", "methodB", "b", 3) + }; + + @Mock + Exception exception; + + @Test + public void shouldReturnEmptyStringWhenStackTraceArrayIsEmpty() { + assertEquals("", ErrorUtil.extractStackTraceElements(1, exception)); + } + + @Test + public void shouldReturnNarrowedStackTraceElementsAsFormattedStringToPassedMaxNumberOfElements() { + // given + when(exception.getStackTrace()).thenReturn(stackTraceElements); + // when + final String actual = ErrorUtil.extractStackTraceElements(1, exception); + // then + assertEquals("TestClass.methodA(a:2)\n", actual); + } + + @Test + public void shouldReturnFullStackTraceElementsAsFormattedStringWhenMaxNumberOfElementsIsOutOfRange() { + // given + when(exception.getStackTrace()).thenReturn(stackTraceElements); + // when + final String actual = ErrorUtil.extractStackTraceElements(5, exception); + // then + assertEquals("TestClass.methodA(a:2)\nTestClass.methodB(b:3)\n", actual); + } + +} diff --git a/sparkybe-onap-service/src/test/java/org/onap/aai/sparky/util/JsonXmlConverterTest.java b/sparkybe-onap-service/src/test/java/org/onap/aai/sparky/util/JsonXmlConverterTest.java new file mode 100644 index 0000000..73463bd --- /dev/null +++ b/sparkybe-onap-service/src/test/java/org/onap/aai/sparky/util/JsonXmlConverterTest.java @@ -0,0 +1,50 @@ +/** + * ============LICENSE_START======================================================= + * org.onap.aai + * ================================================================================ + * Copyright © 2019 Nokia Intellectual Property. All rights reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END========================================================= + */ +package org.onap.aai.sparky.util; + +import org.junit.Test; + +import static org.junit.Assert.*; + +public class JsonXmlConverterTest { + + @Test + public void shouldReportAnErrorWhenDataHasInvalidFormat(){ + assertFalse(JsonXmlConverter.isValidJson("invalid json")); + } + + @Test + public void shouldAcceptDataWhenDataHasValidFormat(){ + assertTrue(JsonXmlConverter.isValidJson("{ 'number': 5}")); + } + + @Test + public void shouldConvertXmlToJson() { + final String actual = JsonXmlConverter.convertXmlToJson("<root><number>5</number><text>message</text></root>"); + assertEquals("{\"root\":{\"number\":5,\"text\":\"message\"}}", actual); + } + + @Test + public void shouldConvertJsonToXml() { + final String actual = JsonXmlConverter.convertJsonToXml("{\"root\":{\"number\":5,\"text\":\"message\"}}"); + assertEquals("<root><number>5</number><text>message</text></root>", actual); + } + +} |