aboutsummaryrefslogtreecommitdiffstats
path: root/csit/clamp/tests/policy-clamp-test.robot
diff options
context:
space:
mode:
authorsaul.gill <saul.gill@est.tech>2022-12-15 08:51:09 +0000
committerLiam Fallon <liam.fallon@est.tech>2022-12-16 10:29:19 +0000
commit4d4a2216e573892791131885a05851fa67d51ec4 (patch)
tree68ba7e1b2ddd9a79401c63863635ed7f4a046b38 /csit/clamp/tests/policy-clamp-test.robot
parent79841aca88d60257dc5557dc19f069b8bd677f99 (diff)
Fix clamp CSITs for master
CSIT fails due to new composition endpoint structure Altering CSIT spec to reflect changes Issue-ID: POLICY-4485 Change-Id: I942c18564a9c2c82676e3f269a736103f5c74d14 Signed-off-by: saul.gill <saul.gill@est.tech>
Diffstat (limited to 'csit/clamp/tests/policy-clamp-test.robot')
-rw-r--r--csit/clamp/tests/policy-clamp-test.robot28
1 files changed, 15 insertions, 13 deletions
diff --git a/csit/clamp/tests/policy-clamp-test.robot b/csit/clamp/tests/policy-clamp-test.robot
index 7fb73753..1b118b3f 100644
--- a/csit/clamp/tests/policy-clamp-test.robot
+++ b/csit/clamp/tests/policy-clamp-test.robot
@@ -12,10 +12,10 @@ CommissionAutomationCompositionV1
[Documentation] Commission automation composition.
${auth}= Create List runtimeUser zb!XztG34
Log Creating session http://${POLICY_RUNTIME_ACM_IP}:6969
- ${postyaml}= Get file ${CURDIR}/data/PMSHMultipleACTosca.yaml
+ ${postyaml}= Get file ${CURDIR}/data/functional-pmsh-usecase.yaml
${session}= Create Session policy http://${POLICY_RUNTIME_ACM_IP}:6969 auth=${auth}
${headers}= Create Dictionary Accept=application/yaml Content-Type=application/yaml
- ${resp}= POST On Session policy /onap/policy/clamp/acm/v2/commission data=${postyaml} headers=${headers}
+ ${resp}= POST On Session policy /onap/policy/clamp/acm/v2/compositions data=${postyaml} headers=${headers}
Log Received response from runtime acm ${resp.text}
${respyaml}= yaml.Safe Load ${resp.text}
set Suite variable ${compositionId} ${respyaml["compositionId"]}
@@ -25,24 +25,26 @@ InstantiateAutomationCompositionV1
[Documentation] Instantiate automation composition.
${auth}= Create List runtimeUser zb!XztG34
Log Creating session http://${POLICY_RUNTIME_ACM_IP}:6969
- ${postjson}= Get file ${CURDIR}/data/InstantiateAC.json
+ ${postjson}= Get file ${CURDIR}/data/AutomationComposition.json
${updatedpostjson}= Replace String ${postjson} COMPOSITIONIDPLACEHOLDER ${compositionId}
${session}= Create Session policy http://${POLICY_RUNTIME_ACM_IP}:6969 auth=${auth}
${headers}= Create Dictionary Accept=application/json Content-Type=application/json
- ${resp}= POST On Session policy /onap/policy/clamp/acm/v2/instantiation data=${updatedpostjson} headers=${headers}
+ ${resp}= POST On Session policy /onap/policy/clamp/acm/v2/compositions/${compositionId}/instances data=${updatedpostjson} headers=${headers}
Log Received response from runtime acm ${resp.text}
- Should Be Equal As Strings ${resp.status_code} 200
+ ${respyaml}= yaml.Safe Load ${resp.text}
+ set Suite variable ${instanceId} ${respyaml["instanceId"]}
+ Should Be Equal As Strings ${resp.status_code} 201
PassivateAutomationComposition
[Documentation] Passivate automation composition.
${auth}= Create List runtimeUser zb!XztG34
Log Creating session http://${POLICY_RUNTIME_ACM_IP}:6969
- ${postjson}= Get file ${CURDIR}/data/PassivateAC.json
+ ${postjson}= Get file ${CURDIR}/data/PassiveCommand.json
${session}= Create Session policy http://${POLICY_RUNTIME_ACM_IP}:6969 auth=${auth}
${headers}= Create Dictionary Accept=application/json Content-Type=application/json
- ${resp}= PUT On Session policy /onap/policy/clamp/acm/v2/instantiation/command data=${postjson} headers=${headers}
+ ${resp}= PUT On Session policy /onap/policy/clamp/acm/v2/compositions/${compositionId}/instances/${instanceId} data=${postjson} headers=${headers}
Log Received response from runtime acm ${resp.text}
- Should Be Equal As Strings ${resp.status_code} 202
+ Should Be Equal As Strings ${resp.status_code} 200
QueryPolicies
[Documentation] Runs Policy Participant Query New Policies
@@ -68,10 +70,10 @@ StateChangeRunningAutomationComposition
[Documentation] AutomationComposition State Change to RUNNING.
${auth}= Create List runtimeUser zb!XztG34
Log Creating session http://${POLICY_RUNTIME_ACM_IP}:6969
- ${postjson}= Get file ${CURDIR}/data/StateChangeRunningAC.json
+ ${postjson}= Get file ${CURDIR}/data/RunningCommand.json
${session}= Create Session policy http://${POLICY_RUNTIME_ACM_IP}:6969 auth=${auth}
${headers}= Create Dictionary Accept=application/json Content-Type=application/json
- ${resp}= PUT On Session policy /onap/policy/clamp/acm/v2/instantiation/command data=${postjson} headers=${headers} expected_status=406
+ ${resp}= PUT On Session policy /onap/policy/clamp/acm/v2/compositions/${compositionId}/instances/${instanceId} data=${postjson} headers=${headers} expected_status=400
Log Received response from runtime acm ${resp.text}
QueryInstantiatedACs
@@ -80,8 +82,8 @@ QueryInstantiatedACs
Log Creating session http://${POLICY_RUNTIME_ACM_IP}:6969
${session}= Create Session policy http://${POLICY_RUNTIME_ACM_IP}:6969 auth=${auth}
${headers}= Create Dictionary Accept=application/json Content-Type=application/json
- ${resp}= GET On Session policy /onap/policy/clamp/acm/v2/instantiation headers=${headers}
+ ${resp}= GET 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.json()['automationCompositionList'][0]['state']} UNINITIALISED2PASSIVE
- Should Be Equal As Strings ${resp.json()['automationCompositionList'][0]['orderedState']} RUNNING
+ Should Be Equal As Strings ${resp.json()['state']} UNINITIALISED2PASSIVE
+ Should Be Equal As Strings ${resp.json()['orderedState']} PASSIVE