blob: 648cc8f36d40883a3889fe12a649fa8ff760528b [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
114 Check Image Update Progress State
115 ... match_state='Disabled', 'Updating' image_id=${image_id}
Sushil Singh87dcee12019-08-07 13:13:13 -0500116 # Wait a few seconds to check if the update progress started.
117 Sleep 5s
118 Check Image Update Progress State
119 ... match_state='Updating' image_id=${image_id}
120
121 Wait Until Keyword Succeeds 8 min 20 sec
122 ... Check Image Update Progress State
123 ... match_state='Enabled' image_id=${image_id}
124
125
Sushil Singh32e2b582019-08-16 04:58:24 -0500126Get Host Power State
127 [Documentation] Get host power state.
128 [Arguments] ${quiet}=0
129
130 # Description of arguments:
131 # quiet Indicates whether results should be printed.
132
133 ${state}= Redfish.Get Attribute
134 ... ${REDFISH_BASE_URI}Systems/system PowerState
135 Rqprint Vars state
136
137 [Return] ${state}
138
139
140Check Host Power State
141 [Documentation] Check that the machine's host state matches
142 ... the caller's required host state.
143 [Arguments] ${match_state}
144
145 # Description of argument(s):
146 # match_state The expected state. This may be one or more
147 # comma-separated values (e.g. "On", "Off").
148 # If the actual state matches any of the
149 # states named in this argument,
150 # this keyword passes.
151
152 ${state}= Get Host Power State
153 Rvalid Value state valid_values=[${match_state}]
154
Sushil Singhf17a7f62020-02-03 01:09:30 -0600155
156Get System Firmware Details
157 [Documentation] Return dictionary of system firmware details.
158
159 # {
160 # FirmwareVersion: 2.8.0-dev-1067-gdc66ce1c5,
161 # BiosVersion: witherspoon-XXX-XX.X-X
162 # }
163
164 ${firmware_version}= Redfish Get BMC Version
165 ${bios_version}= Redfish Get Host Version
166
167 &{sys_firmware_dict}= Create Dictionary
168 Set To Dictionary
169 ... ${sys_firmware_dict} FirmwareVersion ${firmware_version} BiosVersion ${bios_version}
170 Rprint Vars sys_firmware_dict
171
172 [Return] &{sys_firmware_dict}
173