diff options
author | rameshiyer27 <ramesh.murugan.iyer@est.tech> | 2023-06-21 15:11:22 +0100 |
---|---|---|
committer | rameshiyer27 <ramesh.murugan.iyer@est.tech> | 2023-06-22 10:37:55 +0100 |
commit | 82cd63adf72978d85db4e470582c98f804bbf224 (patch) | |
tree | d5e091ffc582d09abf22a34892cbe7d60d9957dc | |
parent | c1443ac9c36fe81890d1ddaaa208bc27084e58f9 (diff) |
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 <ramesh.murugan.iyer@est.tech>
Change-Id: I4b88a5bb19a1889d899ddf9c39d1712c0a0b5e46
-rw-r--r-- | csit/resources/tests/policy-clamp-test.robot | 14 |
1 files changed, 13 insertions, 1 deletions
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 + + |