aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorprakash.e <prakash.e@huawei.com>2019-08-10 21:10:36 +0530
committerprakash.e <prakash.e@huawei.com>2019-08-10 21:11:00 +0530
commitbe8e3f3da6f00427eb62616ac75fbd4d7f5ed4c6 (patch)
tree18f0d3a1124713c40eafc7044e81d5f8e9f38b36
parent1c38dbabc0dcc9787e9d8eb1bce8b206f8941ac2 (diff)
Test case addition for sdnc code coverage
Test case added for GenericConfigurationTopologyOperation Change-Id: I9b7c8753bf1899a4933d69a417b475169dfa0f59 Issue-ID: SDNC-840 Signed-off-by: Prakash.E <prakash.e@huawei.com>
-rw-r--r--generic-resource-api/provider/src/test/java/org/onap/sdnc/northbound/GenericConfigurationNotificationRPCTest.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/generic-resource-api/provider/src/test/java/org/onap/sdnc/northbound/GenericConfigurationNotificationRPCTest.java b/generic-resource-api/provider/src/test/java/org/onap/sdnc/northbound/GenericConfigurationNotificationRPCTest.java
new file mode 100644
index 00000000..5d611801
--- /dev/null
+++ b/generic-resource-api/provider/src/test/java/org/onap/sdnc/northbound/GenericConfigurationNotificationRPCTest.java
@@ -0,0 +1,38 @@
+package org.onap.sdnc.northbound;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.runners.MockitoJUnitRunner;
+import org.opendaylight.yang.gen.v1.org.onap.sdnc.northbound.generic.resource.rev170824.GenericConfigurationNotificationInput;
+import org.opendaylight.yang.gen.v1.org.onap.sdnc.northbound.generic.resource.rev170824.GenericConfigurationNotificationOutput;
+import org.opendaylight.yangtools.yang.common.RpcResult;
+import org.opendaylight.yang.gen.v1.org.onap.sdnc.northbound.generic.resource.rev170824.service.information.ServiceInformationBuilder;
+
+import static org.junit.Assert.assertNull;
+import static org.onap.sdnc.northbound.util.MDSALUtil.*;
+
+@RunWith(MockitoJUnitRunner.class)
+public class GenericConfigurationNotificationRPCTest extends GenericResourceApiProviderTest {
+
+ private static final String SVC_OPERATION = "generic-configuration-notification";
+
+ @Before
+ public void setUp() throws Exception {
+ super.setUp();
+ svcClient.setScvOperation(SVC_OPERATION);
+ }
+
+ @Test
+ public void should_complete_with_success_when_no_errors() throws Exception {
+
+ GenericConfigurationNotificationInput input = build(GenericConfigurationNotificationInput()
+ .setServiceInformation(new ServiceInformationBuilder().setServiceInstanceId("serviceInstanceId").build()));
+
+ GenericConfigurationNotificationOutput output =
+ exec(genericResourceApiProvider::genericConfigurationNotification, input, RpcResult::getResult);
+
+ assertNull(output);
+ }
+}
+