aboutsummaryrefslogtreecommitdiffstats
path: root/tests/policy
diff options
context:
space:
mode:
authorChenfei Gao <cgao@research.att.com>2019-10-21 16:13:27 -0400
committerChenfei Gao <cgao@research.att.com>2019-10-21 16:13:37 -0400
commitd5ba0fdc765d50d587e46279ae8c591b51a7c598 (patch)
tree3f95a008943b029f180f7f0b070bd77e7159897f /tests/policy
parent82c77373361dc8eb8747beb42d1c92dd86302673 (diff)
Updated csit for new API endpoint
Issue-ID: POLICY-2161 Change-Id: Id5ae6957fd655f90d29650f5ae5fa73b10a2afe3 Signed-off-by: Chenfei Gao <cgao@research.att.com>
Diffstat (limited to 'tests/policy')
-rw-r--r--tests/policy/api/api-test.robot14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/policy/api/api-test.robot b/tests/policy/api/api-test.robot
index 31060785..7f108d01 100644
--- a/tests/policy/api/api-test.robot
+++ b/tests/policy/api/api-test.robot
@@ -78,6 +78,20 @@ CreateNewMonitoringPolicy
Dictionary Should Contain Key ${resp.json()['topology_template']['policies'][0]} onap.restart.tca
Dictionary Should Contain Key ${postjsonobject['topology_template']['policies'][0]} onap.restart.tca
+SimpleCreateNewMonitoringPolicy
+ [Documentation] Create a new Monitoring TCA policiy using simple endpoint
+ ${auth}= Create List healthcheck zb!XztG34
+ ${postjson}= Get file ${CURDIR}/data/vCPE.policy.monitoring.input.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/policies data=${postjson} headers=${headers}
+ Log Received response from policy ${resp.text}
+ ${postjsonobject} To Json ${postjson}
+ Should Be Equal As Strings ${resp.status_code} 200
+ Dictionary Should Contain Key ${resp.json()['topology_template']['policies'][0]} onap.restart.tca
+ Dictionary Should Contain Key ${postjsonobject['topology_template']['policies'][0]} onap.restart.tca
+
RetrievePoliciesOfType
[Documentation] Retrieve all Policies Created for a specific Policy Type
${auth}= Create List healthcheck zb!XztG34