blob: 76eb0610e050afe0118e0abfdcf0fef82911435d [file] [log] [blame]
*** Settings ***
Documentation Code update to a target BMC.
... Execution Method:
... python -m robot -v OPENBMC_HOST:<hostname>
... -v DELETE_OLD_PNOR_IMAGES:<"true" or "false">
... -v IMAGE_FILE_PATH:<path/*.tar> code_update.robot
...
... Code update method BMC
... Update work flow sequence:
... - Upload image via REST
... - Verify that the file exists on the BMC
... - Check software "Activation" status to be "Ready"
... - Set "Requested Activation" to "Active"
... - Wait for code update to complete
... - Verify the new version
Library ../../lib/code_update_utils.py
Library OperatingSystem
Library String
Variables ../../data/variables.py
Resource ../lib/rest_client.robot
Resource ../lib/openbmc_ffdc.robot
Resource ../../lib/code_update_utils.robot
Resource ../../lib/boot_utils.robot
Resource ../../lib/utils.robot
Resource code_update_utils.robot
Resource ../../lib/state_manager.robot
Test Teardown Code Update Teardown
*** Variables ***
${QUIET} ${1}
${version_id} ${EMPTY}
${upload_dir_path} /tmp/images/
${image_version} ${EMPTY}
${image_purpose} ${EMPTY}
${activation_state} ${EMPTY}
${requested_state} ${EMPTY}
${IMAGE_FILE_PATH} ${EMPTY}
${DELETE_OLD_PNOR_IMAGES} false
*** Test Cases ***
REST Host Code Update
[Documentation] Do a PNOR code update by uploading image on BMC via REST.
[Tags] REST_Host_Code_Update
[Setup] Code Update Setup
OperatingSystem.File Should Exist ${image_file_path}
${image_version}= Get Version Tar ${image_file_path}
${image_data}= OperatingSystem.Get Binary File ${image_file_path}
Upload Image To BMC /upload/image data=${image_data}
${ret}= Verify Image Upload
Should Be True ${ret}
# Verify the image is 'READY' to be activated.
${software_state}= Read Properties ${SOFTWARE_VERSION_URI}${version_id}
Should Be Equal As Strings &{software_state}[Activation] ${READY}
# Request the image to be activated.
${args}= Create Dictionary data=${REQUESTED_ACTIVE}
Write Attribute ${SOFTWARE_VERSION_URI}${version_id}
... RequestedActivation data=${args}
${software_state}= Read Properties ${SOFTWARE_VERSION_URI}${version_id}
Should Be Equal As Strings &{software_state}[RequestedActivation]
... ${REQUESTED_ACTIVE}
# Verify code update was successful and Activation state is Active.
Wait For Activation State Change ${version_id} ${ACTIVATING}
${software_state}= Read Properties ${SOFTWARE_VERSION_URI}${version_id}
Should Be Equal As Strings &{software_state}[Activation] ${ACTIVE}
OBMC Reboot (off)
Post Update Boot To OS
[Documentation] Boot the host OS
[Tags] Post_Update_Boot_To_OS
[Teardown] Stop SOL Console Logging
Run Keyword Unless '${PREV_TEST_STATUS}' == 'PASS'
... Fail Code update failed. No need to boot to OS.
Start SOL Console Logging
REST Power On
Host Image Priority Attribute Test
[Documentation] Set "Priority" attribute.
[Tags] Host_Image_Priority_Attribute_Test
[Template] Set PNOR Attribute
# Property Value
Priority ${0}
Priority ${1}
Priority ${127}
Set RequestedActivation To None
[Documentation] Set the RequestedActivation of the image to None and
... verify that it is in fact set to None.
[Tags] Set_RequestedActivation_To_None
${sw_objs}= Get Software Objects
Set Host Software Property @{sw_objs}[0] RequestedActivation
... ${REQUESTED_NONE}
${sw_props}= Get Host Software Property @{sw_objs}[0]
Should Be Equal As Strings &{sw_props}[RequestedActivation]
... ${REQUESTED_NONE}
Set RequestedActivation To Invalid Value
[Documentation] Set the RequestedActivation proprety of the image to an
... invalid value and verify that it was not changed.
[Template] Set Property To Invalid Value And Verify No Change
[Tags] Set_RequestedActivation_To_Invalid_Value
# Property
RequestedActivation
Set Activation To Invalid Value
[Documentation] Set the Activation proprety of the image to an invalid
... value and verify that it was not changed.
[Template] Set Property To Invalid Value And Verify No Change
[Tags] Set_Activation_To_Invalid_Value
# Property
Activation
Delete Host Image
[Documentation] Delete a PNOR image from the BMC and PNOR flash chip.
[Tags] Delete_Host_Image
[Setup] Initiate Host PowerOff
${software_objects}= Get Software Objects
... version_type=${VERSION_PURPOSE_HOST}
${num_images}= Get Length ${software_objects}
Should Be True 0 < ${num_images}
... msg=There are no PNOR images on the BMC to delete.
Delete Image And Verify @{software_objects}[0] ${VERSION_PURPOSE_HOST}
Delete BMC Image
[Documentation] Delete a BMC image from the BMC flash chip.
[Tags] Delete_BMC_Image
${software_object}= Get Non Running BMC Software Object
Delete Image And Verify ${software_object} ${VERSION_PURPOSE_BMC}
*** Keywords ***
Set PNOR Attribute
[Documentation] Update the attribute value.
[Arguments] ${attribute_name} ${value}
# Description of argument(s):
# attribute_name Host software attribute name (e.g. "Priority").
# value Value to be written.
${image_ids}= Get Software Objects
${resp}= Get Host Software Property ${image_ids[0]}
${initial_value}= Set Variable ${resp["Priority"]}
Set Host Software Property ${image_ids[0]} ${attribute_name} ${value}
${resp}= Get Host Software Property ${image_ids[0]}
Should Be Equal As Integers ${resp["Priority"]} ${value}
# Revert to to initial value.
Set Host Software Property
... ${image_ids[0]} ${attribute_name} ${initial_value}
Code Update Setup
[Documentation] Do code update test case setup.
Run Keyword If 'true' == '${DELETE_OLD_PNOR_IMAGES}'
... Delete All PNOR Images
Code Update Teardown
[Documentation] Do code update test case teardown.
FFDC On Test Case Fail
Get PNOR Extended Version
[Documentation] Return the PNOR extended version.
[Arguments] ${path}
# Description of argument(s):
# path Path of the MANIFEST file.
Open Connection And Log In
${version}= Execute Command On BMC
... "grep \"extended_version=\" " + ${path}
[return] ${version.split(",")}
Delete Image And Verify
[Documentation] Delete an image from the BMC and verify that it was
... removed from software and the /tmp/images directory.
[Arguments] ${software_object} ${version_type}
# Description of argument(s):
# software_object The URI of the software object to delete.
# version_type The type of the software object, e.g.
# xyz.openbmc_project.Software.Version.VersionPurpose.Host
# or xyz.openbmc_project.Software.Version.VersionPurpose.BMC.
# Delete the image.
Delete Software Object ${software_object}
# TODO: If/when we don't have to delete twice anymore, take this out
Run Keyword And Ignore Error Delete Software Object ${software_object}
# Verify that it's gone from software.
${software_objects}= Get Software Objects version_type=${version_type}
Should Not Contain ${software_objects} ${software_object}
# Check that there is no file in the /tmp/images directory.
${image_id}= Fetch From Right ${software_object} /
BMC Execute Command
... [ ! -d "/tmp/images/${image_id}" ]
Set Property To Invalid Value And Verify No Change
[Documentation] Attempt to set a property and check that the value didn't
... change.
[Arguments] ${property}
# Description of argument(s):
# property The property to attempt to set.
${sw_objs}= Get Software Objects
${prev_props}= Get Host Software Property @{sw_objs}[0]
Run Keyword And Expect Error 500 != 200
... Set Host Software Property @{sw_objs}[0] ${property} foo
${cur_props}= Get Host Software Property @{sw_objs}[0]
Should Be Equal As Strings &{prev_props}[${property}]
... &{cur_props}[${property}]