diff options
author | Dan Timoney <dtimoney@att.com> | 2019-08-12 13:11:41 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-08-12 13:11:41 +0000 |
commit | c4b2da44aae39a591bf2c2bc83ccbbb5b556d17b (patch) | |
tree | 05ad16d5dbb0b588f80809a504f22e21deec42c0 /generic-resource-api | |
parent | f3ce37cb044d2ea93f3cc5e73d9afd5d9f9b5554 (diff) | |
parent | 586c6fa1deabea69e46da85619bc0b35b77d71d8 (diff) |
Merge "Test case addition for code coverage"
Diffstat (limited to 'generic-resource-api')
-rw-r--r-- | generic-resource-api/provider/src/test/java/org/onap/sdnc/northbound/PortMirrorTopologyOperationRPCTest.java | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/generic-resource-api/provider/src/test/java/org/onap/sdnc/northbound/PortMirrorTopologyOperationRPCTest.java b/generic-resource-api/provider/src/test/java/org/onap/sdnc/northbound/PortMirrorTopologyOperationRPCTest.java new file mode 100644 index 00000000..dd3e5d90 --- /dev/null +++ b/generic-resource-api/provider/src/test/java/org/onap/sdnc/northbound/PortMirrorTopologyOperationRPCTest.java @@ -0,0 +1,36 @@ +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.PortMirrorTopologyOperationInput; +import org.opendaylight.yang.gen.v1.org.onap.sdnc.northbound.generic.resource.rev170824.PortMirrorTopologyOperationOutput; +import org.opendaylight.yangtools.yang.common.RpcResult; + +import static org.junit.Assert.assertEquals; +import static org.onap.sdnc.northbound.util.MDSALUtil.*; + +@RunWith(MockitoJUnitRunner.class) +public class PortMirrorTopologyOperationRPCTest extends GenericResourceApiProviderTest { + + private static final String SVC_OPERATION = "policy-update-notify-operation"; + + @Before + public void setUp() throws Exception { + super.setUp(); + svcClient.setScvOperation(SVC_OPERATION); + } + + @Test + public void should_fail_when_invalid_vnf_topology() throws Exception { + + PortMirrorTopologyOperationInput input = build(PortMirrorTopologyOperationInput()); + + PortMirrorTopologyOperationOutput output = + exec(genericResourceApiProvider::portMirrorTopologyOperation, input, RpcResult::getResult); + + assertEquals("404", output.getResponseCode()); + assertEquals("invalid input, null or empty service-instance-id", output.getResponseMessage()); + } +} |