blob: 129f2963914c161400925bbea84293705ef79f54 [file] [log] [blame]
Eric Debeau9045a1e2018-04-24 17:22:41 +00001*** Settings ***
Eric Debeauca1b9c82018-04-24 20:41:02 +00002Documentation The main interface for interacting with OOF: SNIRO and Homing Service
Eric Debeau9045a1e2018-04-24 17:22:41 +00003Library RequestsLibrary
Jerry Flood124bd572019-04-09 18:34:22 -04004Library UUID
DR695H910097e2019-05-08 13:55:32 -04005Library OperatingSystem
Jerry Flood124bd572019-04-09 18:34:22 -04006Library String
7Library DateTime
8Library Collections
DR695H7aca1a42019-06-03 17:08:34 -04009Library ONAPLibrary.JSON
Eric Debeau9045a1e2018-04-24 17:22:41 +000010Resource global_properties.robot
Jerry Flood124bd572019-04-09 18:34:22 -040011Resource json_templater.robot
Eric Debeau9045a1e2018-04-24 17:22:41 +000012
13*** Variables ***
Eric Debeauca1b9c82018-04-24 20:41:02 +000014${OOF_HOMING_HEALTH_CHECK_PATH} /v1/plans/healthcheck
15${OOF_SNIRO_HEALTH_CHECK_PATH} /api/oof/v1/healthcheck
Jerry Flood124bd572019-04-09 18:34:22 -040016${OOF_CMSO_HEALTH_CHECK_PATH} /cmso/v1/health?checkInterfaces=true
17
18${OOF_CMSO_TEMPLATE_FOLDER} robot/assets/templates/cmso
19${OOF_CMSO_UTC} %Y-%m-%dT%H:%M:%SZ
Ruoyu Yingc014e922019-04-11 02:31:44 +080020${OOF_HOMING_PLAN_FOLDER} robot/assets/templates/optf-has
vrvarma4ecc3a72019-04-29 12:13:45 -040021${OOF_OSDF_TEMPLATE_FOLDER} robot/assets/templates/optf-osdf
Eric Debeau9045a1e2018-04-24 17:22:41 +000022
Gary Wu251aa682018-07-30 15:22:20 -070023${OOF_HOMING_ENDPOINT} ${GLOBAL_OOF_SERVER_PROTOCOL}://${GLOBAL_INJECTED_OOF_HOMING_IP_ADDR}:${GLOBAL_OOF_HOMING_SERVER_PORT}
24${OOF_SNIRO_ENDPOINT} ${GLOBAL_OOF_SERVER_PROTOCOL}://${GLOBAL_INJECTED_OOF_SNIRO_IP_ADDR}:${GLOBAL_OOF_SNIRO_SERVER_PORT}
Jerry Flood0c3270c2018-11-01 12:46:55 -040025${OOF_CMSO_ENDPOINT} ${GLOBAL_OOF_CMSO_PROTOCOL}://${GLOBAL_INJECTED_OOF_CMSO_IP_ADDR}:${GLOBAL_OOF_CMSO_SERVER_PORT}
Eric Debeau9045a1e2018-04-24 17:22:41 +000026
Ruoyu Yingc014e922019-04-11 02:31:44 +080027${OOF_HOMING_AUTH} Basic YWRtaW4xOnBsYW4uMTU=
28
Eric Debeau9045a1e2018-04-24 17:22:41 +000029*** Keywords ***
Eric Debeauca1b9c82018-04-24 20:41:02 +000030Run OOF-Homing Health Check
31 [Documentation] Runs OOF-Homing Health check
32 ${resp}= Run OOF-Homing Get Request ${OOF_HOMING_HEALTH_CHECK_PATH}
Eric Debeau9045a1e2018-04-24 17:22:41 +000033 Should Be Equal As Integers ${resp.status_code} 200
34
Eric Debeauca1b9c82018-04-24 20:41:02 +000035Run OOF-Homing Get Request
36 [Documentation] Runs OOF-Homing Get request
Eric Debeau9045a1e2018-04-24 17:22:41 +000037 [Arguments] ${data_path}
Eric Debeauca1b9c82018-04-24 20:41:02 +000038 ${session}= Create Session session ${OOF_HOMING_ENDPOINT}
Eric Debeau9045a1e2018-04-24 17:22:41 +000039 ${resp}= Get Request session ${data_path}
40 Should Be Equal As Integers ${resp.status_code} 200
Eric Debeauca1b9c82018-04-24 20:41:02 +000041 Log Received response from OOF-Homing ${resp.text}
42 [Return] ${resp}
Jerry Flood124bd572019-04-09 18:34:22 -040043
Ruoyu Yingc014e922019-04-11 02:31:44 +080044RUN OOF-Homing SendPlanWithWrongVersion
45 [Documentation] It sends a POST request to conductor
46 ${session}= Create Session optf-cond ${OOF_HOMING_ENDPOINT}
47 ${data}= Get Binary File ${OOF_HOMING_PLAN_FOLDER}${/}plan_with_wrong_version.json
48 &{headers}= Create Dictionary Authorization=${OOF_HOMING_Auth} Content-Type=application/json Accept=application/json
49 ${resp}= Post Request optf-cond /v1/plans data=${data} headers=${headers}
50 Log *********************
51 Log response = ${resp}
52 Log body = ${resp.text}
DR695H315b7e72019-05-03 16:49:19 -040053 ${generatedPlanId}= Convert To String ${resp.json()['id']}
Ruoyu Yingc014e922019-04-11 02:31:44 +080054 Set Global Variable ${generatedPlanId}
55 Log generatedPlanId = ${generatedPlanId}
56 Should Be Equal As Integers ${resp.status_code} 201
57 Sleep 10s Wait Plan Resolution
58
Eric Debeauca1b9c82018-04-24 20:41:02 +000059Run OOF-SNIRO Health Check
60 [Documentation] Runs OOF-SNIRO Health check
61 ${resp}= Run OOF-SNIRO Get Request ${OOF_SNIRO_HEALTH_CHECK_PATH}
62 Should Be Equal As Integers ${resp.status_code} 200
63
64Run OOF-SNIRO Get Request
65 [Documentation] Runs OOF-SNIRO Get request
66 [Arguments] ${data_path}
67 ${session}= Create Session session ${OOF_SNIRO_ENDPOINT}
68 ${resp}= Get Request session ${data_path}
69 Should Be Equal As Integers ${resp.status_code} 200
70 Log Received response from OOF-SNIRO ${resp.text}
Eric Debeau9045a1e2018-04-24 17:22:41 +000071 [Return] ${resp}
Jerry Flood0c3270c2018-11-01 12:46:55 -040072
73
74Run OOF-CMSO Health Check
75 [Documentation] Runs OOF-CMSO Health check
76 ${resp}= Run OOF-CMSO Get Request ${OOF_CMSO_HEALTH_CHECK_PATH}
77 Should Be Equal As Integers ${resp.status_code} 200
78
79Run OOF-CMSO Get Request
80 [Documentation] Runs OOF-CMSO Get request
81 [Arguments] ${data_path}
82 ${auth}= Create List ${GLOBAL_OOF_CMSO_USERNAME} ${GLOBAL_OOF_CMSO_PASSWORD}
83 ${session}= Create Session session ${OOF_CMSO_ENDPOINT} auth=${auth}
84 ${resp}= Get Request session ${data_path}
85 Should Be Equal As Integers ${resp.status_code} 200
86 Log Received response from OOF-CMSO ${resp.text}
87 [Return] ${resp}
Jerry Flood124bd572019-04-09 18:34:22 -040088
89Run OOF-CMSO Post Scheduler
90 [Documentation] Runs a scheduler POST request
91 [Arguments] ${data_path} ${data}={}
92 ${auth}= Create List ${GLOBAL_OOF_CMSO_USERNAME} ${GLOBAL_OOF_CMSO_PASSWORD}
93 ${session}= Create Session session ${OOF_CMSO_ENDPOINT} auth=${auth}
94 ${headers}= Create Dictionary Accept=application/json Content-Type=application/json
95 ${resp}= Post Request session ${data_path} headers=${headers} data=${data}
96 Log Received response from scheduler ${resp.text}
97 [Return] ${resp}
98
99Run OOF-CMSO Future Schedule
100 [Documentation] Runs CMSO Future Schedule ETE test. One VNF, One Change Window
101 [Arguments] ${request_file}=OneVnfOneChangeWindow.json.template ${workflow}=Replace ${minutesFromNow}=3
102 ${uuid}= Generate UUID
103 ${resp}= OOF-CMSO Create Schedule ${uuid} ${request_file} workflow=${workflow} minutesFromNow=${minutesFromNow}
104 Should Be Equal as Strings ${resp.status_code} 202
105 Wait Until Keyword Succeeds 600s 30s OOF-CMSO Wait For Pending Approval ${uuid}
106 OOF-CMSO Send Tier2 Approval ${uuid} jf9860 Accepted
107 Wait Until Keyword Succeeds 600s 30s OOF-CMSO Wait for Schedule to Complete Completed ${uuid}
108
109
110OOF-CMSO Create Schedule
111 [Documentation] Creates a CMSO future schedule request for the passed template.
112 [Arguments] ${uuid} ${request_file} ${workflow} ${minutesFromNow}=5
113 ${testid}= Catenate ${uuid}
114 ${testid}= Get Substring ${testid} -4
115 ${dict}= Create Dictionary serviceInstanceId=${uuid} parent_service_model_name=${uuid}
116 ${map}= Create Dictionary uuid=${uuid} callbackUrl=http://localhost:8080 testid=${testid} workflow=${workflow} userId=oof@oof.onap.org
117 ${nodelist}= Create List node1 node2 node3 node4
118 ${nn}= Catenate 1
119 # Support up to 4 ChangeWindows
DR695H910097e2019-05-08 13:55:32 -0400120 :FOR ${i} IN RANGE 1 4
Jerry Flood124bd572019-04-09 18:34:22 -0400121 \ ${today}= Evaluate ((${i}-1)*1440)+${minutesFromNow}
122 \ ${tomorrow} Evaluate ${today}+1440
123 \ ${last_time} Evaluate ${today}+30
124 \ ${start_time}= Get Current Date UTC + ${today} minutes result_format=${OOF_CMSO_UTC}
125 \ ${end_time}= Get Current Date UTC + ${tomorrow} minutes result_format=${OOF_CMSO_UTC}
126 \ Set To Dictionary ${map} start_time${i}=${start_time} end_time${i}=${end_time}
127 ${requestList}= Create List
DR695H910097e2019-05-08 13:55:32 -0400128 :FOR ${vnf} IN @{nodelist}
Jerry Flood124bd572019-04-09 18:34:22 -0400129 \ Set To Dictionary ${map} node${nn} ${vnf}
130 \ ${nn}= Evaluate ${nn}+1
131 \ Set To DIctionary ${dict} vnfName=${vnf}
132 \ ${requestInfo}= Fill JSON Template File ${OOF_CMSO_TEMPLATE_FOLDER}/VidCallbackData.json.template ${dict}
133 \ Append To List ${requestList} ${requestInfo}
134 ${callBackDataMap}= Create Dictionary requestType=Update requestDetails=${requestList}
135 ${callbackDataString}= OOF-CMSO Json Escape ${callbackDataMap}
136 Set To Dictionary ${map} callbackData=${callbackDataString}
137 ${data}= Fill JSON Template File ${OOF_CMSO_TEMPLATE_FOLDER}/${request_file} ${map}
138 ${resp}= Run OOF-CMSO Post Scheduler cmso/v1/schedules/${uuid} data=${data}
139 [Return] ${resp}
140
141
142
143OOF-CMSO Wait For Pending Approval
144 [Documentation] Gets the schedule identified by the uuid and checks if it is in the Pending Approval state
145 [Arguments] ${uuid} ${status}=Pending Approval
146 ${resp}= Run OOF-CMSO Get Request cmso/v1/schedules/${uuid}
147 ${json}= Catenate ${resp.json()}
148 Dictionary Should Contain Item ${resp.json()} status ${status}
149
150OOF-CMSO Send Tier2 Approval
151 [Documentation] Sends an approval post request for the given schedule using the UUID and User given and checks that request worked
152 [Arguments] ${uuid} ${user} ${status}
153 ${approval}= Create Dictionary approvalUserId=${user} approvalType=Tier 2 approvalStatus=${status}
154 ${resp}= Run OOF-CMSO Post Scheduler cmso/v1/schedules/${uuid}/approvals data=${approval}
155 Should Be Equal As Strings ${resp.status_code} 204
156
157OOF-CMSO Wait for Schedule to Complete
158 [Arguments] ${status} ${uuid}
159 ${resp}= Run OOF-CMSO Get Request cmso/v1/schedules/${uuid}
160 Dictionary Should Contain Item ${resp.json()} status Completed
161
162OOF-CMSO Json Escape
163 [Arguments] ${json}
164 ${json_string}= Evaluate json.dumps(${json}) json
165 ${escaped}= Replace String ${json_string} " \\"
Ruoyu Yingc014e922019-04-11 02:31:44 +0800166 [Return] ${escaped}
vrvarma4ecc3a72019-04-29 12:13:45 -0400167
168Run OOF-OSDF Post Request
169 [Documentation] Runs a scheduler POST request
DR695H910097e2019-05-08 13:55:32 -0400170 [Arguments] ${data_path} ${auth} ${data}={}
vrvarma4ecc3a72019-04-29 12:13:45 -0400171
172 ${session}= Create Session session ${OOF_OSDF_ENDPOINT} auth=${auth}
173 ${headers}= Create Dictionary Accept=application/json Content-Type=application/json
174 ${resp}= Post Request session ${data_path} headers=${headers} data=${data}
175 Log Received response from osdf ${resp.text}
176 [Return] ${resp}
177
178
179Run OOF-OSDF Post Homing
180 [Documentation] Runs a osdf homing request
181 ${auth}= Create List ${GLOBAL_OOF_OSDF_USERNAME} ${GLOBAL_OOF_OSDF_PASSWORD}
182 ${data}= Get Binary File ${OOF_OSDF_TEMPLATE_FOLDER}${/}placement_request.json
DR695H910097e2019-05-08 13:55:32 -0400183 ${resp}= Run OOF-OSDF Post Request /api/oof/placement/v1 auth=${auth} data=${data}
vrvarma4ecc3a72019-04-29 12:13:45 -0400184 Should Be Equal As Strings ${resp.status_code} 204
185
186Run OOF-OSDF Post PCI-OPT
187 [Documentation] Runs a osdf PCI-OPT request
188 ${auth}= Create List ${GLOBAL_OOF_PCI_USERNAME} ${GLOBAL_OOF_PCI_PASSWORD}
189 ${data}= Get Binary File ${OOF_OSDF_TEMPLATE_FOLDER}${/}pci-opt-request.json
DR695H910097e2019-05-08 13:55:32 -0400190 ${resp}= Run OOF-OSDF Post Request /api/oof/pci/v1 auth=${auth} data=${data}
vrvarma4ecc3a72019-04-29 12:13:45 -0400191 Should Be Equal As Strings ${resp.status_code} 204