Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation This suite test various BIOS attributes operations using Redfish. |
| 3 | |
George Keishing | 67a8bef | 2021-05-27 14:35:58 -0500 | [diff] [blame] | 4 | Resource ../lib/resource.robot |
| 5 | Resource ../lib/bmc_redfish_resource.robot |
| 6 | Resource ../lib/common_utils.robot |
| 7 | Resource ../lib/openbmc_ffdc.robot |
| 8 | Resource ../lib/bios_attr_utils.robot |
| 9 | Library ../lib/pldm_utils.py |
| 10 | Variables ../data/pldm_variables.py |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 11 | |
George Keishing | 855babf | 2021-05-03 23:50:08 -0500 | [diff] [blame] | 12 | Test Teardown FFDC On Test Case Fail |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 13 | |
| 14 | Suite Setup Redfish BIOS Suite Setup |
George Keishing | a78fe5d | 2022-07-21 11:18:18 -0500 | [diff] [blame] | 15 | Suite Teardown Run Keyword And Ignore Error Redfish BIOS Suite Cleanup |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 16 | |
George Keishing | 5431685 | 2023-10-16 14:03:29 +0530 | [diff] [blame] | 17 | Force Tags Redfish_Bios_Attributes |
| 18 | |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 19 | *** Variables *** |
| 20 | |
| 21 | ${bios_original_data} ${EMPTY} |
| 22 | ${attr_table_data} ${EMPTY} |
| 23 | |
| 24 | |
| 25 | *** Test Cases *** |
| 26 | |
| 27 | Redfish Verify Set BIOS Attribute With Invalid Attribute Name |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 28 | [Documentation] Verify set BIOS attribute with invalid attribute name using |
| 29 | ... Redfish. |
| 30 | [Tags] Redfish_Verify_Set_BIOS_Attribute_With_Invalid_Attribute_Name |
| 31 | |
| 32 | ${random_str}= Generate Random String 8 [LETTERS][NUMBERS] |
| 33 | Redfish.Patch ${BIOS_ATTR_SETTINGS_URI} body={"Attributes":{"${random_str}": '${random_str}'}} |
| 34 | ... valid_status_codes=[${HTTP_BAD_REQUEST}] |
| 35 | |
| 36 | |
| 37 | Redfish Verify Set Invalid Optional Value For BIOS Enumeration Attribute Type |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 38 | [Documentation] Verify set invalid optional value for BIOS enumeration attribute type |
| 39 | ... using Redfish. |
| 40 | [Tags] Redfish_Verify_Set_Invalid_Optional_Value_For_BIOS_Enumeration_Attribute_Type |
| 41 | |
| 42 | ${attr_val_data}= GetBIOSEnumAttributeOptionalValues ${attr_table_data} |
| 43 | @{attr_handles}= Get Dictionary Keys ${attr_val_data} |
| 44 | ${enum_attr}= Evaluate random.choice(${attr_handles}) modules=random |
| 45 | |
| 46 | Redfish.Patch ${BIOS_ATTR_SETTINGS_URI} body={"Attributes":{"${enum_attr}": '0'}} |
George Keishing | c9f0259 | 2022-09-19 09:10:20 -0500 | [diff] [blame] | 47 | ... valid_status_codes=[${HTTP_INTERNAL_SERVER_ERROR},${HTTP_FORBIDDEN}] |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 48 | |
| 49 | |
| 50 | Redfish Verify Set Out Of Range Integer Value For BIOS Integer Attribute Type |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 51 | [Documentation] Verify set out of range integer value for BIOS integer attribute type |
| 52 | ... using Redfish. |
| 53 | [Tags] Redfish_Verify_Set_Out_Of_Range_Integer_Value_For_BIOS_Integer_Attribute_Type |
| 54 | |
| 55 | ${attr_val_data}= GetBIOSStrAndIntAttributeHandles BIOSInteger ${attr_table_data} |
| 56 | @{attr_handles}= Get Dictionary Keys ${attr_val_data} |
| 57 | ${int_attr}= Evaluate random.choice(${attr_handles}) modules=random |
| 58 | ${count}= Evaluate ${attr_val_data['${int_attr}']["UpperBound"]} + 5 |
| 59 | |
| 60 | Redfish.Patch ${BIOS_ATTR_SETTINGS_URI} body={"Attributes":{"${int_attr}": ${count}}} |
George Keishing | 52f01af | 2022-09-19 08:55:10 -0500 | [diff] [blame] | 61 | ... valid_status_codes=[${HTTP_INTERNAL_SERVER_ERROR},${HTTP_BAD_REQUEST}] |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 62 | |
| 63 | |
| 64 | Redfish Verify Set Out Of Range String Value For BIOS String Attribute Type |
| 65 | |
| 66 | [Documentation] Verify set out of range string value for BIOS string attribute type |
| 67 | ... using Redfish. |
| 68 | [Tags] Redfish_Verify_Set_Out_Of_Range_String_Value_For_BIOS_String_Attribute_Type |
| 69 | |
| 70 | ${attr_val_data}= GetBIOSStrAndIntAttributeHandles BIOSString ${attr_table_data} |
| 71 | @{attr_handles}= Get Dictionary Keys ${attr_val_data} |
| 72 | ${str_attr}= Evaluate random.choice(${attr_handles}) modules=random |
| 73 | ${count}= Evaluate ${attr_val_data['${str_attr}']["MaximumStringLength"]} + 5 |
| 74 | ${random_value}= Generate Random String ${count} [LETTERS][NUMBERS] |
| 75 | |
| 76 | Redfish.Patch ${BIOS_ATTR_SETTINGS_URI} body={"Attributes":{"${str_attr}": '${random_value}'}} |
George Keishing | 52f01af | 2022-09-19 08:55:10 -0500 | [diff] [blame] | 77 | ... valid_status_codes=[${HTTP_INTERNAL_SERVER_ERROR},${HTTP_BAD_REQUEST}] |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 78 | |
| 79 | |
| 80 | Redfish Verify Set BIOS String Attribute Type |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 81 | [Documentation] Verify set BIOS string attribute type for various BIOS |
| 82 | ... attribute handle with random values with in the range using Redfish. |
| 83 | [Tags] Redfish_Verify_Set_BIOS_String_Attribute_Type |
| 84 | |
George Keishing | 74bdf3d | 2022-07-25 12:34:47 -0500 | [diff] [blame] | 85 | @{failed_attr_list}= Create List |
| 86 | |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 87 | ${attr_val_data}= GetBIOSStrAndIntAttributeHandles BIOSString ${attr_table_data} |
| 88 | @{attr_handles}= Get Dictionary Keys ${attr_val_data} |
| 89 | FOR ${i} IN @{attr_handles} |
| 90 | ${random_value}= GetRandomBIOSIntAndStrValues ${i} ${attr_val_data['${i}']["MaximumStringLength"]} |
George Keishing | 74bdf3d | 2022-07-25 12:34:47 -0500 | [diff] [blame] | 91 | ${status}= Run Keyword And Return Status |
| 92 | ... Set BIOS Attribute Value And Verify ${i} ${random_value} |
| 93 | Run Keyword If ${status} == ${False} Append To List ${failed_attr_list} ${i} |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 94 | END |
| 95 | |
George Keishing | 74bdf3d | 2022-07-25 12:34:47 -0500 | [diff] [blame] | 96 | ${fail_count}= Get Length ${failed_attr_list} |
| 97 | Should Be Equal ${fail_count} ${0} |
| 98 | ... msg= BIOS write Failed ${fail_count} list: ${failed_attr_list} |
| 99 | |
| 100 | |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 101 | |
| 102 | Redfish Verify Set BIOS Integer Attribute Type |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 103 | [Documentation] Verify set BIOS integer attribute type for various BIOS |
| 104 | ... attribute handle with random values with in the range using Redfish. |
| 105 | [Tags] Redfish_Verify_Set_BIOS_Integer_Attribute_Type |
| 106 | |
George Keishing | 74bdf3d | 2022-07-25 12:34:47 -0500 | [diff] [blame] | 107 | @{failed_attr_list}= Create List |
| 108 | |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 109 | ${attr_val_data}= GetBIOSStrAndIntAttributeHandles BIOSInteger ${attr_table_data} |
| 110 | @{attr_handles}= Get Dictionary Keys ${attr_val_data} |
| 111 | FOR ${i} IN @{attr_handles} |
| 112 | ${random_value}= GetRandomBIOSIntAndStrValues ${i} ${attr_val_data['${i}']["UpperBound"]} |
George Keishing | 74bdf3d | 2022-07-25 12:34:47 -0500 | [diff] [blame] | 113 | ${status}= Run Keyword And Return Status |
| 114 | ... Set BIOS Attribute Value And Verify ${i} ${random_value} |
| 115 | Run Keyword If ${status} == ${False} Append To List ${failed_attr_list} ${i} |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 116 | END |
| 117 | |
George Keishing | 74bdf3d | 2022-07-25 12:34:47 -0500 | [diff] [blame] | 118 | ${fail_count}= Get Length ${failed_attr_list} |
| 119 | Should Be Equal ${fail_count} ${0} |
| 120 | ... msg= BIOS write Failed ${fail_count} list: ${failed_attr_list} |
| 121 | |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 122 | |
| 123 | Redfish Verify Set BIOS Enumeration Attribute Type |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 124 | [Documentation] Validate get and update BIOS attribute optional values |
| 125 | ... and set back to original BIOS attribute values using Redfish. |
George Keishing | 4203fad | 2022-01-31 12:22:33 -0600 | [diff] [blame] | 126 | [Tags] Redfish_Verify_Set_BIOS_Enumeration_Attribute_Type |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 127 | |
| 128 | |
| 129 | # Fetch BIOS attribute optional values from pldmtool getbiostable. |
| 130 | ${attr_val_data}= GetBIOSEnumAttributeOptionalValues ${attr_table_data} |
| 131 | @{attr_handles}= Get Dictionary Keys ${attr_val_data} |
| 132 | |
| 133 | # Example: |
| 134 | # {'vmi_if0_ipv4_method': ['IPv4Static', 'IPv4DHCP']} |
| 135 | |
| 136 | # Update multiple attribute values for corresponding attribute handle. |
| 137 | FOR ${i} IN @{attr_handles} |
| 138 | @{attr_val_list}= Set Variable ${attr_val_data}[${i}] |
| 139 | Set Optional BIOS Attribute Values And Verify ${i} @{attr_val_list} |
| 140 | END |
| 141 | |
| 142 | |
| 143 | Redfish Verify Restore BIOS Attribute Values |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 144 | [Documentation] Restore all BIOS attribute values with its default values and verify |
| 145 | ... using Redfish. |
| 146 | [Tags] Redfish_Verify_Restore_BIOS_Attribute_Values |
| 147 | |
| 148 | ${bios_default_data}= GetBIOSAttrDefaultValues ${attr_table_data} |
| 149 | @{attr_handles}= Get Dictionary Keys ${bios_default_data} |
| 150 | |
| 151 | FOR ${i} IN @{attr_handles} |
| 152 | Set BIOS Attribute Value And Verify ${i} ${bios_default_data['${i}']} |
| 153 | END |
| 154 | |
| 155 | |
| 156 | *** Keywords *** |
| 157 | |
| 158 | Redfish BIOS Suite Setup |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 159 | [Documentation] Perform Redfish BIOS suite setup. |
| 160 | |
| 161 | Redfish.Login |
| 162 | ${pldm_output}= Pldmtool bios GetBIOSTable --type AttributeTable |
| 163 | Set Global Variable ${attr_table_data} ${pldm_output} |
| 164 | |
| 165 | ${data}= GetBIOSAttrOriginalValues ${pldm_output} |
| 166 | Set Global Variable ${bios_original_data} ${data} |
| 167 | |
| 168 | |
| 169 | Redfish BIOS Suite Cleanup |
Sridevi Ramesh | eedcf1a | 2021-03-17 07:09:32 -0500 | [diff] [blame] | 170 | [Documentation] Perform Redfish BIOS suite cleanup. |
| 171 | |
| 172 | @{attr_handles}= Get Dictionary Keys ${bios_original_data} |
| 173 | FOR ${i} IN @{attr_handles} |
| 174 | Set BIOS Attribute Value And Verify ${i} ${bios_original_data['${i}']} |
| 175 | END |
| 176 | Redfish.Logout |