summaryrefslogtreecommitdiffstats
path: root/cmso-robot/robot/resources/scheduler_requests
diff options
context:
space:
mode:
Diffstat (limited to 'cmso-robot/robot/resources/scheduler_requests')
-rw-r--r--cmso-robot/robot/resources/scheduler_requests/approval_requests.robot36
-rw-r--r--cmso-robot/robot/resources/scheduler_requests/create_schedule.robot49
2 files changed, 85 insertions, 0 deletions
diff --git a/cmso-robot/robot/resources/scheduler_requests/approval_requests.robot b/cmso-robot/robot/resources/scheduler_requests/approval_requests.robot
new file mode 100644
index 0000000..c971017
--- /dev/null
+++ b/cmso-robot/robot/resources/scheduler_requests/approval_requests.robot
@@ -0,0 +1,36 @@
+*** Settings ***
+Documentation Scheduler keywords
+
+Library StringTemplater
+Library UUID
+Library DateTime
+Library Collections
+
+Resource ../scheduler_common.robot
+Resource ../json_templater.robot
+
+*** Variables ****
+${TEMPLATES} robot/assets/templates/changemanagement
+${UTC} %Y-%m-%dT%H:%M:%SZ
+
+*** Keywords ***
+Wait For Pending Approval
+ [Documentation] Gets the schedule identified by the uuid and checks if it is in the Pending Approval state
+ [Arguments] ${uuid} ${status}=Pending Approval
+ ${resp}= Get Change Management auth schedules/${uuid}
+ ${json}= Catenate ${resp.json()}
+ Dictionary Should Contain Item ${resp.json()} status ${status}
+
+Send Tier2 Approval
+ [Documentation] Sends an approval post request for the given schedule using the UUID and User given and checks that request worked
+ [Arguments] ${uuid} ${user} ${status}
+ ${approval}= Create Dictionary approvalUserId=${user} approvalType=Tier 2 approvalStatus=${status}
+ ${resp}= Post Change Management auth schedules/${uuid}/approvals data=${approval}
+ Should Be Equal As Strings ${resp.status_code} 204
+
+
+Send Invalid Approval
+ [Arguments] ${uuid} ${user}
+ ${approval}= Create Dictionary approvalUserId=${user} approvalType=Tier 3 approvalStatus=Accepted
+ Run Keyword and Expect Error 400 Post Change Management auth schedules/${uuid}/approvals data=${approval}
+ \ No newline at end of file
diff --git a/cmso-robot/robot/resources/scheduler_requests/create_schedule.robot b/cmso-robot/robot/resources/scheduler_requests/create_schedule.robot
new file mode 100644
index 0000000..7264b05
--- /dev/null
+++ b/cmso-robot/robot/resources/scheduler_requests/create_schedule.robot
@@ -0,0 +1,49 @@
+*** Settings ***
+Documentation SCheduler tests
+
+Library StringTemplater
+Library UUID
+Library String
+Library DateTime
+Library Collections
+Library OperatingSystem
+Library JSONUtils
+
+Resource ../scheduler_common.robot
+Resource ../json_templater.robot
+
+*** Variables ****
+${VID_TEMPLATES} robot/assets/templates/changemanagement
+${UTC} %Y-%m-%dT%H:%M:%SZ
+
+*** Keywords ***
+Create Schedule
+ [Arguments] ${uuid} ${request_file} ${TEMPLATES} ${workflow}=Unknown ${minutesFromNow}=5
+ ${testid}= Catenate ${uuid}
+ ${testid}= Get Substring ${testid} -4
+ ${dict}= Create Dictionary serviceInstanceId=${uuid} parent_service_model_name=${uuid}
+ ${callbackData}= Fill JSON Template File ${VID_TEMPLATES}/VidCallbackData.json.template ${dict}
+ ${callbackDataString}= Json Escape ${callbackData}
+ ${map}= Create Dictionary uuid=${uuid} callbackUrl=${GLOBAL_VID_CALLBACK_URL} callbackData=${callbackDataString} testid=${testid} workflow=${workflow} userId=${GLOBAL_VID_USERID}
+ ${nodelist}= Split String ${NODES} ,
+ ${nn}= Catenate 1
+ # Support up to 4 ChangeWindows
+ : For ${i} in range 1 4
+ \ ${today}= Evaluate ((${i}-1)*1440)+${minutesFromNow}
+ \ ${tomorrow} Evaluate ${today}+1440
+ \ ${last_time} Evaluate ${today}+30
+ \ ${start_time}= Get Current Date UTC + ${today} minutes result_format=${UTC}
+ \ ${end_time}= Get Current Date UTC + ${tomorrow} minutes result_format=${UTC}
+ \ Set To Dictionary ${map} start_time${i}=${start_time} end_time${i}=${end_time}
+
+ : For ${vnf} in @{nodelist}
+ \ Set To Dictionary ${map} node${nn} ${vnf}
+ \ ${nn}= Evaluate ${nn}+1
+
+
+ ${data}= Fill JSON Template File ${TEMPLATES}/${request_file} ${map}
+ ${resp}= Post Change Management auth schedules/${uuid} data=${data}
+ [Return] ${resp}
+
+
+ \ No newline at end of file