diff options
author | sanchitap <sanchita@techmahindra.com> | 2018-03-13 12:09:24 +0530 |
---|---|---|
committer | sanchitap <sanchita@techmahindra.com> | 2018-03-13 12:09:24 +0530 |
commit | cc556ec6ba84687d6e38d16e4af6caf24b57198e (patch) | |
tree | 64f4b1e59dc92ad4ba6b9ddbe3cbb7db640e6857 /adapters/mso-adapters-rest-interface/src/test | |
parent | 6310dbd5b69ecd9e5b87cd31a7420c4ff3d4f36d (diff) |
Unit test coverage
Unit test coverage for
1.RequestInformation.java
2.SDNCEvent.java
Sonar link:
https://sonar.onap.org/code?id=org.onap.so%3Aadapters&selected=org.onap.so.adapters%3Amso-adapters-rest-interface%3Asrc%2Fmain%2Fjava%2Forg%2Fopenecomp%2Fmso%2Fadapters%2Fsdncrest
Change-Id: I9ed76cac33bad1739df441c8f9e0ad77d738e1d6
Issue-ID: SO-467
Signed-off-by: sanchitap <sanchita@techmahindra.com>
Diffstat (limited to 'adapters/mso-adapters-rest-interface/src/test')
2 files changed, 138 insertions, 0 deletions
diff --git a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/adapters/sdncrest/RequestInformationTest.java b/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/adapters/sdncrest/RequestInformationTest.java new file mode 100644 index 0000000000..c6d815a960 --- /dev/null +++ b/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/adapters/sdncrest/RequestInformationTest.java @@ -0,0 +1,57 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP - SO + * ================================================================================ + * Copyright (C) 2018 TechMahindra + * ================================================================================ + * 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.openecomp.mso.adapters.sdncrest; + +import org.junit.Assert; + +import org.junit.Before; +import org.junit.Test; + +public class RequestInformationTest { + + private RequestInformation requestInformation; + + @Before + public void setUp() { + requestInformation = new RequestInformation(); + } + + @Test + public void testGetRequestId() { + requestInformation.setRequestId("requestId"); + Assert.assertNotNull(requestInformation.getRequestId()); + Assert.assertEquals(requestInformation.getRequestId(), "requestId"); + } + + @Test + public void testGetSource() { + requestInformation.setSource("source"); + Assert.assertNotNull(requestInformation.getSource()); + Assert.assertEquals(requestInformation.getSource(), "source"); + } + + @Test + public void testGetNotificationUrl() { + requestInformation.setNotificationUrl("notificationUrl"); + Assert.assertNotNull(requestInformation.getNotificationUrl()); + Assert.assertEquals(requestInformation.getNotificationUrl(), "notificationUrl"); + } +} diff --git a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/adapters/sdncrest/SDNCEventTest.java b/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/adapters/sdncrest/SDNCEventTest.java new file mode 100644 index 0000000000..81d888bf70 --- /dev/null +++ b/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/adapters/sdncrest/SDNCEventTest.java @@ -0,0 +1,81 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP - SO + * ================================================================================ + * Copyright (C) 2018 TechMahindra + * ================================================================================ + * 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.openecomp.mso.adapters.sdncrest; + +import static org.junit.Assert.*; + +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +import java.util.HashMap; +import java.util.Map; + +public class SDNCEventTest { + + private SDNCEvent sdncEvent; + private Map<String, String> param; + private String name = "name"; + private String value = "value"; + + @Before + public void setUp() { + sdncEvent = new SDNCEvent(); + } + + @Test + public void testGetEventType() { + sdncEvent.setEventType("eventType"); + Assert.assertNotNull(sdncEvent.getEventType()); + Assert.assertEquals(sdncEvent.getEventType(), "eventType"); + } + + @Test + public void testGetEventCorrelatorType() { + sdncEvent.setEventCorrelatorType("eventCorrelatorType"); + Assert.assertNotNull(sdncEvent.getEventCorrelatorType()); + Assert.assertEquals(sdncEvent.getEventCorrelatorType(), "eventCorrelatorType"); + } + + @Test + public void testGetEventCorrelator() { + sdncEvent.setEventCorrelator("eventCorrelator"); + Assert.assertNotNull(sdncEvent.getEventCorrelator()); + Assert.assertEquals(sdncEvent.getEventCorrelator(), "eventCorrelator"); + } + + @Test + public void testGetParams() { + param = new HashMap<>(); + param.put("paramKey", "paramValue"); + sdncEvent.setParams(param); + Assert.assertNotNull(sdncEvent.getParams()); + Assert.assertTrue(sdncEvent.getParams().containsKey("paramKey")); + Assert.assertTrue(sdncEvent.getParams().containsValue("paramValue")); + } + + @Test + public void testAddParam() { + sdncEvent.addParam("name", "value"); + + } + +} |