From: Dan Timoney Date: Mon, 12 Aug 2019 13:12:43 +0000 (+0000) Subject: Merge "New test case added for code coverage" X-Git-Tag: 1.6.2~3 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=be9ca669e992cd3b7f851f7788c32697579aa129;hp=8f6f18f0957932d4c03036f838daffb43c3d1dc4;p=sdnc%2Fnorthbound.git Merge "New test case added for code coverage" --- 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 index b73bd113..ff2a4351 100644 --- 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 @@ -33,4 +33,16 @@ public class PolicyUpdateNotifyOperationRPCTest extends GenericResourceApiProvid assertEquals("404", output.getErrorCode()); assertEquals("Invalid input, missing input data", output.getErrorMsg()); } + + @Test + public void should_fail_when_valid_vnf_topology() throws Exception { + + PolicyUpdateNotifyOperationInput input = build(PolicyUpdateNotifyOperationInput().setPolicyName("PolicyName").setUpdateType("UpdateType").setVersionId("vID")); + + PolicyUpdateNotifyOperationOutput output = + exec(genericResourceApiProvider::policyUpdateNotifyOperation, input, RpcResult::getResult); + + assertEquals("503", output.getErrorCode()); + assertEquals("No service logic active for generic-resource-api: 'policy-update-notify-operation'", output.getErrorMsg()); + } }