Sridevi Ramesh | 1495bc4 | 2020-02-04 03:13:33 -0600 | [diff] [blame] | 1 | *** Settings *** |
| 2 | |
| 3 | Documentation Module to test PLDM BIOS commands. |
| 4 | |
| 5 | Library Collections |
| 6 | Library String |
| 7 | Library ../lib/pldm_utils.py |
| 8 | Variables ../data/pldm_variables.py |
| 9 | Resource ../lib/openbmc_ffdc.robot |
| 10 | |
| 11 | Test Setup Printn |
| 12 | Test Teardown FFDC On Test Case Fail |
Sridevi Ramesh | 2ab3d38 | 2021-03-29 04:16:01 -0500 | [diff] [blame] | 13 | Suite Setup PLDM BIOS Suite Setup |
Sridevi Ramesh | 1495bc4 | 2020-02-04 03:13:33 -0600 | [diff] [blame] | 14 | Suite Teardown PLDM BIOS Suite Cleanup |
| 15 | |
| 16 | *** Test Cases *** |
| 17 | |
| 18 | Verify GetDateTime |
Sridevi Ramesh | 2ab3d38 | 2021-03-29 04:16:01 -0500 | [diff] [blame] | 19 | |
Sridevi Ramesh | 1495bc4 | 2020-02-04 03:13:33 -0600 | [diff] [blame] | 20 | [Documentation] Verify host date & time. |
| 21 | [Tags] Verify_GetDateTime |
| 22 | |
| 23 | # Example output: |
Sridevi Ramesh | 961050b | 2020-11-12 11:04:30 -0600 | [diff] [blame] | 24 | # { |
| 25 | # "Response": "2020-11-07 07:10:10" |
| 26 | # } |
Sridevi Ramesh | 1495bc4 | 2020-02-04 03:13:33 -0600 | [diff] [blame] | 27 | |
| 28 | ${pldm_output}= Pldmtool bios GetDateTime |
Sridevi Ramesh | 961050b | 2020-11-12 11:04:30 -0600 | [diff] [blame] | 29 | @{date_time}= Split String ${pldm_output['Response']} ${SPACE} |
Sridevi Ramesh | 1495bc4 | 2020-02-04 03:13:33 -0600 | [diff] [blame] | 30 | @{time}= Split String ${date_time}[1] : |
| 31 | |
| 32 | # verify date & time. |
Sridevi Ramesh | 961050b | 2020-11-12 11:04:30 -0600 | [diff] [blame] | 33 | ${utc}= Get Current Date UTC exclude_millis=True |
| 34 | @{current_dmy}= Split String ${utc} ${SPACE} |
| 35 | @{current_time}= Split String ${current_dmy[1]} : |
Sridevi Ramesh | 1495bc4 | 2020-02-04 03:13:33 -0600 | [diff] [blame] | 36 | |
Sridevi Ramesh | 961050b | 2020-11-12 11:04:30 -0600 | [diff] [blame] | 37 | # Example output: |
| 38 | # 2020-11-25 07:34:30 |
| 39 | |
| 40 | Should Contain ${current_dmy[0]} ${date_time[0]} |
Sridevi Ramesh | 1495bc4 | 2020-02-04 03:13:33 -0600 | [diff] [blame] | 41 | |
Sridevi Ramesh | 2ab3d38 | 2021-03-29 04:16:01 -0500 | [diff] [blame] | 42 | |
Sridevi Ramesh | 1495bc4 | 2020-02-04 03:13:33 -0600 | [diff] [blame] | 43 | Verify SetDateTime |
Sridevi Ramesh | 2ab3d38 | 2021-03-29 04:16:01 -0500 | [diff] [blame] | 44 | |
Sridevi Ramesh | 1495bc4 | 2020-02-04 03:13:33 -0600 | [diff] [blame] | 45 | [Documentation] Verify set date & time for the host. |
| 46 | [Tags] Verify_SetDateTime |
| 47 | |
| 48 | # Example output: |
Sridevi Ramesh | 961050b | 2020-11-12 11:04:30 -0600 | [diff] [blame] | 49 | # { |
| 50 | # "Response": "SUCCESS" |
| 51 | # } |
Sridevi Ramesh | 1495bc4 | 2020-02-04 03:13:33 -0600 | [diff] [blame] | 52 | |
| 53 | ${current_date_time}= Get Current Date UTC exclude_millis=True |
Sridevi Ramesh | 961050b | 2020-11-12 11:04:30 -0600 | [diff] [blame] | 54 | # Example output: |
| 55 | # 2020-11-25 07:34:30 |
Sridevi Ramesh | 1495bc4 | 2020-02-04 03:13:33 -0600 | [diff] [blame] | 56 | |
| 57 | ${date}= Add Time To Date ${current_date_time} 400 days exclude_millis=True |
| 58 | ${upgrade_date}= Evaluate re.sub(r'-* *:*', "", '${date}') modules=re |
| 59 | |
| 60 | ${time}= Add Time To Date ${current_date_time} 01:01:00 exclude_millis=True |
| 61 | ${upgrade_time}= Evaluate re.sub(r'-* *:*', "", '${time}') modules=re |
| 62 | |
| 63 | # Set date. |
| 64 | ${cmd_set_date}= Evaluate $CMD_SETDATETIME % '${upgrade_date}' |
| 65 | ${pldm_output}= Pldmtool ${cmd_set_date} |
Sridevi Ramesh | 961050b | 2020-11-12 11:04:30 -0600 | [diff] [blame] | 66 | Valid Value pldm_output['Response'] ['SUCCESS'] |
Sridevi Ramesh | 1495bc4 | 2020-02-04 03:13:33 -0600 | [diff] [blame] | 67 | |
| 68 | # Set time. |
| 69 | ${cmd_set_time}= Evaluate $CMD_SETDATETIME % '${upgrade_time}' |
| 70 | ${pldm_output}= Pldmtool ${cmd_set_time} |
Sridevi Ramesh | fe52e40 | 2020-02-05 00:15:24 -0600 | [diff] [blame] | 71 | |
Sridevi Ramesh | 2ab3d38 | 2021-03-29 04:16:01 -0500 | [diff] [blame] | 72 | |
Sridevi Ramesh | f60581b | 2020-04-07 05:11:12 -0500 | [diff] [blame] | 73 | Verify GetBIOSTable For AttributeValueTable |
Sridevi Ramesh | 2ab3d38 | 2021-03-29 04:16:01 -0500 | [diff] [blame] | 74 | |
Sridevi Ramesh | f60581b | 2020-04-07 05:11:12 -0500 | [diff] [blame] | 75 | [Documentation] Verify if attribute value table content exist for |
| 76 | ... GetBIOSTable with table type attribute value table. |
| 77 | [Tags] Verify_GetBIOSTable_For_AttributeValueTable |
| 78 | |
| 79 | # Example pldm_output: |
| 80 | # [pldm_attributevaluetable]: True |
| 81 | # [attributehandle]: 0 |
| 82 | # [ attributetype]: BIOSStringReadOnly |
| 83 | # [ currentstringlength]: 15 |
Sridevi Ramesh | f60581b | 2020-04-07 05:11:12 -0500 | [diff] [blame] | 84 | |
George Keishing | f924895 | 2021-05-28 07:52:37 -0500 | [diff] [blame] | 85 | ${count}= Get Length ${attr_table_data} |
Sridevi Ramesh | 961050b | 2020-11-12 11:04:30 -0600 | [diff] [blame] | 86 | ${attr_val_list}= Create List |
| 87 | FOR ${i} IN RANGE ${count} |
Sridevi Ramesh | 2ab3d38 | 2021-03-29 04:16:01 -0500 | [diff] [blame] | 88 | Append To List ${attr_val_list} ${attr_table_data}[${i}][AttributeType] |
Sridevi Ramesh | 961050b | 2020-11-12 11:04:30 -0600 | [diff] [blame] | 89 | END |
| 90 | Valid List attr_val_list required_values=${RESPONSE_LIST_GETBIOSTABLE_ATTRVALTABLE} |
Sridevi Ramesh | fe52e40 | 2020-02-05 00:15:24 -0600 | [diff] [blame] | 91 | |
Sridevi Ramesh | 5753745 | 2021-01-18 03:25:05 -0600 | [diff] [blame] | 92 | |
Sridevi Ramesh | 5753745 | 2021-01-18 03:25:05 -0600 | [diff] [blame] | 93 | Verify GetBIOSAttributeCurrentValueByHandle |
| 94 | |
| 95 | [Documentation] Verify GetBIOSAttributeCurrentValueByHandle with the |
| 96 | ... various BIOS attribute handle and its values. |
| 97 | [Tags] Verify_GetBIOSAttributeCurrentValueByHandle |
| 98 | |
| 99 | # Example output: |
| 100 | # |
| 101 | # pldmtool bios GetBIOSAttributeCurrentValueByHandle -a pvm_fw_boot_side |
| 102 | # { |
| 103 | # "CurrentValue": "Temp" |
| 104 | # } |
| 105 | |
Sridevi Ramesh | 2ab3d38 | 2021-03-29 04:16:01 -0500 | [diff] [blame] | 106 | ${attr_val_data}= GetBIOSEnumAttributeOptionalValues ${attr_table_data} |
Sridevi Ramesh | 5753745 | 2021-01-18 03:25:05 -0600 | [diff] [blame] | 107 | @{attr_handles}= Get Dictionary Keys ${attr_val_data} |
| 108 | FOR ${i} IN @{attr_handles} |
| 109 | ${cur_attr}= Pldmtool bios GetBIOSAttributeCurrentValueByHandle -a ${i} |
| 110 | @{attr_val_list}= Set Variable ${attr_val_data}[${i}] |
| 111 | Run Keyword If '${cur_attr['CurrentValue']}' not in @{attr_val_list} |
| 112 | ... Fail Invalid GetBIOSAttributeCurrentValueByHandle value found. |
| 113 | END |
| 114 | |
Sridevi Ramesh | 2ab3d38 | 2021-03-29 04:16:01 -0500 | [diff] [blame] | 115 | |
Sridevi Ramesh | 1495bc4 | 2020-02-04 03:13:33 -0600 | [diff] [blame] | 116 | *** Keywords *** |
| 117 | |
Sridevi Ramesh | 2ab3d38 | 2021-03-29 04:16:01 -0500 | [diff] [blame] | 118 | PLDM BIOS Suite Setup |
| 119 | |
| 120 | [Documentation] Perform PLDM BIOS suite setup. |
| 121 | |
| 122 | ${pldm_output}= Pldmtool bios GetBIOSTable --type AttributeTable |
| 123 | Set Global Variable ${attr_table_data} ${pldm_output} |
| 124 | |
| 125 | |
Sridevi Ramesh | 1495bc4 | 2020-02-04 03:13:33 -0600 | [diff] [blame] | 126 | PLDM BIOS Suite Cleanup |
Sridevi Ramesh | 5753745 | 2021-01-18 03:25:05 -0600 | [diff] [blame] | 127 | |
Sridevi Ramesh | 2ab3d38 | 2021-03-29 04:16:01 -0500 | [diff] [blame] | 128 | [Documentation] Perform PLDM BIOS suite cleanup. |
Sridevi Ramesh | 1495bc4 | 2020-02-04 03:13:33 -0600 | [diff] [blame] | 129 | |
| 130 | ${result}= Get Current Date UTC exclude_millis=True |
| 131 | ${current_date_time}= Evaluate re.sub(r'-* *:*', "", '${result}') modules=re |
| 132 | ${cmd_set_date_time}= Evaluate $CMD_SETDATETIME % '${current_date_time}' |
| 133 | ${pldm_output}= Pldmtool ${cmd_set_date_time} |
Sridevi Ramesh | 961050b | 2020-11-12 11:04:30 -0600 | [diff] [blame] | 134 | Valid Value pldm_output['Response'] ['SUCCESS'] |