diff options
author | prakash.e <prakash.e@huawei.com> | 2019-08-10 07:50:03 +0530 |
---|---|---|
committer | prakash.e <prakash.e@huawei.com> | 2019-08-10 07:50:20 +0530 |
commit | 4b7431b5d45cd50ee6331fd7dc72f7db73b587e5 (patch) | |
tree | 46466ce67bcf11faa9952b9496ce6b60508c4624 /generic-resource-api/provider/src/test | |
parent | 1c38dbabc0dcc9787e9d8eb1bce8b206f8941ac2 (diff) |
Test case addition for code coverage
Added test case for PolicyUpdateNotifyOperation
Change-Id: I1724869eee8219ab8b6f2cf7857fb2e35e74ceb3
Issue-ID: SDNC-840
Signed-off-by: Prakash.E <prakash.e@huawei.com>
Diffstat (limited to 'generic-resource-api/provider/src/test')
-rw-r--r-- | generic-resource-api/provider/src/test/java/org/onap/sdnc/northbound/PolicyUpdateNotifyOperationRPCTest.java | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/generic-resource-api/provider/src/test/java/org/onap/sdnc/northbound/PolicyUpdateNotifyOperationRPCTest.java b/generic-resource-api/provider/src/test/java/org/onap/sdnc/northbound/PolicyUpdateNotifyOperationRPCTest.java new file mode 100644 index 00000000..b73bd113 --- /dev/null +++ b/generic-resource-api/provider/src/test/java/org/onap/sdnc/northbound/PolicyUpdateNotifyOperationRPCTest.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.PolicyUpdateNotifyOperationInput; +import org.opendaylight.yang.gen.v1.org.onap.sdnc.northbound.generic.resource.rev170824.PolicyUpdateNotifyOperationOutput; +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 PolicyUpdateNotifyOperationRPCTest 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 { + + PolicyUpdateNotifyOperationInput input = build(PolicyUpdateNotifyOperationInput()); + + PolicyUpdateNotifyOperationOutput output = + exec(genericResourceApiProvider::policyUpdateNotifyOperation, input, RpcResult::getResult); + + assertEquals("404", output.getErrorCode()); + assertEquals("Invalid input, missing input data", output.getErrorMsg()); + } +} |