Handle suite teardown and move the suite to logical directory
Changes:
- Add directive to ignore suite teardown errors
- Move the suite to pldm directory
Tested:
Ran successfull pldm/test_redfish_bios_attributes.robot
Change-Id: I5a0891add837f8d0316d7482c674ee22fe34e416
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
diff --git a/pldm/test_redfish_bios_attributes.robot b/pldm/test_redfish_bios_attributes.robot
new file mode 100755
index 0000000..e865c4b
--- /dev/null
+++ b/pldm/test_redfish_bios_attributes.robot
@@ -0,0 +1,166 @@
+*** Settings ***
+Documentation This suite test various BIOS attributes operations using Redfish.
+
+Resource ../lib/resource.robot
+Resource ../lib/bmc_redfish_resource.robot
+Resource ../lib/common_utils.robot
+Resource ../lib/openbmc_ffdc.robot
+Resource ../lib/bios_attr_utils.robot
+Library ../lib/pldm_utils.py
+Variables ../data/pldm_variables.py
+
+Test Teardown FFDC On Test Case Fail
+
+Suite Setup Redfish BIOS Suite Setup
+Suite Teardown Run Keyword And Ignore Error Redfish BIOS Suite Cleanup
+
+*** Variables ***
+
+${bios_original_data} ${EMPTY}
+${attr_table_data} ${EMPTY}
+
+
+*** Test Cases ***
+
+Redfish Verify Set BIOS Attribute With Invalid Attribute Name
+
+ [Documentation] Verify set BIOS attribute with invalid attribute name using
+ ... Redfish.
+ [Tags] Redfish_Verify_Set_BIOS_Attribute_With_Invalid_Attribute_Name
+
+ ${random_str}= Generate Random String 8 [LETTERS][NUMBERS]
+ Redfish.Patch ${BIOS_ATTR_SETTINGS_URI} body={"Attributes":{"${random_str}": '${random_str}'}}
+ ... valid_status_codes=[${HTTP_BAD_REQUEST}]
+
+
+Redfish Verify Set Invalid Optional Value For BIOS Enumeration Attribute Type
+
+ [Documentation] Verify set invalid optional value for BIOS enumeration attribute type
+ ... using Redfish.
+ [Tags] Redfish_Verify_Set_Invalid_Optional_Value_For_BIOS_Enumeration_Attribute_Type
+
+ ${attr_val_data}= GetBIOSEnumAttributeOptionalValues ${attr_table_data}
+ @{attr_handles}= Get Dictionary Keys ${attr_val_data}
+ ${enum_attr}= Evaluate random.choice(${attr_handles}) modules=random
+
+ Redfish.Patch ${BIOS_ATTR_SETTINGS_URI} body={"Attributes":{"${enum_attr}": '0'}}
+ ... valid_status_codes=[${HTTP_INTERNAL_SERVER_ERROR}]
+
+
+Redfish Verify Set Out Of Range Integer Value For BIOS Integer Attribute Type
+
+ [Documentation] Verify set out of range integer value for BIOS integer attribute type
+ ... using Redfish.
+ [Tags] Redfish_Verify_Set_Out_Of_Range_Integer_Value_For_BIOS_Integer_Attribute_Type
+
+ ${attr_val_data}= GetBIOSStrAndIntAttributeHandles BIOSInteger ${attr_table_data}
+ @{attr_handles}= Get Dictionary Keys ${attr_val_data}
+ ${int_attr}= Evaluate random.choice(${attr_handles}) modules=random
+ ${count}= Evaluate ${attr_val_data['${int_attr}']["UpperBound"]} + 5
+
+ Redfish.Patch ${BIOS_ATTR_SETTINGS_URI} body={"Attributes":{"${int_attr}": ${count}}}
+ ... valid_status_codes=[${HTTP_INTERNAL_SERVER_ERROR}]
+
+
+Redfish Verify Set Out Of Range String Value For BIOS String Attribute Type
+
+ [Documentation] Verify set out of range string value for BIOS string attribute type
+ ... using Redfish.
+ [Tags] Redfish_Verify_Set_Out_Of_Range_String_Value_For_BIOS_String_Attribute_Type
+
+ ${attr_val_data}= GetBIOSStrAndIntAttributeHandles BIOSString ${attr_table_data}
+ @{attr_handles}= Get Dictionary Keys ${attr_val_data}
+ ${str_attr}= Evaluate random.choice(${attr_handles}) modules=random
+ ${count}= Evaluate ${attr_val_data['${str_attr}']["MaximumStringLength"]} + 5
+ ${random_value}= Generate Random String ${count} [LETTERS][NUMBERS]
+
+ Redfish.Patch ${BIOS_ATTR_SETTINGS_URI} body={"Attributes":{"${str_attr}": '${random_value}'}}
+ ... valid_status_codes=[${HTTP_INTERNAL_SERVER_ERROR}]
+
+
+Redfish Verify Set BIOS String Attribute Type
+
+ [Documentation] Verify set BIOS string attribute type for various BIOS
+ ... attribute handle with random values with in the range using Redfish.
+ [Tags] Redfish_Verify_Set_BIOS_String_Attribute_Type
+
+ ${attr_val_data}= GetBIOSStrAndIntAttributeHandles BIOSString ${attr_table_data}
+ @{attr_handles}= Get Dictionary Keys ${attr_val_data}
+ FOR ${i} IN @{attr_handles}
+ ${random_value}= GetRandomBIOSIntAndStrValues ${i} ${attr_val_data['${i}']["MaximumStringLength"]}
+ Set BIOS Attribute Value And Verify ${i} ${random_value}
+ END
+
+
+Redfish Verify Set BIOS Integer Attribute Type
+
+ [Documentation] Verify set BIOS integer attribute type for various BIOS
+ ... attribute handle with random values with in the range using Redfish.
+ [Tags] Redfish_Verify_Set_BIOS_Integer_Attribute_Type
+
+ ${attr_val_data}= GetBIOSStrAndIntAttributeHandles BIOSInteger ${attr_table_data}
+ @{attr_handles}= Get Dictionary Keys ${attr_val_data}
+ FOR ${i} IN @{attr_handles}
+ ${random_value}= GetRandomBIOSIntAndStrValues ${i} ${attr_val_data['${i}']["UpperBound"]}
+ Set BIOS Attribute Value And Verify ${i} ${random_value}
+ END
+
+
+Redfish Verify Set BIOS Enumeration Attribute Type
+
+ [Documentation] Validate get and update BIOS attribute optional values
+ ... and set back to original BIOS attribute values using Redfish.
+ [Tags] Redfish_Verify_Set_BIOS_Enumeration_Attribute_Type
+
+
+ # Fetch BIOS attribute optional values from pldmtool getbiostable.
+ ${attr_val_data}= GetBIOSEnumAttributeOptionalValues ${attr_table_data}
+ @{attr_handles}= Get Dictionary Keys ${attr_val_data}
+
+ # Example:
+ # {'vmi_if0_ipv4_method': ['IPv4Static', 'IPv4DHCP']}
+
+ # Update multiple attribute values for corresponding attribute handle.
+ FOR ${i} IN @{attr_handles}
+ @{attr_val_list}= Set Variable ${attr_val_data}[${i}]
+ Set Optional BIOS Attribute Values And Verify ${i} @{attr_val_list}
+ END
+
+
+Redfish Verify Restore BIOS Attribute Values
+
+ [Documentation] Restore all BIOS attribute values with its default values and verify
+ ... using Redfish.
+ [Tags] Redfish_Verify_Restore_BIOS_Attribute_Values
+
+ ${bios_default_data}= GetBIOSAttrDefaultValues ${attr_table_data}
+ @{attr_handles}= Get Dictionary Keys ${bios_default_data}
+
+ FOR ${i} IN @{attr_handles}
+ Set BIOS Attribute Value And Verify ${i} ${bios_default_data['${i}']}
+ END
+
+
+*** Keywords ***
+
+Redfish BIOS Suite Setup
+
+ [Documentation] Perform Redfish BIOS suite setup.
+
+ Redfish.Login
+ ${pldm_output}= Pldmtool bios GetBIOSTable --type AttributeTable
+ Set Global Variable ${attr_table_data} ${pldm_output}
+
+ ${data}= GetBIOSAttrOriginalValues ${pldm_output}
+ Set Global Variable ${bios_original_data} ${data}
+
+
+Redfish BIOS Suite Cleanup
+
+ [Documentation] Perform Redfish BIOS suite cleanup.
+
+ @{attr_handles}= Get Dictionary Keys ${bios_original_data}
+ FOR ${i} IN @{attr_handles}
+ Set BIOS Attribute Value And Verify ${i} ${bios_original_data['${i}']}
+ END
+ Redfish.Logout