blob: a97b06ed238387970626003f47a0d16506b1d9fb [file] [log] [blame]
George Keishing72abe822019-07-29 08:03:40 -05001*** Settings ***
2Documentation Redfish BMC and PNOR software utilities keywords.
3
4Library code_update_utils.py
5Library gen_robot_valid.py
Sushil Singh87dcee12019-08-07 13:13:13 -05006Library tftp_update_utils.py
George Keishing72abe822019-07-29 08:03:40 -05007Resource bmc_redfish_utils.robot
Sushil Singh32e2b582019-08-16 04:58:24 -05008Resource boot_utils.robot
George Keishing72abe822019-07-29 08:03:40 -05009
10*** Keywords ***
11
12Get Software Functional State
13 [Documentation] Return functional or active state of the software (i.e. True/False).
14 [Arguments] ${image_id}
15
16 # Description of argument(s):
17 # image_id The image ID (e.g. "acc9e073").
18
19 ${image_info}= Redfish.Get Properties /redfish/v1/UpdateService/FirmwareInventory/${image_id}
20
Sushil Singh81da2712020-02-14 00:57:00 -060021 ${sw_functional}= Run Keyword If '${image_info["Description"]}' == 'BMC image'
George Keishing72abe822019-07-29 08:03:40 -050022 ... Redfish.Get Attribute /redfish/v1/Managers/bmc FirmwareVersion
23 ... ELSE
24 ... Redfish.Get Attribute /redfish/v1/Systems/system BiosVersion
25
26 ${functional}= Run Keyword And Return Status
27 ... Should Be Equal ${sw_functional} ${image_info["Version"]}
28
29 [Return] ${functional}
30
31
32Get Software Inventory State
33 [Documentation] Return dictionary of the image type, version and functional state
34 ... of the software objects active on the system.
35
36 # User defined state for software objects.
37 # Note: "Functional" term refers to firmware which system is currently booted with.
38 # sw_inv_dict:
39 # [ace821ef]:
40 # [image_type]: Host update
George Keishing31029492019-07-30 13:14:13 -050041 # [image_id]: ace821ef
George Keishing72abe822019-07-29 08:03:40 -050042 # [functional]: True
43 # [version]: witherspoon-xx.xx.xx.xx
44 # [b9101858]:
45 # [image_type]: BMC update
George Keishing31029492019-07-30 13:14:13 -050046 # [image_id]: b9101858
George Keishing72abe822019-07-29 08:03:40 -050047 # [functional]: True
48 # [version]: 2.8.0-dev-150-g04508dc9f
49 # [c45eafa5]:
50 # [image_type]: BMC update
George Keishing31029492019-07-30 13:14:13 -050051 # [image_id]: c45eafa5
George Keishing72abe822019-07-29 08:03:40 -050052 # [functional]: False
53 # [version]: 2.8.0-dev-149-g1a8df5077
54
55 ${sw_member_list}= Redfish_Utils.Get Member List /redfish/v1/UpdateService/FirmwareInventory
56 &{sw_inv_dict}= Create Dictionary
57
58 # sw_member_list:
59 # [0]: /redfish/v1/UpdateService/FirmwareInventory/98744d76
60 # [1]: /redfish/v1/UpdateService/FirmwareInventory/9a8028ec
61 # [2]: /redfish/v1/UpdateService/FirmwareInventory/acc9e073
62
63 FOR ${uri_path} IN @{sw_member_list}
64 &{tmp_dict}= Create Dictionary
65 ${image_info}= Redfish.Get Properties ${uri_path}
66 Set To Dictionary ${tmp_dict} image_type ${image_info["Description"]}
George Keishing31029492019-07-30 13:14:13 -050067 Set To Dictionary ${tmp_dict} image_id ${uri_path.split("/")[-1]}
George Keishing72abe822019-07-29 08:03:40 -050068 ${functional}= Get Software Functional State ${uri_path.split("/")[-1]}
69 Set To Dictionary ${tmp_dict} functional ${functional}
George Keishing72abe822019-07-29 08:03:40 -050070 Set To Dictionary ${tmp_dict} version ${image_info["Version"]}
George Keishing31029492019-07-30 13:14:13 -050071 Set To Dictionary ${sw_inv_dict} ${uri_path.split("/")[-1]} ${tmp_dict}
George Keishing72abe822019-07-29 08:03:40 -050072 END
73
74 [Return] &{sw_inv_dict}
George Keishing31029492019-07-30 13:14:13 -050075
76
77Get Software Inventory State By Version
78 [Documentation] Return the software inventory record that matches the given software version.
79 [Arguments] ${software_version}
80
81 # If no matchine record can be found, return ${EMPTY}.
82
83 # Example of returned data:
84 # software_inventory_record:
85 # [image_type]: BMC update
86 # [image_id]: 1e662ba8
87 # [functional]: True
88 # [version]: 2.8.0-dev-150-g04508dc9f
89
90 # Description of argument(s):
91 # software_version A BMC or Host version (e.g "2.8.0-dev-150-g04508dc9f").
92
93 ${software_inventory}= Get Software Inventory State
94 # Filter out entries that don't match the criterion..
95 ${software_inventory}= Filter Struct ${software_inventory} [('version', '${software_version}')]
96 # Convert from dictionary to list.
97 ${software_inventory}= Get Dictionary Values ${software_inventory}
98 ${num_records}= Get Length ${software_inventory}
99
100 Return From Keyword If ${num_records} == ${0} ${EMPTY}
101
102 # Return the first list entry.
103 [Return] ${software_inventory}[0]
Sushil Singh87dcee12019-08-07 13:13:13 -0500104
105
106Redfish Upload Image And Check Progress State
107 [Documentation] Code update with ApplyTime.
Sushil Singh87dcee12019-08-07 13:13:13 -0500108
Sushil Singh87dcee12019-08-07 13:13:13 -0500109 Redfish Upload Image ${REDFISH_BASE_URI}UpdateService ${IMAGE_FILE_PATH}
110
111 ${image_id}= Get Latest Image ID
112 Rprint Vars image_id
113
George Keishingeb0b0842020-03-03 23:09:49 -0600114 ${manifest} ${stderr} ${rc}= BMC Execute Command cat /tmp/images/${image_id}/MANIFEST
115 Rprint Vars manifest
116
Sushil Singh87dcee12019-08-07 13:13:13 -0500117 Check Image Update Progress State
118 ... match_state='Disabled', 'Updating' image_id=${image_id}
Sushil Singh87dcee12019-08-07 13:13:13 -0500119 # Wait a few seconds to check if the update progress started.
120 Sleep 5s
121 Check Image Update Progress State
122 ... match_state='Updating' image_id=${image_id}
123
124 Wait Until Keyword Succeeds 8 min 20 sec
125 ... Check Image Update Progress State
126 ... match_state='Enabled' image_id=${image_id}
127
128
Sushil Singh32e2b582019-08-16 04:58:24 -0500129Get Host Power State
130 [Documentation] Get host power state.
131 [Arguments] ${quiet}=0
132
133 # Description of arguments:
134 # quiet Indicates whether results should be printed.
135
136 ${state}= Redfish.Get Attribute
137 ... ${REDFISH_BASE_URI}Systems/system PowerState
138 Rqprint Vars state
139
140 [Return] ${state}
141
142
143Check Host Power State
144 [Documentation] Check that the machine's host state matches
145 ... the caller's required host state.
146 [Arguments] ${match_state}
147
148 # Description of argument(s):
149 # match_state The expected state. This may be one or more
150 # comma-separated values (e.g. "On", "Off").
151 # If the actual state matches any of the
152 # states named in this argument,
153 # this keyword passes.
154
155 ${state}= Get Host Power State
156 Rvalid Value state valid_values=[${match_state}]
157
Sushil Singhf17a7f62020-02-03 01:09:30 -0600158
159Get System Firmware Details
160 [Documentation] Return dictionary of system firmware details.
161
162 # {
163 # FirmwareVersion: 2.8.0-dev-1067-gdc66ce1c5,
164 # BiosVersion: witherspoon-XXX-XX.X-X
165 # }
166
167 ${firmware_version}= Redfish Get BMC Version
168 ${bios_version}= Redfish Get Host Version
169
170 &{sys_firmware_dict}= Create Dictionary
171 Set To Dictionary
172 ... ${sys_firmware_dict} FirmwareVersion ${firmware_version} BiosVersion ${bios_version}
173 Rprint Vars sys_firmware_dict
174
175 [Return] &{sys_firmware_dict}
176