Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 1 | *** Settings *** |
George Keishing | 8553666 | 2017-03-03 10:49:58 -0600 | [diff] [blame] | 2 | Documentation Verify REST services Get/Put/Post/Delete. |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 3 | |
George Keishing | 97651c7 | 2016-10-04 00:44:15 -0500 | [diff] [blame] | 4 | Resource ../lib/rest_client.robot |
George Keishing | d55a4be | 2016-08-26 03:28:17 -0500 | [diff] [blame] | 5 | Resource ../lib/openbmc_ffdc.robot |
George Keishing | 7230bbc | 2016-12-14 07:02:48 -0600 | [diff] [blame] | 6 | Resource ../lib/resource.txt |
Sivas SRR | a13eb20 | 2017-11-03 10:01:56 -0500 | [diff] [blame] | 7 | Resource ../lib/utils.robot |
George Keishing | 8553666 | 2017-03-03 10:49:58 -0600 | [diff] [blame] | 8 | Library Collections |
Sivas SRR | a13eb20 | 2017-11-03 10:01:56 -0500 | [diff] [blame] | 9 | Suite Setup Run Keyword And Ignore Error Check BMC Performance |
Gunnar Mills | eac1af2 | 2016-11-14 15:30:09 -0600 | [diff] [blame] | 10 | Test Teardown FFDC On Test Case Fail |
Sivas SRR | a13eb20 | 2017-11-03 10:01:56 -0500 | [diff] [blame] | 11 | Suite Teardown Run Keyword And Ignore Error Check BMC Performance |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 12 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 13 | *** Variables *** |
| 14 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 15 | *** Test Cases *** |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 16 | |
George Keishing | 89f7c1f | 2017-05-03 16:08:37 -0500 | [diff] [blame] | 17 | REST Login Session To BMC |
| 18 | [Documentation] Test REST session log-in. |
| 19 | [Tags] REST_Login_Session_To_BMC |
| 20 | |
| 21 | Initialize OpenBMC |
| 22 | # Raw GET REST operation to verify session is established. |
| 23 | ${resp}= Get Request openbmc /xyz/openbmc_project/ |
| 24 | Should Be Equal As Strings ${resp.status_code} ${HTTP_OK} |
| 25 | |
| 26 | |
| 27 | REST Logout Session To BMC |
| 28 | [Documentation] Test REST session log-out. |
| 29 | [Tags] REST_Logout_Session_To_BMC |
| 30 | |
| 31 | Initialize OpenBMC |
| 32 | Log Out OpenBMC |
| 33 | # Raw GET REST operation to verify session is logout. |
| 34 | ${resp}= Get Request openbmc /xyz/openbmc_project/ |
| 35 | Should Be Equal As Strings ${resp.status_code} ${HTTP_UNAUTHORIZED} |
| 36 | |
| 37 | |
George Keishing | 6715f31 | 2017-05-10 03:22:40 -0500 | [diff] [blame] | 38 | REST Delete All Sessions And Expect Error |
| 39 | [Documentation] Test REST empty cache using delete operation. |
| 40 | [Tags] REST_Delete_All_Sessions_And_Expect_Error |
| 41 | |
| 42 | # Throws exception: |
| 43 | # Non-existing index or alias 'openbmc'. |
| 44 | |
| 45 | Initialize OpenBMC |
| 46 | Delete All Sessions |
| 47 | # Raw GET REST operation and expect exception error. |
| 48 | Run Keyword And Expect Error |
| 49 | ... Non-existing index or alias 'openbmc'. |
| 50 | ... Get Request openbmc /xyz/openbmc_project/ |
| 51 | |
| 52 | |
George Keishing | 3b1f277 | 2017-07-31 09:44:45 -0500 | [diff] [blame] | 53 | Multiple Requests On BMC Using Single REST Session |
| 54 | [Documentation] Trigger multiple REST operations using an active |
| 55 | ... connection session. |
| 56 | [Tags] Multiple_Requests_On_BMC_Using_Single_REST_Session |
| 57 | |
| 58 | Initialize OpenBMC |
| 59 | |
| 60 | # Session object "openbmc". |
| 61 | ${resp}= Get Request openbmc /xyz/openbmc_project/state/ |
| 62 | Should Be Equal As Strings ${resp.status_code} ${HTTP_OK} |
| 63 | |
| 64 | ${resp}= Get Request openbmc /xyz/openbmc_project/software/enumerate |
| 65 | Should Be Equal As Strings ${resp.status_code} ${HTTP_OK} |
| 66 | |
| 67 | |
George Keishing | 6715f31 | 2017-05-10 03:22:40 -0500 | [diff] [blame] | 68 | Verify REST JSON Data On Success |
| 69 | [Documentation] Verify JSON data success response messages. |
| 70 | [Tags] Verify_REST_JSON_Data_On_Success |
| 71 | # Example: |
| 72 | # Response code:200, Content:{ |
| 73 | # "data": [ |
| 74 | # "/xyz/openbmc_project/sensors", |
| 75 | # "/xyz/openbmc_project/inventory", |
| 76 | # "/xyz/openbmc_project/software", |
| 77 | # "/xyz/openbmc_project/object_mapper", |
| 78 | # "/xyz/openbmc_project/logging" |
| 79 | # ], |
| 80 | # "message": "200 OK", |
| 81 | # "status": "ok" |
| 82 | # } |
| 83 | |
| 84 | ${resp}= OpenBMC Get Request /xyz/openbmc_project/ |
| 85 | ${jsondata}= To JSON ${resp.content} |
| 86 | Should Not Be Empty ${jsondata["data"]} |
| 87 | Should Be Equal As Strings ${jsondata["message"]} 200 OK |
| 88 | Should Be Equal As Strings ${jsondata["status"]} ok |
| 89 | |
| 90 | |
| 91 | Verify REST JSON Data On Failure |
| 92 | [Documentation] Verify JSON data failure response messages. |
| 93 | [Tags] Verify_REST_JSON_Data_On_Failure |
| 94 | # Example: |
| 95 | # Response code:404, Content:{ |
| 96 | # "data": { |
| 97 | # "description": "org.freedesktop.DBus.Error.FileNotFound: path or object not found: /xyz/idont/exist" |
| 98 | # }, |
| 99 | # "message": "404 Not Found", |
| 100 | # "status": "error" |
| 101 | # } |
| 102 | |
| 103 | ${resp}= OpenBMC Get Request /xyz/idont/exist/ |
| 104 | ${jsondata}= To JSON ${resp.content} |
| 105 | Should Be Equal As Strings |
| 106 | ... ${jsondata["data"]["description"]} org.freedesktop.DBus.Error.FileNotFound: path or object not found: /xyz/idont/exist |
| 107 | Should Be Equal As Strings ${jsondata["message"]} 404 Not Found |
| 108 | Should Be Equal As Strings ${jsondata["status"]} error |
| 109 | |
| 110 | |
George Keishing | adefa26 | 2017-07-08 12:54:06 -0500 | [diff] [blame] | 111 | Verify REST Get Message JSON Compliant |
| 112 | [Documentation] Verify REST "GET" message is JSON format compliant. |
| 113 | [Tags] Verify_REST_Get_Message_JSON_Compliant |
| 114 | # For testing if the REST message is JSON format compliant using a |
| 115 | # generic BMC state path /xyz/openbmc_project/state object and path |
| 116 | # walking through to ensure the parent object, trailing slash and |
| 117 | # attribute message response are intact. |
| 118 | |
| 119 | # Object attribute data. |
| 120 | # Example: |
| 121 | # Response code:200, Content:{ |
| 122 | # "data": { |
| 123 | # "CurrentBMCState": "xyz.openbmc_project.State.BMC.BMCState.Ready", |
| 124 | # "RequestedBMCTransition": "xyz.openbmc_project.State.BMC.Transition.None" |
| 125 | # }, |
| 126 | # "message": "200 OK", |
| 127 | # "status": "ok" |
| 128 | # } |
| 129 | |
| 130 | Verify JSON Response Content |
| 131 | ... /xyz/openbmc_project/state/bmc0 DATA_NOT_EMPTY |
| 132 | |
| 133 | # Object trailing slash attribute data. |
| 134 | # Example: |
| 135 | # Response code:200, Content:{ |
| 136 | # "data": [], |
| 137 | # "message": "200 OK", |
| 138 | # "status": "ok" |
| 139 | # } |
| 140 | |
| 141 | Verify JSON Response Content /xyz/openbmc_project/state/bmc0/ |
| 142 | |
| 143 | # Attribute data. |
| 144 | # Example: |
| 145 | # Response code:200, Content:{ |
| 146 | # "data": "xyz.openbmc_project.State.BMC.BMCState.Ready", |
| 147 | # "message": "200 OK", |
| 148 | # "status": "ok" |
| 149 | # } |
| 150 | |
| 151 | Verify JSON Response Content |
| 152 | ... /xyz/openbmc_project/state/bmc0/attr/CurrentBMCState DATA_NOT_EMPTY |
| 153 | |
| 154 | |
| 155 | Verify REST Post Message JSON Compliant |
| 156 | [Documentation] Verify REST "POST" message is JSON format compliant. |
| 157 | [Tags] Verify_REST_Post_Message_JSON_Compliant |
| 158 | # Example: |
| 159 | # Response code:200, Content:{ |
| 160 | # "data": null, |
| 161 | # "message": "200 OK", |
| 162 | # "status": "ok" |
| 163 | # } |
| 164 | |
| 165 | # Generate 1KB file size |
| 166 | Run dd if=/dev/zero of=dummyfile bs=1 count=0 seek=1KB |
| 167 | OperatingSystem.File Should Exist dummyfile |
| 168 | |
| 169 | # Get the content of the file and upload to BMC |
| 170 | ${image_data}= OperatingSystem.Get Binary File dummyfile |
| 171 | |
| 172 | # Get REST session to BMC |
| 173 | Initialize OpenBMC |
| 174 | |
| 175 | # Create the REST payload headers and data |
| 176 | ${data}= Create Dictionary data ${image_data} |
| 177 | ${headers}= Create Dictionary Content-Type=application/octet-stream |
| 178 | ... Accept=application/octet-stream |
| 179 | Set To Dictionary ${data} headers ${headers} |
| 180 | |
| 181 | ${resp}= Post Request openbmc /upload/image &{data} |
| 182 | Should Be Equal As Strings ${resp.status_code} ${HTTP_OK} |
| 183 | ${jsondata}= To JSON ${resp.content} |
| 184 | Should Be Equal ${jsondata["data"]} ${None} |
| 185 | Should Be Equal As Strings ${jsondata["message"]} 200 OK |
| 186 | Should Be Equal As Strings ${jsondata["status"]} ok |
| 187 | |
| 188 | # Cleanup uploaded file. |
| 189 | BMC Execute Command rm -rf /tmp/images/* |
| 190 | |
| 191 | |
| 192 | Verify REST Put Message JSON Compliant |
| 193 | [Documentation] Verify REST "PUT" message is JSON format compliant. |
| 194 | [Tags] REST_Put_Message_JSON_Format_Compliance_Test |
| 195 | # Example: |
| 196 | # Response code:200, Content:{ |
| 197 | # "data": null, |
| 198 | # "message": "200 OK", |
| 199 | # "status": "ok" |
| 200 | # } |
| 201 | |
| 202 | ${dict_data}= Create Dictionary data=${HOST_POWEROFF_TRANS} |
| 203 | ${resp}= Openbmc Put Request |
| 204 | ... ${HOST_STATE_URI}/attr/RequestedHostTransition data=${dict_data} |
| 205 | Should Be Equal As Strings ${resp.status_code} ${HTTP_OK} |
| 206 | ${jsondata}= To JSON ${resp.content} |
| 207 | Should Be Equal ${jsondata["data"]} ${None} |
| 208 | Should Be Equal As Strings ${jsondata["message"]} 200 OK |
| 209 | Should Be Equal As Strings ${jsondata["status"]} ok |
| 210 | # Intention is not to test poweroff but to check the REST operation |
| 211 | # sink time allowing to kick poweroff. |
| 212 | Sleep 10s |
| 213 | |
| 214 | |
George Keishing | e6594f2 | 2017-07-06 12:10:52 -0500 | [diff] [blame] | 215 | Check Response Codes HTTP_UNSUPPORTED_MEDIA_TYPE |
| 216 | [Documentation] REST "Post" response status test for |
| 217 | ... HTTP_UNSUPPORTED_MEDIA_TYPE. |
| 218 | [Tags] Check_Response_Codes_415 |
| 219 | |
| 220 | # Example: |
| 221 | # Response code:415, Content:{ |
| 222 | # "data": { |
| 223 | # "description": "Expecting content type 'application/octet-stream', got 'application/json'" |
| 224 | # }, |
| 225 | # "message": "415 Unsupported Media Type", |
| 226 | # "status": "error" |
| 227 | # } |
| 228 | |
| 229 | Initialize OpenBMC |
| 230 | |
| 231 | # Create the REST payload headers and EMPTY data |
| 232 | ${data}= Create Dictionary data ${EMPTY} |
| 233 | ${headers}= Create Dictionary Content-Type=application/json |
| 234 | Set To Dictionary ${data} headers ${headers} |
| 235 | |
| 236 | ${resp}= Post Request openbmc /upload/image &{data} |
| 237 | Should Be Equal As Strings |
| 238 | ... ${resp.status_code} ${HTTP_UNSUPPORTED_MEDIA_TYPE} |
| 239 | |
| 240 | ${jsondata}= To JSON ${resp.content} |
| 241 | Should Be Equal As Strings ${jsondata["data"]["description"]} |
| 242 | ... Expecting content type 'application/octet-stream', got 'application/json' |
| 243 | Should Be Equal As Strings |
| 244 | ... ${jsondata["message"]} 415 Unsupported Media Type |
| 245 | Should Be Equal As Strings ${jsondata["status"]} error |
| 246 | |
| 247 | |
George Keishing | 8553666 | 2017-03-03 10:49:58 -0600 | [diff] [blame] | 248 | Get Response Codes |
| 249 | [Documentation] REST "Get" response status test. |
| 250 | #-------------------------------------------------------------------- |
| 251 | # Expect status URL Path |
| 252 | #-------------------------------------------------------------------- |
| 253 | ${HTTP_OK} / |
| 254 | ${HTTP_OK} /xyz/ |
| 255 | ${HTTP_OK} /xyz/openbmc_project/ |
George Keishing | 5cb75f8 | 2017-12-11 08:41:34 -0600 | [diff] [blame] | 256 | ${HTTP_OK} /xyz/openbmc_project/state/enumerate |
George Keishing | 8553666 | 2017-03-03 10:49:58 -0600 | [diff] [blame] | 257 | ${HTTP_NOT_FOUND} /i/dont/exist/ |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 258 | |
George Keishing | 8553666 | 2017-03-03 10:49:58 -0600 | [diff] [blame] | 259 | [Tags] Get_Response_Codes |
| 260 | [Template] Execute Get And Check Response |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 261 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 262 | |
George Keishing | 8553666 | 2017-03-03 10:49:58 -0600 | [diff] [blame] | 263 | Get Data |
| 264 | [Documentation] REST "Get" request url and expect the |
| 265 | ... response OK and data non empty. |
| 266 | #-------------------------------------------------------------------- |
| 267 | # URL Path |
| 268 | #-------------------------------------------------------------------- |
| 269 | /xyz/openbmc_project/ |
| 270 | /xyz/openbmc_project/list |
George Keishing | 5cb75f8 | 2017-12-11 08:41:34 -0600 | [diff] [blame] | 271 | /xyz/openbmc_project/state/enumerate |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 272 | |
George Keishing | 8553666 | 2017-03-03 10:49:58 -0600 | [diff] [blame] | 273 | [Tags] Get_Data |
| 274 | [Template] Execute Get And Check Data |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 275 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 276 | |
George Keishing | 8553666 | 2017-03-03 10:49:58 -0600 | [diff] [blame] | 277 | Get Data Validation |
| 278 | [Documentation] REST "Get" request url and expect the |
| 279 | ... pre-defined string in response data. |
| 280 | #-------------------------------------------------------------------- |
| 281 | # URL Path Expect Data |
| 282 | #-------------------------------------------------------------------- |
| 283 | /xyz/openbmc_project/ /xyz/openbmc_project/logging |
| 284 | /i/dont/exist/ path or object not found: /i/dont/exist |
| 285 | |
| 286 | [Tags] Get_Data_Validation |
| 287 | [Template] Execute Get And Verify Data |
| 288 | |
| 289 | |
| 290 | Put Response Codes |
| 291 | [Documentation] REST "Put" request url and expect the REST pre-defined |
| 292 | ... codes. |
| 293 | #-------------------------------------------------------------------- |
| 294 | # Expect status URL Path |
| 295 | #-------------------------------------------------------------------- |
| 296 | ${HTTP_METHOD_NOT_ALLOWED} / |
| 297 | ${HTTP_METHOD_NOT_ALLOWED} /xyz/ |
| 298 | ${HTTP_METHOD_NOT_ALLOWED} /i/dont/exist/ |
George Keishing | 8553666 | 2017-03-03 10:49:58 -0600 | [diff] [blame] | 299 | |
| 300 | [Tags] Put_Response_Codes |
| 301 | [Template] Execute Put And Check Response |
| 302 | |
| 303 | |
| 304 | Put Data Validation |
| 305 | [Documentation] REST "Put" request url and expect success. |
| 306 | #-------------------------------------------------------------------- |
| 307 | # URL Path Parm Data |
| 308 | #-------------------------------------------------------------------- |
| 309 | /xyz/openbmc_project/state/host0/attr/RequestedHostTransition xyz.openbmc_project.State.Host.Transition.Off |
| 310 | |
| 311 | [Tags] Put_Data_Validation |
| 312 | [Template] Execute Put And Expect Success |
| 313 | |
| 314 | |
| 315 | Post Response Code |
| 316 | [Documentation] REST Post request url and expect the |
| 317 | ... REST response code pre define. |
| 318 | #-------------------------------------------------------------------- |
| 319 | # Expect status URL Path |
| 320 | #-------------------------------------------------------------------- |
| 321 | ${HTTP_METHOD_NOT_ALLOWED} / |
| 322 | ${HTTP_METHOD_NOT_ALLOWED} /xyz/ |
| 323 | ${HTTP_METHOD_NOT_ALLOWED} /i/dont/exist/ |
George Keishing | 5cb75f8 | 2017-12-11 08:41:34 -0600 | [diff] [blame] | 324 | ${HTTP_METHOD_NOT_ALLOWED} /xyz/login |
George Keishing | 8553666 | 2017-03-03 10:49:58 -0600 | [diff] [blame] | 325 | |
| 326 | [Tags] Post_Response_Codes |
| 327 | [Template] Execute Post And Check Response |
| 328 | |
| 329 | |
| 330 | Delete Response Code |
| 331 | [Documentation] REST "Delete" request url and expect the |
| 332 | ... REST response code pre define. |
| 333 | #-------------------------------------------------------------------- |
| 334 | # Expect status URL Path |
| 335 | #-------------------------------------------------------------------- |
| 336 | ${HTTP_METHOD_NOT_ALLOWED} / |
| 337 | ${HTTP_METHOD_NOT_ALLOWED} /xyz/ |
| 338 | ${HTTP_METHOD_NOT_ALLOWED} /xyz/nothere/ |
George Keishing | 5cb75f8 | 2017-12-11 08:41:34 -0600 | [diff] [blame] | 339 | ${HTTP_METHOD_NOT_ALLOWED} /xyz/openbmc_project/state/ |
George Keishing | 8553666 | 2017-03-03 10:49:58 -0600 | [diff] [blame] | 340 | |
| 341 | [Tags] Delete_Response_Codes |
| 342 | [Template] Execute Delete And Check Response |
| 343 | |
Gunnar Mills | 56b3289 | 2016-11-14 13:56:17 -0600 | [diff] [blame] | 344 | |
Gunnar Mills | 7c8923f | 2016-12-12 21:19:52 -0600 | [diff] [blame] | 345 | *** Keywords *** |
George Keishing | 8553666 | 2017-03-03 10:49:58 -0600 | [diff] [blame] | 346 | |
| 347 | Execute Get And Check Response |
| 348 | [Documentation] Request "Get" url path and expect REST response code. |
| 349 | [Arguments] ${expected_response_code} ${url_path} |
| 350 | # Description of arguments: |
| 351 | # expected_response_code Expected REST status codes. |
| 352 | # url_path URL path. |
| 353 | ${resp}= Openbmc Get Request ${url_path} |
| 354 | Should Be Equal As Strings ${resp.status_code} ${expected_response_code} |
| 355 | |
| 356 | Execute Get And Check Data |
| 357 | [Documentation] Request "Get" url path and expect non empty data. |
| 358 | [Arguments] ${url_path} |
| 359 | # Description of arguments: |
| 360 | # url_path URL path. |
| 361 | ${resp}= Openbmc Get Request ${url_path} |
| 362 | Should Be Equal As Strings ${resp.status_code} ${HTTP_OK} |
| 363 | ${jsondata}= To JSON ${resp.content} |
| 364 | Should Not Be Empty ${jsondata["data"]} |
| 365 | |
| 366 | Execute Get And Verify Data |
| 367 | [Documentation] Request "Get" url path and verify data. |
| 368 | [Arguments] ${url_path} ${expected_response_code} |
| 369 | # Description of arguments: |
| 370 | # expected_response_code Expected REST status codes. |
| 371 | # url_path URL path. |
| 372 | ${resp}= Openbmc Get Request ${url_path} |
| 373 | ${jsondata}= To JSON ${resp.content} |
| 374 | Run Keyword If '${resp.status_code}' == '${HTTP_OK}' |
| 375 | ... Should Contain ${jsondata["data"]} ${expected_response_code} |
| 376 | ... ELSE |
| 377 | ... Should Contain ${jsondata["data"]["description"]} ${expected_response_code} |
| 378 | |
| 379 | Execute Put And Check Response |
| 380 | [Documentation] Request "Put" url path and expect REST response code. |
| 381 | [Arguments] ${expected_response_code} ${url_path} |
| 382 | # Description of arguments: |
| 383 | # expected_response_code Expected REST status codes. |
| 384 | # url_path URL path. |
| 385 | ${resp}= Openbmc Put Request ${url_path} |
| 386 | Should Be Equal As Strings ${resp.status_code} ${expected_response_code} |
| 387 | |
| 388 | Execute Put And Expect Success |
| 389 | [Documentation] Request "Put" on url path. |
| 390 | [Arguments] ${url_path} ${parm} |
| 391 | # Description of arguments: |
| 392 | # url_path URL path. |
| 393 | # parm Value/string to be set. |
| 394 | # expected_response_code Expected REST status codes. |
| 395 | ${parmDict}= Create Dictionary data=${parm} |
| 396 | ${resp}= Openbmc Put Request ${url_path} data=${parmDict} |
| 397 | Should Be Equal As Strings ${resp.status_code} ${HTTP_OK} |
| 398 | |
| 399 | Execute Post And Check Response |
| 400 | [Documentation] Request Post url path and expect REST response code. |
| 401 | [Arguments] ${expected_response_code} ${url_path} |
| 402 | # Description of arguments: |
| 403 | # expected_response_code Expected REST status codes. |
| 404 | # url_path URL path. |
| 405 | ${resp}= Openbmc Post Request ${url_path} |
| 406 | Should Be Equal As Strings ${resp.status_code} ${expected_response_code} |
| 407 | |
| 408 | Execute Post And Check Data |
| 409 | [Arguments] ${url_path} ${parm} |
| 410 | [Documentation] Request Post on url path and expected non empty data. |
| 411 | # Description of arguments: |
| 412 | # url_path URL path. |
George Keishing | 4c02e62 | 2017-04-17 07:57:10 -0500 | [diff] [blame] | 413 | ${data}= Create Dictionary data=@{parm} |
George Keishing | 8553666 | 2017-03-03 10:49:58 -0600 | [diff] [blame] | 414 | ${resp}= Openbmc Post Request ${url_path} data=${data} |
| 415 | Should Be Equal As Strings ${resp.status_code} ${HTTP_OK} |
| 416 | ${jsondata}= To JSON ${resp.content} |
| 417 | Should Not Be Empty ${jsondata["data"]} |
| 418 | |
| 419 | Execute Delete And Check Response |
| 420 | [Documentation] Request "Delete" url path and expected REST response code. |
| 421 | [Arguments] ${expected_response_code} ${url_path} |
| 422 | # Description of arguments: |
| 423 | # expected_response_code Expected REST status codes. |
| 424 | # url_path URL path. |
George Keishing | 4c02e62 | 2017-04-17 07:57:10 -0500 | [diff] [blame] | 425 | ${data}= Create Dictionary data=@{EMPTY} |
| 426 | ${resp}= Openbmc Delete Request ${url_path} data=${data} |
George Keishing | 8553666 | 2017-03-03 10:49:58 -0600 | [diff] [blame] | 427 | Should Be Equal As Strings ${resp.status_code} ${expected_response_code} |
George Keishing | adefa26 | 2017-07-08 12:54:06 -0500 | [diff] [blame] | 428 | |
| 429 | Verify JSON Response Content |
| 430 | [Documentation] Verify JSON response data is intact. |
| 431 | [Arguments] ${url_path} ${data_empty}=${EMPTY} |
| 432 | |
| 433 | # Description of argument(s): |
| 434 | # url_path URL path. |
| 435 | # data_empty JSON data element. |
| 436 | |
| 437 | ${resp}= OpenBMC Get Request ${url_path} |
| 438 | ${jsondata}= To JSON ${resp.content} |
| 439 | Run Keyword If '${data_empty}' == '${EMPTY}' |
| 440 | ... Should Be Empty ${jsondata["data"]} |
| 441 | ... ELSE |
| 442 | ... Should Not Be Empty ${jsondata["data"]} |
| 443 | Should Be Equal As Strings ${jsondata["message"]} 200 OK |
| 444 | Should Be Equal As Strings ${jsondata["status"]} ok |