blob: 0da82f20d17847bc6c2771b654971e06c35c8ed6 [file] [log] [blame]
Sushil Singhc08932e2019-09-10 15:23:10 -05001*** Settings ***
2Documentation Redfish BMC/Host signed and unsigned code update
3... over BMC functional signed image.
4
5# Test Parameters:
6# IMAGE_FILE_PATH The path to the BMC/Host image file.
7#
8# Firmware update states:
9# Enabled Image is installed and either functional or active.
10# Disabled Image installation failed or ready for activation.
11# Updating Image installation currently in progress.
12
13Resource ../../lib/resource.robot
14Resource ../../lib/bmc_redfish_resource.robot
15Resource ../../lib/openbmc_ffdc.robot
16Resource ../../lib/common_utils.robot
17Resource ../../lib/code_update_utils.robot
18Resource ../../lib/redfish_code_update_utils.robot
Sushil Singhc08932e2019-09-10 15:23:10 -050019Library ../../lib/gen_robot_valid.py
20Library ../../lib/var_funcs.py
Sushil Singhd7fb62f2022-05-13 05:57:13 -050021Library ../../lib/gen_robot_keyword.py
Sushil Singhc08932e2019-09-10 15:23:10 -050022
23Suite Setup Suite Setup Execution
24Suite Teardown Redfish.Logout
25Test Setup Printn
26Test Teardown FFDC On Test Case Fail
27
George Keishing504a3712022-07-22 09:41:28 -050028Force Tags Signed_Upload_Test
Sushil Singhd7fb62f2022-05-13 05:57:13 -050029
30*** Variables ***
31
32${ACTIVATION_WAIT_TIMEOUT} 8 min
33
Sushil Singhc08932e2019-09-10 15:23:10 -050034*** Test Cases ***
35
36Redfish Signed Code Update
37 [Documentation] BMC/Host signed code update over functional signed
38 ... image, when FieldMode is set to true value.
39 [Tags] Redfish_Signed_Code_Update
40 [Template] Redfish Signed Firmware Update
41
42 # image_file_path
43 ${IMAGE_FILE_PATH}
44
45
46Redfish Fail Unsigned Code Update
47 [Documentation] BMC/Host unsigned code update over functional signed
48 ... image, when Field Mode is set to true to value.
49 [Tags] Redfish_Fail_Unsigned_Code_Update
50 [Template] Redfish Unsigned Firmware Update
51
52 # image_file_path
53 ${IMAGE_FILE_PATH}
54
55
Sushil Singh2a520ee2019-09-16 14:19:17 -050056REST Failure When Field Mode Set To Disable
57 [Documentation] Verify error while disabling field mode from enabled mode.
58 [Tags] REST_Failure_When_Field_Mode_Set_To_Disable
59
60 ${args}= Create Dictionary data=${0}
61 ${resp}= OpenBMC Post Request ${SOFTWARE_VERSION_URI}attr/FieldModeEnabled data=${args}
62 Should Be Equal As Strings ${resp.status_code} ${HTTP_METHOD_NOT_ALLOWED}
63
64
Sushil Singhc08932e2019-09-10 15:23:10 -050065*** Keywords ***
66
67Suite Setup Execution
68 [Documentation] Do the suite setup.
69
70 Valid File Path IMAGE_FILE_PATH
Sushil Singh23349482019-09-18 07:35:01 -050071 Enable Field Mode And Verify Unmount
Sushil Singhc08932e2019-09-10 15:23:10 -050072 Redfish.Login
Tim Lee4aff2d02021-06-08 13:26:25 +080073 Redfish Delete All BMC Dumps
Sushil Singhc08932e2019-09-10 15:23:10 -050074 Redfish Purge Event Log
75
76
77Redfish Signed Firmware Update
78 [Documentation] Update the BMC/Host firmware via redfish interface.
79 [Arguments] ${image_file_path}
80
81 # Description of argument(s):
82 # IMAGE_FILE_PATH The path to the image file.
83
84 Field Mode Should Be Enabled
85 ${image_version}= Get Version Tar ${image_file_path}
Sushil Singhd7fb62f2022-05-13 05:57:13 -050086
87 ${post_code_update_actions}= Get Post Boot Action
Sushil Singhc08932e2019-09-10 15:23:10 -050088 ${state}= Get Pre Reboot State
89 Rprint Vars state
Sushil Singhd7fb62f2022-05-13 05:57:13 -050090
91 Run Keyword And Ignore Error Set ApplyTime policy=OnReset
92
93 # Python module: get_member_list(resource_path)
94 ${before_inv_list}= redfish_utils.Get Member List /redfish/v1/UpdateService/FirmwareInventory
95 Log To Console Current images on the BMC before upload: ${before_inv_list}
96
97 Redfish Upload Image /redfish/v1/UpdateService ${IMAGE_FILE_PATH}
98
99 # Python module: get_member_list(resource_path)
100 ${after_inv_list}= redfish_utils.Get Member List /redfish/v1/UpdateService/FirmwareInventory
101 Log To Console Current images on the BMC after upload: ${after_inv_list}
102
103 ${image_id}= Evaluate set(${after_inv_list}) - set(${before_inv_list})
104 Should Not Be Empty ${image_id}
105 ${image_id}= Evaluate list(${image_id})[0].split('/')[-1]
106 Log To Console Firmware installation in progress with image id:: ${image_id}
107
108 Wait Until Keyword Succeeds ${ACTIVATION_WAIT_TIMEOUT} 10 sec
109 ... Check Image Update Progress State match_state='Enabled' image_id=${image_id}
110
111 # Python module: get_version_tar(tar_file_path)
112 ${tar_version}= code_update_utils.Get Version Tar ${IMAGE_FILE_PATH}
113 ${image_info}= Get Software Inventory State By Version ${tar_version}
114
115 Run Key ${post_code_update_actions['${image_info["image_type"]}']['OnReset']}
116 Redfish.Login
117 Redfish Verify BMC Version ${IMAGE_FILE_PATH}
Sushil Singhc08932e2019-09-10 15:23:10 -0500118
119
120Redfish Unsigned Firmware Update
121 [Documentation] Update the BMC/Host firmware via redfish interface.
122 [Arguments] ${image_file_path}
123
124 # Description of argument(s):
125 # IMAGE_FILE_PATH The path to the image file.
126
127 Field Mode Should Be Enabled
128 Set ApplyTime policy=Immediate
129 Redfish Upload Image ${REDFISH_BASE_URI}UpdateService ${image_file_path}
130 ${image_id}= Get Latest Image ID
131 Rprint Vars image_id
132 Sleep 5s
133 Wait Until Keyword Succeeds 8 min 20 sec
134 ... Check Image Update Progress State
135 ... match_state='Disabled', 'Updating', 'Disabled' image_id=${image_id}
136 Delete Software Object
137 ... /xyz/openbmc_project/software/${image_id}
138