| *** Settings *** |
| Documentation Test upload image with invalid images. |
| ... This test expects the following bad tarball image files |
| ... to exist in the BAD_IMAGES_DIR_PATH/TFTP_SERVER: |
| ... bmc_bad_manifest.ubi.mtd.tar |
| ... bmc_nokernel_image.ubi.mtd.tar |
| ... bmc_invalid_key.ubi.mtd.tar |
| ... pnor_bad_manifest.pnor.squashfs.tar |
| ... pnor_nokernel_image.pnor.squashfs.tar |
| ... pnor_invalid_key.pnor.squashfs.tar |
| |
| # Test Parameters: |
| # OPENBMC_HOST The BMC host name or IP address. |
| # OPENBMC_USERNAME The OS login userid. |
| # OPENBMC_PASSWORD The password for the OS login. |
| # BAD_IMAGES_DIR_PATH The path to the directory which contains the bad image files. |
| # TFTP_SERVER The host name or IP of the TFTP server. |
| |
| Resource ../../lib/connection_client.robot |
| Resource ../../lib/rest_client.robot |
| Resource ../../lib/openbmc_ffdc.robot |
| Resource ../../lib/bmc_redfish_resource.robot |
| Resource ../../lib/code_update_utils.robot |
| Library OperatingSystem |
| Library ../../lib/code_update_utils.py |
| Library ../../lib/gen_robot_valid.py |
| |
| Suite Setup Suite Setup Execution |
| Suite Teardown Redfish.Logout |
| Test Setup Printn |
| |
| Force Tags Upload_Test |
| |
| *** Variables *** |
| ${timeout} 20 |
| ${QUIET} ${1} |
| ${image_id} ${EMPTY} |
| |
| *** Test Cases *** |
| |
| Redfish Failure to Upload BMC Image With Bad Manifest |
| [Documentation] Upload a BMC firmware with a bad MANFIEST file. |
| [Tags] Redfish_Failure_To_Upload_BMC_Image_With_Bad_Manifest |
| [Template] Redfish Bad Firmware Update |
| |
| # Image File Name |
| bmc_bad_manifest.ubi.mtd.tar |
| |
| |
| Redfish Failure to Upload Empty BMC Image |
| [Documentation] Upload a BMC firmware with no kernel image. |
| [Tags] Redfish_Failure_To_Upload_Empty_BMC_Image |
| [Template] Redfish Bad Firmware Update |
| |
| # Image File Name |
| bmc_nokernel_image.ubi.mtd.tar |
| |
| |
| Redfish Failure to Upload Host Image With Bad Manifest |
| [Documentation] Upload a PNOR firmware with a bad MANIFEST file. |
| [Tags] Redfish_Failure_To_Upload_Host_Image_With_Bad_Manifest |
| [Template] Redfish Bad Firmware Update |
| |
| # Image File Name |
| pnor_bad_manifest.pnor.squashfs.tar |
| |
| |
| Redfish Failure to Upload Empty Host Image |
| [Documentation] Upload a PNOR firmware with no kernel Image. |
| [Tags] Redfish_Failure_To_Upload_Empty_Host_Image |
| [Template] Redfish Bad Firmware Update |
| |
| # Image File Name |
| pnor_nokernel_image.pnor.squashfs.tar |
| |
| |
| Redfish TFTP Failure to Upload BMC Image With Bad Manifest |
| [Documentation] Upload a BMC firmware with a bad MANFIEST file via TFTP. |
| [Tags] Redfish_TFTP_Failure_To_Upload_BMC_Image_With_Bad_Manifest |
| [Template] Redfish TFTP Bad Firmware Update |
| |
| # Image File Name |
| bmc_bad_manifest.ubi.mtd.tar |
| |
| |
| Redfish TFTP Failure to Upload Empty BMC Image |
| [Documentation] Upload a BMC firmware with no kernel image via TFTP. |
| [Tags] Redfish_TFTP_Failure_To_Upload_Empty_BMC_Image |
| [Template] Redfish TFTP Bad Firmware Update |
| |
| # Image File Name |
| bmc_nokernel_image.ubi.mtd.tar |
| |
| |
| Redfish TFTP Failure to Upload Host Image With Bad Manifest |
| [Documentation] Upload a PNOR firmware with a bad MANIFEST file via TFTP. |
| [Tags] Redfish_TFTP_Failure_To_Upload_Host_Image_With_Bad_Manifest |
| [Template] Redfish TFTP Bad Firmware Update |
| |
| # Image File Name |
| pnor_bad_manifest.pnor.squashfs.tar |
| |
| |
| Redfish TFTP Failure to Upload Empty Host Image |
| [Documentation] Upload a PNOR firmware with no kernel Image via TFTP. |
| [Tags] Redfish_TFTP_Failure_To_Upload_Empty_Host_Image |
| [Template] Redfish TFTP Bad Firmware Update |
| |
| # Image File Name |
| pnor_nokernel_image.pnor.squashfs.tar |
| |
| |
| *** Keywords *** |
| |
| Suite Setup Execution |
| [Documentation] Do the suite setup. |
| |
| Redfish.Login |
| Delete All BMC Dump |
| Redfish Purge Event Log |
| |
| |
| Redfish Bad Firmware Update |
| [Documentation] Redfish firmware update. |
| [Arguments] ${image_file_name} |
| [Teardown] Test Teardown Execution |
| |
| # Description of argument(s): |
| # image_file_name The file name of the image. |
| |
| Valid Dir Path BAD_IMAGES_DIR_PATH |
| ${image_file_path}= OperatingSystem.Join Path ${BAD_IMAGES_DIR_PATH} |
| ... ${image_file_name} |
| Valid File Path image_file_path |
| Set ApplyTime policy=OnReset |
| ${image_data}= OperatingSystem.Get Binary File ${image_file_path} |
| ${status_code}= Upload Image To BMC |
| ... ${REDFISH_BASE_URI}UpdateService |
| ... ${timeout} |
| ... valid_status_codes=[${HTTP_OK}, ${HTTP_INTERNAL_SERVER_ERROR}] |
| ... data=${image_data} |
| |
| Return From Keyword If ${status_code} == ${HTTP_INTERNAL_SERVER_ERROR} |
| |
| ${image_id}= Get Latest Image ID |
| Rprint Vars image_id |
| Check Image Update Progress State |
| ... match_state='Updating', 'Disabled' image_id=${image_id} |
| |
| |
| Redfish TFTP Bad Firmware Update |
| [Documentation] Redfish bad firmware update via TFTP. |
| [Arguments] ${image_file_name} |
| [Teardown] Test Teardown Execution |
| |
| # Description of argument(s): |
| # image_file_name The file name of the image. |
| |
| Set ApplyTime policy=OnReset |
| # Download image from TFTP server to BMC. |
| Redfish.Post /redfish/v1/UpdateService/Actions/UpdateService.SimpleUpdate |
| ... body={"TransferProtocol" : "TFTP", "ImageURI" : "${TFTP_SERVER}/${image_file_name}"} |
| Sleep 60s |
| ${image_version}= Get Image Version From TFTP Server ${TFTP_SERVER} ${image_file_name} |
| Return From Keyword If '${image_version}' == '${EMPTY}' |
| # Wait for image tar file to download complete. |
| ${image_id}= Wait Until Keyword Succeeds 60 sec 10 sec Get Latest Image ID |
| Rprint Vars image_id |
| |
| Check Image Update Progress State |
| ... match_state='Updating', 'Disabled' image_id=${image_id} |
| |
| |
| Test Teardown Execution |
| [Documentation] Do the post test teardown. |
| |
| FFDC On Test Case Fail |
| Run Keyword If '${image_id}' Delete Software Object |
| ... /xyz/openbmc_project/software/${image_id} |
| |