blob: 76f2ef29d833dca825f6c1b6597ed78b513f341f [file] [log] [blame]
Charles Paul Hofer9f74d3a2017-08-18 09:54:28 -05001*** Settings ***
2Documentation Update the BMC code on a target BMC.
3... Execution Method:
4... python -m robot -v OPENBMC_HOST:<hostname>
5... -v IMAGE_FILE_PATH:<path/*.tar> bmc_code_update.robot
6
7Library ../../lib/code_update_utils.py
8Variables ../../data/variables.py
9Resource ../../lib/boot_utils.robot
10Resource code_update_utils.robot
11Resource ../../lib/code_update_utils.robot
George Keishing1eb85f52017-08-30 22:55:13 -050012Resource ../../lib/openbmc_ffdc.robot
13Resource ../../lib/dump_utils.robot
Charles Paul Hofer9f74d3a2017-08-18 09:54:28 -050014
15Test Teardown FFDC On Test Case Fail
16
17*** Variables ***
18
19${QUIET} ${1}
20${IMAGE_FILE_PATH} ${EMPTY}
Charles Paul Hoferc1fa2bc2017-08-18 16:44:03 -050021${ALTERNATE_IMAGE_FILE_PATH} ${EMPTY}
Charles Paul Hofer9f74d3a2017-08-18 09:54:28 -050022
23*** Test Cases ***
24
25REST BMC Code Update
26 [Documentation] Do a BMC code update by uploading image on BMC via REST.
27 [Tags] REST_BMC_Code_Update
George Keishing1eb85f52017-08-30 22:55:13 -050028 [Setup] Code Update Setup
Charles Paul Hofer9f74d3a2017-08-18 09:54:28 -050029
30 Upload And Activate Image ${IMAGE_FILE_PATH}
31 OBMC Reboot (off)
32
33
Charles Paul Hoferc1fa2bc2017-08-18 16:44:03 -050034Upload And Activate Multiple BMC Images
35 [Documentation] Upload another BMC image and verify that its state is
36 ... different from all others.
37 [Tags] Upload_And_Activate_Multiple_BMC_Images
38 [Template] Activate Image And Verify No Duplicate Priorities
39 [Setup] Upload And Activate Multiple BMC Images Setup
40
41 # Image File Path Image Purpose
42 ${ALTERNATE_IMAGE_FILE_PATH} ${VERSION_PURPOSE_BMC}
43
44
Charles Paul Hofer9f74d3a2017-08-18 09:54:28 -050045Delete BMC Image
46 [Documentation] Delete a BMC image from the BMC flash chip.
47 [Tags] Delete_BMC_Image
48
49 ${software_object}= Get Non Running BMC Software Object
50 Delete Image And Verify ${software_object} ${VERSION_PURPOSE_BMC}
Charles Paul Hoferc1fa2bc2017-08-18 16:44:03 -050051
52
53*** Keywords ***
54
55Upload And Activate Multiple BMC Images Setup
56 [Documentation] Check that the ALTERNATE_FILE_PATH variable is set.
57
George Keishing1eb85f52017-08-30 22:55:13 -050058 Should Not Be Empty ${ALTERNATE_IMAGE_FILE_PATH}
59
60Code Update Setup
61 [Documentation] Do code update test case setup.
62 # - Clean up all existing BMC dumps.
63
64 Delete All Dumps