aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsaul.gill <saul.gill@est.tech>2022-12-20 16:24:05 +0000
committersaul.gill <saul.gill@est.tech>2022-12-20 16:30:12 +0000
commit6222aaf55520b36088f9c2ef76450e15458e7317 (patch)
treec79927362ff33637aa7e63f015430bf516ceeed3
parent0a85ebf4a72c22571751cbc80017cc81c93a235b (diff)
Temporarily disable ACM CSITs
Healthcheck CSIT added Other CSITs disabled while ACM updates are ongoing Issue-ID: POLICY-4490 Change-Id: I3f8b4ca0f686fe979228004922e4c79154bb28b4 Signed-off-by: saul.gill <saul.gill@est.tech>
-rw-r--r--csit/clamp/tests/policy-clamp-test.robot159
1 files changed, 84 insertions, 75 deletions
diff --git a/csit/clamp/tests/policy-clamp-test.robot b/csit/clamp/tests/policy-clamp-test.robot
index 1b118b3f..9fefbc0a 100644
--- a/csit/clamp/tests/policy-clamp-test.robot
+++ b/csit/clamp/tests/policy-clamp-test.robot
@@ -7,83 +7,92 @@ Library json
Library yaml
*** Test Cases ***
-
-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/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/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"]}
- Should Be Equal As Strings ${resp.status_code} 201
-
-InstantiateAutomationCompositionV1
- [Documentation] Instantiate automation composition.
+Healthcheck
+ [Documentation] Healthcheck on Clamp Acm
${auth}= Create List runtimeUser zb!XztG34
Log Creating session http://${POLICY_RUNTIME_ACM_IP}:6969
- ${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/compositions/${compositionId}/instances data=${updatedpostjson} headers=${headers}
- Log Received response from runtime acm ${resp.text}
- ${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/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/compositions/${compositionId}/instances/${instanceId} data=${postjson} headers=${headers}
- Log Received response from runtime acm ${resp.text}
- Should Be Equal As Strings ${resp.status_code} 200
-
-QueryPolicies
- [Documentation] Runs Policy Participant Query New Policies
- ${auth}= Create List policyadmin zb!XztG34
- Log Creating session http://${POLICY_API_IP}:6969
- ${session}= Create Session policy http://${POLICY_API_IP}:6969 auth=${auth}
+ ${session}= Create Session ACM http://${POLICY_RUNTIME_ACM_IP}:6969 auth=${auth}
${headers}= Create Dictionary Accept=application/json Content-Type=application/json
- ${resp}= GET On Session policy /policy/api/v1/policies headers=${headers}
- Log Received response from policy-api {resp.text}
+ ${resp}= GET On Session ACM /onap/policy/clamp/acm/health headers=${headers}
+ Log Received response from ACM healthcheck {resp.text}
Should Be Equal As Strings ${resp.status_code} 200
-QueryPolicyTypes
- [Documentation] Runs Policy Participant Query New Policy Types
- ${auth}= Create List policyadmin zb!XztG34
- Log Creating session http://${POLICY_API_IP}:6969
- ${session}= Create Session policy http://${POLICY_API_IP}:6969 auth=${auth}
- ${headers}= Create Dictionary Accept=application/json Content-Type=application/json
- ${resp}= GET On Session policy /policy/api/v1/policytypes headers=${headers}
- Log Received response from policy-api ${resp.text}
- Should Be Equal As Strings ${resp.status_code} 200
-
-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/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/compositions/${compositionId}/instances/${instanceId} data=${postjson} headers=${headers} expected_status=400
- Log Received response from runtime acm ${resp.text}
-
-QueryInstantiatedACs
- [Documentation] Get Instantiated AutomationCompositions
- ${auth}= Create List runtimeUser zb!XztG34
- 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/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()['state']} UNINITIALISED2PASSIVE
- Should Be Equal As Strings ${resp.json()['orderedState']} PASSIVE
+#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/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/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"]}
+# Should Be Equal As Strings ${resp.status_code} 201
+#
+#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/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/compositions/${compositionId}/instances data=${updatedpostjson} headers=${headers}
+# Log Received response from runtime acm ${resp.text}
+# ${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/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/compositions/${compositionId}/instances/${instanceId} data=${postjson} headers=${headers}
+# Log Received response from runtime acm ${resp.text}
+# Should Be Equal As Strings ${resp.status_code} 200
+#
+#QueryPolicies
+# [Documentation] Runs Policy Participant Query New Policies
+# ${auth}= Create List policyadmin zb!XztG34
+# Log Creating session http://${POLICY_API_IP}:6969
+# ${session}= Create Session policy http://${POLICY_API_IP}:6969 auth=${auth}
+# ${headers}= Create Dictionary Accept=application/json Content-Type=application/json
+# ${resp}= GET On Session policy /policy/api/v1/policies headers=${headers}
+# Log Received response from policy-api {resp.text}
+# Should Be Equal As Strings ${resp.status_code} 200
+#
+#QueryPolicyTypes
+# [Documentation] Runs Policy Participant Query New Policy Types
+# ${auth}= Create List policyadmin zb!XztG34
+# Log Creating session http://${POLICY_API_IP}:6969
+# ${session}= Create Session policy http://${POLICY_API_IP}:6969 auth=${auth}
+# ${headers}= Create Dictionary Accept=application/json Content-Type=application/json
+# ${resp}= GET On Session policy /policy/api/v1/policytypes headers=${headers}
+# Log Received response from policy-api ${resp.text}
+# Should Be Equal As Strings ${resp.status_code} 200
+#
+#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/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/compositions/${compositionId}/instances/${instanceId} data=${postjson} headers=${headers} expected_status=400
+# Log Received response from runtime acm ${resp.text}
+#
+#QueryInstantiatedACs
+# [Documentation] Get Instantiated AutomationCompositions
+# ${auth}= Create List runtimeUser zb!XztG34
+# 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/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()['state']} UNINITIALISED2PASSIVE
+# Should Be Equal As Strings ${resp.json()['orderedState']} PASSIVE