George Keishing | 4d9b7e1 | 2019-03-26 02:03:47 -0500 | [diff] [blame] | 1 | *** Settings *** |
George Keishing | 6a69d26 | 2019-04-03 03:45:27 -0500 | [diff] [blame] | 2 | Documentation Test BMC using https://github.com/DMTF/Redfish-Usecase-Checkers |
| 3 | ... DMTF tool. |
George Keishing | 4d9b7e1 | 2019-03-26 02:03:47 -0500 | [diff] [blame] | 4 | |
George Keishing | 6a69d26 | 2019-04-03 03:45:27 -0500 | [diff] [blame] | 5 | Library OperatingSystem |
| 6 | Library ../../lib/state.py |
| 7 | Resource ../../lib/dmtf_tools_utils.robot |
| 8 | Resource ../../lib/openbmc_ffdc.robot |
George Keishing | 4d9b7e1 | 2019-03-26 02:03:47 -0500 | [diff] [blame] | 9 | |
George Keishing | 6a69d26 | 2019-04-03 03:45:27 -0500 | [diff] [blame] | 10 | Test Setup Test Setup Execution |
| 11 | Test Teardown Test Teardown Execution |
George Keishing | 4d9b7e1 | 2019-03-26 02:03:47 -0500 | [diff] [blame] | 12 | |
| 13 | *** Variables *** |
| 14 | |
George Keishing | 6a69d26 | 2019-04-03 03:45:27 -0500 | [diff] [blame] | 15 | ${DEFAULT_PYTHON} python3 |
George Keishing | 4d9b7e1 | 2019-03-26 02:03:47 -0500 | [diff] [blame] | 16 | |
George Keishing | 6a69d26 | 2019-04-03 03:45:27 -0500 | [diff] [blame] | 17 | ${rsv_github_url} https://github.com/DMTF/Redfish-Usecase-Checkers.git |
| 18 | ${rsv_dir_path} Redfish-Usecase-Checkers |
George Keishing | 4d9b7e1 | 2019-03-26 02:03:47 -0500 | [diff] [blame] | 19 | |
George Keishing | 6a69d26 | 2019-04-03 03:45:27 -0500 | [diff] [blame] | 20 | ${command_account} ${DEFAULT_PYTHON} ${rsv_dir_path}${/}account_management/account_management.py |
| 21 | ... -r ${OPENBMC_HOST} -u ${OPENBMC_USERNAME} |
manashsarma | a053fb3 | 2020-06-08 08:43:32 -0500 | [diff] [blame] | 22 | ... -p ${OPENBMC_PASSWORD} -S Always -d ${EXECDIR}${/}logs${/} |
George Keishing | 6a69d26 | 2019-04-03 03:45:27 -0500 | [diff] [blame] | 23 | |
| 24 | ${command_power_control} ${DEFAULT_PYTHON} ${rsv_dir_path}${/}power_control/power_control.py |
| 25 | ... -r ${OPENBMC_HOST} -u ${OPENBMC_USERNAME} |
manashsarma | a053fb3 | 2020-06-08 08:43:32 -0500 | [diff] [blame] | 26 | ... -p ${OPENBMC_PASSWORD} -S Always |
George Keishing | 6a69d26 | 2019-04-03 03:45:27 -0500 | [diff] [blame] | 27 | |
| 28 | ${power_on_timeout} 15 mins |
| 29 | ${power_off_timeout} 15 mins |
| 30 | ${state_change_timeout} 3 mins |
George Keishing | 4d9b7e1 | 2019-03-26 02:03:47 -0500 | [diff] [blame] | 31 | |
| 32 | *** Test Case *** |
| 33 | |
| 34 | Test BMC Redfish Account Management |
| 35 | [Documentation] Check Account Management with a Redfish interface. |
| 36 | [Tags] Test_BMC_Redfish_Account_Management |
| 37 | |
manashsarma | a053fb3 | 2020-06-08 08:43:32 -0500 | [diff] [blame] | 38 | ${output}= Run DMTF Tool ${rsv_dir_path} ${command_account} check_error=1 |
George Keishing | 4d9b7e1 | 2019-03-26 02:03:47 -0500 | [diff] [blame] | 39 | |
| 40 | ${output}= Shell Cmd cat ${EXECDIR}${/}logs${/}results.json |
| 41 | Log ${output} |
| 42 | |
manashsarma | a053fb3 | 2020-06-08 08:43:32 -0500 | [diff] [blame] | 43 | ${json}= OperatingSystem.Get File ${EXECDIR}${/}logs${/}results.json |
| 44 | |
| 45 | ${object}= Evaluate json.loads('''${json}''') json |
| 46 | |
| 47 | ${result_list}= Set Variable ${object["TestResults"]} |
| 48 | |
| 49 | @{failed_tc_list}= Create List |
| 50 | |
| 51 | FOR ${result} IN @{result_list} |
| 52 | ${rc}= evaluate 'ErrorMessages'=='${result}' |
| 53 | ${num}= Run Keyword If ${rc} == False Set Variable ${result_list["${result}"]["fail"]} |
| 54 | Run Keyword If ${num} != None and ${num} > 0 Append To List ${failed_tc_list} ${result} |
| 55 | END |
| 56 | |
| 57 | Should Be Empty ${failed_tc_list} Failed test cases are ${failed_tc_list} |
| 58 | |
George Keishing | 6a69d26 | 2019-04-03 03:45:27 -0500 | [diff] [blame] | 59 | |
Peter D Phan | 1c5d325 | 2021-12-30 12:53:49 -0600 | [diff] [blame] | 60 | Test BMC Redfish Power Control Usecase |
| 61 | [Documentation] Power Control Usecase Test. |
George Keishing | e23afb5 | 2022-03-17 08:25:49 -0500 | [diff] [blame] | 62 | [Tags] Test_BMC_Redfish_Power_Control_Usecase |
George Keishing | 6a69d26 | 2019-04-03 03:45:27 -0500 | [diff] [blame] | 63 | |
Peter D Phan | 1c5d325 | 2021-12-30 12:53:49 -0600 | [diff] [blame] | 64 | DMTF Power |
George Keishing | 6a69d26 | 2019-04-03 03:45:27 -0500 | [diff] [blame] | 65 | |
| 66 | |
George Keishing | 4d9b7e1 | 2019-03-26 02:03:47 -0500 | [diff] [blame] | 67 | *** Keywords *** |
| 68 | |
| 69 | Test Setup Execution |
| 70 | [Documentation] Do test case setup tasks. |
| 71 | |
George Keishing | 6a69d26 | 2019-04-03 03:45:27 -0500 | [diff] [blame] | 72 | Printn |
George Keishing | 4d9b7e1 | 2019-03-26 02:03:47 -0500 | [diff] [blame] | 73 | Download DMTF Tool ${rsv_dir_path} ${rsv_github_url} |
| 74 | |
George Keishing | 6a69d26 | 2019-04-03 03:45:27 -0500 | [diff] [blame] | 75 | |
George Keishing | 4d9b7e1 | 2019-03-26 02:03:47 -0500 | [diff] [blame] | 76 | Test Teardown Execution |
| 77 | [Documentation] Do the post-test teardown. |
| 78 | |
George Keishing | 6a69d26 | 2019-04-03 03:45:27 -0500 | [diff] [blame] | 79 | Printn |
George Keishing | 4d9b7e1 | 2019-03-26 02:03:47 -0500 | [diff] [blame] | 80 | FFDC On Test Case Fail |
George Keishing | 6a69d26 | 2019-04-03 03:45:27 -0500 | [diff] [blame] | 81 | |
| 82 | |
Peter D Phan | 1c5d325 | 2021-12-30 12:53:49 -0600 | [diff] [blame] | 83 | DMTF Power |
George Keishing | 6a69d26 | 2019-04-03 03:45:27 -0500 | [diff] [blame] | 84 | [Documentation] Power the BMC machine on via DMTF tools. |
| 85 | |
Peter D Phan | 1c5d325 | 2021-12-30 12:53:49 -0600 | [diff] [blame] | 86 | Print Timen Doing "DMTF Power". |
George Keishing | 6a69d26 | 2019-04-03 03:45:27 -0500 | [diff] [blame] | 87 | |
Peter D Phan | 1c5d325 | 2021-12-30 12:53:49 -0600 | [diff] [blame] | 88 | Run DMTF Tool ${rsv_dir_path} ${command_power_control} |