From 82cd63adf72978d85db4e470582c98f804bbf224 Mon Sep 17 00:00:00 2001 From: rameshiyer27 Date: Wed, 21 Jun 2023 15:11:22 +0100 Subject: [PATCH] Fix CSIT failure in clamp. ACM uninstantiate Api response was changed to 202 from 200. Test case updated. Issue-ID: POLICY-4729 Signed-off-by: zrrmmua Change-Id: I4b88a5bb19a1889d899ddf9c39d1712c0a0b5e46 --- csit/resources/tests/policy-clamp-test.robot | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/csit/resources/tests/policy-clamp-test.robot b/csit/resources/tests/policy-clamp-test.robot index 29a99ebb..d5fec492 100644 --- a/csit/resources/tests/policy-clamp-test.robot +++ b/csit/resources/tests/policy-clamp-test.robot @@ -127,7 +127,8 @@ UnInstantiateAutomationComposition ${headers}= Create Dictionary Accept=application/json Content-Type=application/json ${resp}= DELETE On Session policy /onap/policy/clamp/acm/v2/compositions/${compositionId}/instances/${instanceId} headers=${headers} Log Received response from runtime acm ${resp.text} - Should Be Equal As Strings ${resp.status_code} 200 + Should Be Equal As Strings ${resp.status_code} 202 + Wait Until Keyword Succeeds 1 min 5 sec VerifyUninstantiated DePrimeACDefinitions @@ -179,3 +180,14 @@ VerifyDeployStatus Should Be Equal As Strings ${resp.status_code} 200 Run Keyword If ${resp.status_code}==200 Should Be Equal As Strings ${resp.json()['deployState']} ${deploystate} +VerifyUninstantiated + [Documentation] Verify the Uninstantiation of automation composition. + ${auth}= Create List runtimeUser zb!XztG34 + Log Creating session http://${POLICY_RUNTIME_ACM_IP} + ${session}= Create Session policy http://${POLICY_RUNTIME_ACM_IP} auth=${auth} + ${headers}= Create Dictionary Accept=application/json Content-Type=application/json + ${resp}= GET On Session policy /onap/policy/clamp/acm/v2/compositions/${compositionId}/instances headers=${headers} + Should Be Equal As Strings ${resp.status_code} 200 + Run Keyword If ${resp.status_code}==200 Length Should Be ${resp.json()['automationCompositionList']} 0 + + -- 2.16.6