aboutsummaryrefslogtreecommitdiffstats
path: root/tests/policy/apex-pdp/apex-pdp-test.robot
diff options
context:
space:
mode:
authorTaka Cho <takamune.cho@att.com>2021-03-15 17:13:54 -0400
committerTaka Cho <takamune.cho@att.com>2021-03-15 17:15:30 -0400
commit2058cb12164f25c1d74b9208d7f464b34aa6e6bf (patch)
treeaa0511bc2787d17168191393b67c150379bbcbbf /tests/policy/apex-pdp/apex-pdp-test.robot
parent1d3ceea1defb5640e9f850dad647904b41002988 (diff)
policy csit moved to policy repo
removed all files related to policy csit. already moved csit to policy project level Issue-ID: POLICY-2895 Change-Id: I00312533e395a80972cf62da01a2a3723d5c9b8c Signed-off-by: Taka Cho <takamune.cho@att.com>
Diffstat (limited to 'tests/policy/apex-pdp/apex-pdp-test.robot')
-rw-r--r--tests/policy/apex-pdp/apex-pdp-test.robot58
1 files changed, 0 insertions, 58 deletions
diff --git a/tests/policy/apex-pdp/apex-pdp-test.robot b/tests/policy/apex-pdp/apex-pdp-test.robot
deleted file mode 100644
index 54838a39..00000000
--- a/tests/policy/apex-pdp/apex-pdp-test.robot
+++ /dev/null
@@ -1,58 +0,0 @@
-*** Settings ***
-Library Collections
-Library RequestsLibrary
-Library OperatingSystem
-Library json
-
-*** Test Cases ***
-
-Healthcheck
- [Documentation] Runs Apex PDP Health check
- ${auth}= Create List healthcheck zb!XztG34
- Log Creating session https://${APEX_IP}:6969
- ${session}= Create Session policy https://${APEX_IP}:6969 auth=${auth}
- ${headers}= Create Dictionary Accept=application/json Content-Type=application/json
- ${resp}= Get Request policy /policy/apex-pdp/v1/healthcheck headers=${headers}
- Log Received response from policy1 ${resp.text}
- Should Be Equal As Strings ${resp.status_code} 200
- Should Be Equal As Strings ${resp.json()['code']} 200
-
-ExecuteApexPolicy
- Wait Until Keyword Succeeds 2 min 5 sec CreatePolicy
- Wait Until Keyword Succeeds 2 min 5 sec DeployPolicy
- Wait Until Keyword Succeeds 4 min 10 sec RunEventOnApexEngine
-
-*** Keywords ***
-
-CreatePolicy
- [Documentation] Create a new Apex policy
- ${auth}= Create List healthcheck zb!XztG34
- ${postjson}= Get file ${CURDIR}/data/onap.policies.native.Apex.tosca.json
- Log Creating session https://${POLICY_API_IP}:6969
- ${session}= Create Session policy https://${POLICY_API_IP}:6969 auth=${auth}
- ${headers}= Create Dictionary Accept=application/json Content-Type=application/json
- ${resp}= Post Request policy /policy/api/v1/policytypes/onap.policies.native.Apex/versions/1.0.0/policies data=${postjson} headers=${headers}
- Log Received response from policy4 ${resp.text}
- ${postjsonobject} To Json ${postjson}
- Should Be Equal As Strings ${resp.status_code} 200
- Dictionary Should Contain Key ${resp.json()} tosca_definitions_version
- Dictionary Should Contain Key ${postjsonobject} tosca_definitions_version
-
-DeployPolicy
- [Documentation] Deploy the policy in apex-pdp engine
- ${auth}= Create List healthcheck zb!XztG34
- ${postjson}= Get file ${CURDIR}/data/pdp_update.json
- Log Creating session https://${POLICY_PAP_IP}:6969
- ${session}= Create Session policy https://${POLICY_PAP_IP}:6969 auth=${auth}
- ${headers}= Create Dictionary Accept=application/json Content-Type=application/json
- ${resp}= Post Request policy /policy/pap/v1/pdps/deployments/batch data=${postjson} headers=${headers}
- Log Received response from policy5 ${resp.text}
- ${postjsonobject} To Json ${postjson}
- Should Be Equal As Strings ${resp.status_code} 202
-
-RunEventOnApexEngine
- Create Session apexSession http://${APEX_IP}:23324 max_retries=1
- ${data}= Get Binary File ${CURDIR}${/}data${/}event.json
- &{headers}= Create Dictionary Content-Type=application/json Accept=application/json
- ${resp}= Put Request apexSession /apex/FirstConsumer/EventIn data=${data} headers=${headers}
- Should Be Equal As Strings ${resp.status_code} 200