From e6c3d284755488212e993835e4fcb5d4230a2bdb Mon Sep 17 00:00:00 2001 From: Brian Freeman Date: Mon, 30 Sep 2019 14:20:02 -0500 Subject: Add repush policy Add Undeploy before push Fix RESOURCE_ID in old template Issue-ID: INT-1272 Change-Id: If04e692f7927a1170b2d686a4f9e7b39a400973b Signed-off-by: Brian Freeman --- robot/resources/policy_interface.robot | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'robot/resources') diff --git a/robot/resources/policy_interface.robot b/robot/resources/policy_interface.robot index 96867648..d3759193 100644 --- a/robot/resources/policy_interface.robot +++ b/robot/resources/policy_interface.robot @@ -116,6 +116,17 @@ Run Policy Pap Post Request Log Received response from policy ${resp.text} [Return] ${resp} +Undeploy Policy + [Documentation] Runs Policy PAP Undeploy a Policy from PDP Groups + [Arguments] ${policy_name} + ${auth}= Create List ${POLICY_HEALTHCHECK_USERNAME} ${POLICY_HEALTHCHECK_PASSWORD} + ${session}= Create Session policy ${GLOBAL_POLICY_SERVER_PROTOCOL}://${POLICY_PAP_IP}:${GLOBAL_POLICY_HEALTHCHECK_PORT} auth=${auth} + Log Creating session ${GLOBAL_POLICY_SERVER_PROTOCOL}://${POLICY_PAP_IP}:${GLOBAL_POLICY_HEALTHCHECK_PORT} + ${headers}= Create Dictionary Accept=application/json Content-Type=application/json + ${resp}= Delete Request policy /policy/pap/v1/pdps/policies/${policy_name} headers=${headers} + Log Received response from policy ${resp.text} + Should Be Equal As Strings ${resp.status_code} 200 + Run Policy Delete Request [Documentation] Runs Policy Delete request -- cgit 1.2.3-korg