blob: 41248c48ce3b948f6eb4b4de5386d848352a5c15 [file] [log] [blame]
Rahul Maheshwarifdd5ff62017-08-01 04:15:03 -05001*** Settings ***
2Documentation This suite is for testing general IPMI functions.
3
4Resource ../../lib/ipmi_client.robot
5Resource ../../lib/openbmc_ffdc.robot
George Keishing0825a112018-03-30 10:48:07 -05006Resource ../../lib/boot_utils.robot
George Keishing78ce8dc2018-03-30 11:49:06 -05007Resource ../../lib/utils.robot
Sweta Potthurif39022d2018-02-06 03:40:07 -06008Resource ../../lib/bmc_network_utils.robot
George Keishingd6273802018-09-07 07:06:53 -05009Resource ../../lib/logging_utils.robot
George Keishing78ce8dc2018-03-30 11:49:06 -050010Library ../../lib/ipmi_utils.py
George Keishing0825a112018-03-30 10:48:07 -050011Variables ../../data/ipmi_raw_cmd_table.py
Rahul Maheshwaridf6f05d2018-09-04 03:48:37 -050012Library ../../lib/gen_misc.py
Tony Lee9bca44b2019-12-13 09:34:26 +080013Library ../../lib/gen_robot_valid.py
Rahul Maheshwarifdd5ff62017-08-01 04:15:03 -050014
Michael Walshc9eb34e2019-01-23 11:08:43 -060015Test Setup Log to Console ${EMPTY}
Rahul Maheshwarifdd5ff62017-08-01 04:15:03 -050016Test Teardown FFDC On Test Case Fail
17
18*** Variables ***
19
Rahul Maheshwari901dcde2018-02-06 03:14:31 -060020${allowed_temp_diff}= ${1}
Rahul Maheshwari615da152018-02-13 23:53:36 -060021${allowed_power_diff}= ${10}
Sweta Potthuri5c6c72e2018-01-23 05:48:35 -060022
Rahul Maheshwarifdd5ff62017-08-01 04:15:03 -050023*** Test Cases ***
24
Sweta Potthuri0cc60502018-01-24 00:36:17 -060025Verify Chassis Identify via IPMI
26 [Documentation] Verify "chassis identify" using IPMI command.
27 [Tags] Verify_Chassis_Identify_via_IPMI
28
29 # Set to default "chassis identify" and verify that LED blinks for 15s.
30 Run IPMI Standard Command chassis identify
Alvin Wang32f7b3d2019-07-25 02:05:39 -050031 Verify Identify LED State ${1}
Sweta Potthuri0cc60502018-01-24 00:36:17 -060032
33 Sleep 15s
Alvin Wang32f7b3d2019-07-25 02:05:39 -050034 Verify Identify LED State ${0}
Sweta Potthuri0cc60502018-01-24 00:36:17 -060035
36 # Set "chassis identify" to 10s and verify that the LED blinks for 10s.
37 Run IPMI Standard Command chassis identify 10
Alvin Wang32f7b3d2019-07-25 02:05:39 -050038 Verify Identify LED State ${1}
Sweta Potthuri0cc60502018-01-24 00:36:17 -060039
40 Sleep 10s
Alvin Wang32f7b3d2019-07-25 02:05:39 -050041 Verify Identify LED State ${0}
Sweta Potthuri0cc60502018-01-24 00:36:17 -060042
Sweta Potthurif39022d2018-02-06 03:40:07 -060043
Sweta Potthuri0cc60502018-01-24 00:36:17 -060044Verify Chassis Identify Off And Force Identify On via IPMI
45 [Documentation] Verify "chassis identify" off
46 ... and "force identify on" via IPMI.
47 [Tags] Verify_Chassis_Identify_Off_And_Force_Identify_On_via_IPMI
48
49 # Set the LED to "Force Identify On".
50 Run IPMI Standard Command chassis identify force
Alvin Wang32f7b3d2019-07-25 02:05:39 -050051 Verify Identify LED State ${1}
Sweta Potthuri0cc60502018-01-24 00:36:17 -060052
53 # Set "chassis identify" to 0 and verify that the LED turns off.
54 Run IPMI Standard Command chassis identify 0
Alvin Wang32f7b3d2019-07-25 02:05:39 -050055 Verify Identify LED State ${0}
Sweta Potthuri0cc60502018-01-24 00:36:17 -060056
Sweta Potthurif39022d2018-02-06 03:40:07 -060057
Sweta Potthuri7d3af3c2018-01-29 03:07:07 -060058Test Watchdog Reset Via IPMI And Verify Using REST
59 [Documentation] Test watchdog reset via IPMI and verify using REST.
60 [Tags] Test_Watchdog_Reset_Via_IPMI_And_Verify_Using_REST
61
62 Initiate Host Boot
63
64 Set Watchdog Enabled Using REST ${1}
65
66 Watchdog Object Should Exist
67
68 # Resetting the watchdog via IPMI.
69 Run IPMI Standard Command mc watchdog reset
70
71 # Verify the watchdog is reset using REST after an interval of 1000ms.
72 Sleep 1000ms
73 ${watchdog_time_left}=
74 ... Read Attribute ${HOST_WATCHDOG_URI} TimeRemaining
75 Should Be True
76 ... ${watchdog_time_left}<${1200000} and ${watchdog_time_left}>${2000}
77 ... msg=Watchdog timer didn't reset.
78
Sweta Potthurif39022d2018-02-06 03:40:07 -060079
Sweta Potthuri7d3af3c2018-01-29 03:07:07 -060080Test Watchdog Off Via IPMI And Verify Using REST
81 [Documentation] Test watchdog off via IPMI and verify using REST.
82 [Tags] Test_Watchdog_Off_Via_IPMI_And_Verify_Using_REST
83
84 Initiate Host Boot
85
86 Set Watchdog Enabled Using REST ${1}
87
88 Watchdog Object Should Exist
89
90 # Turn off the watchdog via IPMI.
91 Run IPMI Standard Command mc watchdog off
92
93 # Verify the watchdog is off using REST
94 ${watchdog_state}= Read Attribute ${HOST_WATCHDOG_URI} Enabled
95 Should Be Equal ${watchdog_state} ${0}
96 ... msg=msg=Verification failed for watchdog off check.
Rahul Maheshwari901dcde2018-02-06 03:14:31 -060097
98
99Test Ambient Temperature Via IPMI
100 [Documentation] Test ambient temperature via IPMI and verify using REST.
101 [Tags] Test_Ambient_Temperature_Via_IPMI
102
103 # Entity ID Entity Instance Temp. Readings
104 # Inlet air temperature(40h) 1 +19 C
105 # CPU temperature sensors(41h) 5 +51 C
106 # CPU temperature sensors(41h) 6 +50 C
107 # CPU temperature sensors(41h) 7 +50 C
108 # CPU temperature sensors(41h) 8 +50 C
109 # CPU temperature sensors(41h) 9 +50 C
110 # CPU temperature sensors(41h) 10 +48 C
111 # CPU temperature sensors(41h) 11 +49 C
112 # CPU temperature sensors(41h) 12 +47 C
113 # CPU temperature sensors(41h) 8 +50 C
114 # CPU temperature sensors(41h) 16 +51 C
115 # CPU temperature sensors(41h) 24 +50 C
116 # CPU temperature sensors(41h) 32 +43 C
117 # CPU temperature sensors(41h) 40 +43 C
118 # Baseboard temperature sensors(42h) 1 +35 C
119
120 ${temp_reading}= Run IPMI Standard Command dcmi get_temp_reading -N 10
George Keishing77f1ad22018-07-23 12:39:28 -0500121 Should Contain ${temp_reading} Inlet air temperature
122 ... msg="Unable to get inlet temperature via DCMI".
Rahul Maheshwari901dcde2018-02-06 03:14:31 -0600123 ${ambient_temp_line}=
124 ... Get Lines Containing String ${temp_reading}
125 ... Inlet air temperature case-insensitive
126
127 ${ambient_temp_ipmi}= Fetch From Right ${ambient_temp_line} +
128 ${ambient_temp_ipmi}= Remove String ${ambient_temp_ipmi} ${SPACE}C
129
130 ${ambient_temp_rest}= Read Attribute
131 ... ${SENSORS_URI}temperature/ambient Value
132
133 # Example of ambient temperature via REST
134 # "CriticalAlarmHigh": 0,
135 # "CriticalAlarmLow": 0,
136 # "CriticalHigh": 35000,
137 # "CriticalLow": 0,
138 # "Scale": -3,
139 # "Unit": "xyz.openbmc_project.Sensor.Value.Unit.DegreesC",
140 # "Value": 21775,
141 # "WarningAlarmHigh": 0,
142 # "WarningAlarmLow": 0,
143 # "WarningHigh": 25000,
144 # "WarningLow": 0
145
146 # Get temperature value based on scale i.e. Value * (10 power Scale Value)
147 # e.g. from above case 21775 * (10 power -3) = 21775/1000
148
149 ${ambient_temp_rest}= Evaluate ${ambient_temp_rest}/1000
150 ${ipmi_rest_temp_diff}=
151 ... Evaluate abs(${ambient_temp_rest} - ${ambient_temp_ipmi})
152
153 Should Be True ${ipmi_rest_temp_diff} <= ${allowed_temp_diff}
154 ... msg=Ambient temperature above allowed threshold ${allowed_temp_diff}.
155
156
Sweta Potthuri78dd1e12018-02-21 00:03:33 -0600157Test Power Reading Via IPMI With Host Off
158 [Documentation] Test power reading via IPMI with host off state and
159 ... verify using REST.
160 [Tags] Test_Power_Reading_Via_IPMI_With_Host_Off
Rahul Maheshwari615da152018-02-13 23:53:36 -0600161
Sweta Potthuri78dd1e12018-02-21 00:03:33 -0600162 REST Power Off stack_mode=skip quiet=1
Rahul Maheshwari615da152018-02-13 23:53:36 -0600163
George Keishing04bf06c2018-10-05 08:28:50 -0500164 Wait Until Keyword Succeeds 1 min 30 sec Verify Power Reading
George Keishinge78f1fd2018-09-04 13:34:59 -0500165
166
167Test Power Reading Via IPMI With Host Booted
168 [Documentation] Test power reading via IPMI with host booted state and
169 ... verify using REST.
170 [Tags] Test_Power_Reading_Via_IPMI_With_Host_Booted
171
172 REST Power On stack_mode=skip quiet=1
173
174 # For a good power reading take a 3 samples for 15 seconds interval and
175 # average it out.
176
George Keishing04bf06c2018-10-05 08:28:50 -0500177 Wait Until Keyword Succeeds 2 min 30 sec Verify Power Reading
Rahul Maheshwari615da152018-02-13 23:53:36 -0600178
179
Rahul Maheshwariabe13af2018-02-15 22:42:08 -0600180Test Power Reading Via IPMI Raw Command
181 [Documentation] Test power reading via IPMI raw command and verify
182 ... using REST.
183 [Tags] Test_Power_Reading_Via_IPMI_Raw_Command
184
185 # Response data structure of power reading command output via IPMI.
186 # 1 Completion Code. Refer to section 8, DCMI Completion Codes.
187 # 2 Group Extension Identification = DCh
188 # 3:4 Current Power in watts
189
George Keishinge78f1fd2018-09-04 13:34:59 -0500190 REST Power On stack_mode=skip quiet=1
Rahul Maheshwariabe13af2018-02-15 22:42:08 -0600191
George Keishing04bf06c2018-10-05 08:28:50 -0500192 Wait Until Keyword Succeeds 2 min 30 sec Verify Power Reading Via Raw Command
Rahul Maheshwariabe13af2018-02-15 22:42:08 -0600193
194
Rahul Maheshwari91a18ef2018-02-15 04:54:59 -0600195Test Baseboard Temperature Via IPMI
196 [Documentation] Test baseboard temperature via IPMI and verify using REST.
197 [Tags] Test_Baseboard_Temperature_Via_IPMI
198
199 # Example of IPMI dcmi get_temp_reading output:
200 # Entity ID Entity Instance Temp. Readings
201 # Inlet air temperature(40h) 1 +19 C
202 # CPU temperature sensors(41h) 5 +51 C
203 # CPU temperature sensors(41h) 6 +50 C
204 # CPU temperature sensors(41h) 7 +50 C
205 # CPU temperature sensors(41h) 8 +50 C
206 # CPU temperature sensors(41h) 9 +50 C
207 # CPU temperature sensors(41h) 10 +48 C
208 # CPU temperature sensors(41h) 11 +49 C
209 # CPU temperature sensors(41h) 12 +47 C
210 # CPU temperature sensors(41h) 8 +50 C
211 # CPU temperature sensors(41h) 16 +51 C
212 # CPU temperature sensors(41h) 24 +50 C
213 # CPU temperature sensors(41h) 32 +43 C
214 # CPU temperature sensors(41h) 40 +43 C
215 # Baseboard temperature sensors(42h) 1 +35 C
216
217 ${temp_reading}= Run IPMI Standard Command dcmi get_temp_reading -N 10
George Keishing77f1ad22018-07-23 12:39:28 -0500218 Should Contain ${temp_reading} Baseboard temperature sensors
219 ... msg="Unable to get baseboard temperature via DCMI".
Rahul Maheshwari91a18ef2018-02-15 04:54:59 -0600220 ${baseboard_temp_line}=
221 ... Get Lines Containing String ${temp_reading}
222 ... Baseboard temperature case-insensitive=True
223
224 ${baseboard_temp_ipmi}= Fetch From Right ${baseboard_temp_line} +
225 ${baseboard_temp_ipmi}= Remove String ${baseboard_temp_ipmi} ${SPACE}C
226
227 ${baseboard_temp_rest}= Read Attribute
228 ... /xyz/openbmc_project/sensors/temperature/pcie Value
229 ${baseboard_temp_rest}= Evaluate ${baseboard_temp_rest}/1000
230
231 Should Be True
232 ... ${baseboard_temp_rest} - ${baseboard_temp_ipmi} <= ${allowed_temp_diff}
233 ... msg=Baseboard temperature above allowed threshold ${allowed_temp_diff}.
234
235
Rahul Maheshwarife8639b2018-02-05 22:42:24 -0600236Verify Get Device ID
237 [Documentation] Verify get device ID command output.
238 [Tags] Verify_Get_Device_ID
239
240 # Example of get device ID command output:
241 # Device ID : 0
242 # Device Revision : 0
243 # Firmware Revision : 2.01
244 # IPMI Version : 2.0
245 # Manufacturer ID : 42817
246 # Manufacturer Name : Unknown (0xA741)
247 # Product ID : 16975 (0x424f)
248 # Product Name : Unknown (0x424F)
249 # Device Available : yes
250 # Provides Device SDRs : yes
251 # Additional Device Support :
252 # Sensor Device
253 # SEL Device
254 # FRU Inventory Device
255 # Chassis Device
256 # Aux Firmware Rev Info :
George Keishing3511a3f2018-04-19 10:38:30 -0500257 # 0x04
258 # 0x38
Rahul Maheshwarife8639b2018-02-05 22:42:24 -0600259 # 0x00
George Keishing3511a3f2018-04-19 10:38:30 -0500260 # 0x03
Rahul Maheshwarife8639b2018-02-05 22:42:24 -0600261
Tony Lee9bca44b2019-12-13 09:34:26 +0800262 # Verify Manufacturer and Product IDs, etc. directly from json file.
263 ${device_id_config}= Get Device Id Config
Rahul Maheshwarife8639b2018-02-05 22:42:24 -0600264 ${mc_info}= Get MC Info
265
Tony Lee9bca44b2019-12-13 09:34:26 +0800266 Rprint Vars device_id_config mc_info
267 Valid Value ${mc_info['device_id']} [${device_id_config['id']}]
268 Valid Value ${mc_info['device_revision']} [${device_id_config['device_revision']}]
Rahul Maheshwarife8639b2018-02-05 22:42:24 -0600269
Rahul Maheshwaribb9e2572018-04-02 05:24:37 -0500270 # Get firmware revision from mc info command output i.e. 2.01
271 ${ipmi_fw_major_version} ${ipmi_fw_minor_version}=
272 ... Split String ${mc_info['firmware_revision']} .
273 # Convert minor firmware version from BCD format to integer. i.e. 01 to 1
274 ${ipmi_fw_minor_version}= Convert To Integer ${ipmi_fw_minor_version}
Rahul Maheshwarife8639b2018-02-05 22:42:24 -0600275
George Keishinge0a81282018-06-08 10:02:30 -0500276 # Get BMC version from BMC CLI i.e. 2.2 from "v2.2-253-g00050f1"
George Keishing3511a3f2018-04-19 10:38:30 -0500277 ${bmc_version_full}= Get BMC Version
Rahul Maheshwaribb9e2572018-04-02 05:24:37 -0500278 ${bmc_version}=
George Keishing3511a3f2018-04-19 10:38:30 -0500279 ... Remove String Using Regexp ${bmc_version_full} ^[^0-9]+ [^0-9\.].*
Rahul Maheshwaribb9e2572018-04-02 05:24:37 -0500280
281 # Get major and minor version from BMC version i.e. 2 and 1 from 2.1
George Keishingc95e9982019-01-14 09:27:45 -0600282 @{major_minor_version}= Split String ${bmc_version} .
Rahul Maheshwaribb9e2572018-04-02 05:24:37 -0500283
George Keishingc95e9982019-01-14 09:27:45 -0600284 Should Be Equal As Strings ${ipmi_fw_major_version} ${major_minor_version[0]}
George Keishing2ee2f002019-02-16 09:36:02 -0600285 ... msg=Major version mismatch.
George Keishingc95e9982019-01-14 09:27:45 -0600286 Should Be Equal As Strings ${ipmi_fw_minor_version} ${major_minor_version[1]}
George Keishing2ee2f002019-02-16 09:36:02 -0600287 ... msg=Minor version mismatch.
Rahul Maheshwaribb9e2572018-04-02 05:24:37 -0500288
Tony Lee9bca44b2019-12-13 09:34:26 +0800289 Valid Value mc_info['ipmi_version'] ['2.0']
Rahul Maheshwarife8639b2018-02-05 22:42:24 -0600290
Tony Lee9bca44b2019-12-13 09:34:26 +0800291 Valid Value ${mc_info['manufacturer_id']} [${device_id_config['manuf_id']}]
292 ${product_id_hex} = Convert To Hex ${device_id_config['prod_id']} lowercase=True
293 Valid Value mc_info['product_id'] ['${device_id_config['prod_id']} (0x${product_id_hex})']
Rahul Maheshwarife8639b2018-02-05 22:42:24 -0600294
Tony Lee9bca44b2019-12-13 09:34:26 +0800295 Valid Value mc_info['device_available'] ['yes']
296 Valid Value mc_info['provides_device_sdrs'] ['yes']
Rahul Maheshwarife8639b2018-02-05 22:42:24 -0600297 Should Contain ${mc_info['additional_device_support']} Sensor Device
298 Should Contain ${mc_info['additional_device_support']} SEL Device
299 Should Contain
300 ... ${mc_info['additional_device_support']} FRU Inventory Device
301 Should Contain ${mc_info['additional_device_support']} Chassis Device
George Keishingb746d3f2018-04-19 10:53:10 -0500302
George Keishing3511a3f2018-04-19 10:38:30 -0500303 # Auxiliary revision data verification.
304 ${aux_version}= Get Aux Version ${bmc_version_full}
305
306 # From aux_firmware_rev_info field ['0x04', '0x38', '0x00', '0x03']
307 ${bmc_aux_version}= Catenate
308 ... SEPARATOR=
309 ... ${mc_info['aux_firmware_rev_info'][0][2:]}
310 ... ${mc_info['aux_firmware_rev_info'][1][2:]}
311 ... ${mc_info['aux_firmware_rev_info'][2][2:]}
312 ... ${mc_info['aux_firmware_rev_info'][3][2:]}
313
314 Should Be Equal As Integers
315 ... ${bmc_aux_version} ${aux_version}
316 ... msg=BMC aux version ${bmc_aux_version} does not match expected value of ${aux_version}.
Rahul Maheshwarife8639b2018-02-05 22:42:24 -0600317
318
George Keishinge85113a2019-06-07 08:21:51 -0500319Test IPMI Restriction Mode
320 [Documentation] Set restricition mode via REST and verify IPMI operation.
321 [Tags] Test_IPMI_Restriction_Mode
322 # Forego normal test setup:
323 [Setup] No Operation
324 [Teardown] Run Keywords FFDC On Test Case Fail AND
325 ... Set IPMI Restriction Mode xyz.openbmc_project.Control.Security.RestrictionMode.Modes.None
326
327 # By default no IPMI operations are restricted.
328 # /xyz/openbmc_project/control/host0/restriction_mode/attr/RestrictionMode
329 # {
330 # "data": "xyz.openbmc_project.Control.Security.RestrictionMode.Modes.None",
331 # "message": "200 OK",
332 # "status": "ok"
333 # }
334
335 # Refer to: #openbmc/phosphor-host-ipmid/blob/master/host-ipmid-whitelist.conf
336 # Set the restriction mode to Whitelist IPMI commands only:
337 # /xyz/openbmc_project/control/host0/restriction_mode/attr/RestrictionMode
338 # {
339 # "data": "xyz.openbmc_project.Control.Security.RestrictionMode.Modes.Whitelist",
340 # "message": "200 OK",
341 # "status": "ok"
342 # }
343
344 Set IPMI Restriction Mode xyz.openbmc_project.Control.Security.RestrictionMode.Modes.Whitelist
345
346 # Attempt white-listed operation expecting success.
347 IPMI Power On
348
349 # Attempt non white-listed operation expecting failure.
350 Run Keyword And Expect Error *Insufficient privilege level*
Rahul Maheshwari40193982019-10-11 00:55:08 -0500351 ... Run Inband IPMI Standard Command lan set 1 access on
George Keishinge85113a2019-06-07 08:21:51 -0500352
353
Rahul Maheshwarifdd5ff62017-08-01 04:15:03 -0500354*** Keywords ***
Sweta Potthuri5c6c72e2018-01-23 05:48:35 -0600355
Sweta Potthuri7d3af3c2018-01-29 03:07:07 -0600356Set Watchdog Enabled Using REST
357 [Documentation] Set watchdog Enabled field using REST.
358 [Arguments] ${value}
359
360 # Description of argument(s):
361 # value Integer value (eg. "0-Disabled", "1-Enabled").
362
363 ${value_dict}= Create Dictionary data=${value}
Steven Sombaraaaab222018-12-19 13:16:23 -0600364 ${resp}= OpenBMC Put Request ${HOST_WATCHDOG_URI}attr/Enabled
Sweta Potthuri7d3af3c2018-01-29 03:07:07 -0600365 ... data=${value_dict}
Sweta Potthurif39022d2018-02-06 03:40:07 -0600366
367
Sweta Potthurif39022d2018-02-06 03:40:07 -0600368Fetch Details From LAN Print
369 [Documentation] Fetch details from LAN print.
370 [Arguments] ${field_name}
371
372 # Description of argument(s):
373 # ${field_name} Field name to be fetched from LAN print
374 # (e.g. "MAC Address", "Source").
375
Rahul Maheshwarid8037d32018-12-17 00:59:57 -0600376 ${stdout}= Run IPMI Standard Command lan print
Sweta Potthurif39022d2018-02-06 03:40:07 -0600377 ${fetch_value}= Get Lines Containing String ${stdout} ${field_name}
378 ${value_fetch}= Fetch From Right ${fetch_value} :${SPACE}
379 [Return] ${value_fetch}
380
Sweta Potthuri78dd1e12018-02-21 00:03:33 -0600381
382Verify Power Reading
383 [Documentation] Get dcmi power reading via IPMI.
384
385 # Example of power reading command output via IPMI.
386 # Instantaneous power reading: 235 Watts
387 # Minimum during sampling period: 235 Watts
388 # Maximum during sampling period: 235 Watts
389 # Average power reading over sample period: 235 Watts
390 # IPMI timestamp: Thu Jan 1 00:00:00 1970
391 # Sampling period: 00000000 Seconds.
392 # Power reading state is: deactivated
393
394 ${power_reading}= Get IPMI Power Reading
395
396 ${host_state}= Get Host State
397 Run Keyword If '${host_state}' == 'Off'
George Keishing51314872018-03-31 13:24:35 -0500398 ... Should Be Equal ${power_reading['instantaneous_power_reading']} 0
399 ... msg=Power reading not zero when power is off.
Sweta Potthuri78dd1e12018-02-21 00:03:33 -0600400
George Keishing51314872018-03-31 13:24:35 -0500401 Run Keyword If '${power_reading['instantaneous_power_reading']}' != '0'
Sweta Potthuri78dd1e12018-02-21 00:03:33 -0600402 ... Verify Power Reading Using REST ${power_reading['instantaneous_power_reading']}
403
404
George Keishinge78f1fd2018-09-04 13:34:59 -0500405Verify Power Reading Via Raw Command
406 [Documentation] Get dcmi power reading via IPMI raw command.
407
408 ${ipmi_raw_output}= Run IPMI Standard Command
409 ... raw ${IPMI_RAW_CMD['power_reading']['Get'][0]}
410
411 @{raw_output_list}= Split String ${ipmi_raw_output} ${SPACE}
412
413 # On successful execution of raw IPMI power reading command, completion
414 # code does not come in output. So current power value will start from 2
415 # byte instead of 3.
416
417 ${power_reading_ipmi_raw_3_item}= Get From List ${raw_output_list} 2
418 ${power_reading_ipmi_raw_3_item}=
419 ... Convert To Integer 0x${power_reading_ipmi_raw_3_item}
420
421 ${power_reading_rest}= Read Attribute
422 ... ${SENSORS_URI}power/total_power Value
423
424 # Example of power reading via REST
425 # "CriticalAlarmHigh": 0,
426 # "CriticalAlarmLow": 0,
427 # "CriticalHigh": 3100000000,
428 # "CriticalLow": 0,
429 # "Scale": -6,
430 # "Unit": "xyz.openbmc_project.Sensor.Value.Unit.Watts",
431 # "Value": 228000000,
432 # "WarningAlarmHigh": 0,
433 # "WarningAlarmLow": 0,
434 # "WarningHigh": 3050000000,
435 # "WarningLow": 0
436
437 # Get power value based on scale i.e. Value * (10 power Scale Value)
438 # e.g. from above case 228000000 * (10 power -6) = 228000000/1000000
439
440 ${power_reading_rest}= Evaluate ${power_reading_rest}/1000000
441 ${ipmi_rest_power_diff}=
442 ... Evaluate abs(${power_reading_rest} - ${power_reading_ipmi_raw_3_item})
443
444 Should Be True ${ipmi_rest_power_diff} <= ${allowed_power_diff}
445 ... msg=Power Reading above allowed threshold ${allowed_power_diff}.
446
447
Sweta Potthuri78dd1e12018-02-21 00:03:33 -0600448Verify Power Reading Using REST
449 [Documentation] Verify power reading using REST.
450 [Arguments] ${power_reading}
451
Gunnar Mills948e2e22018-03-23 12:54:27 -0500452 # Description of argument(s):
Sweta Potthuri78dd1e12018-02-21 00:03:33 -0600453 # power_reading IPMI Power reading
454
455 ${power_reading_rest}= Read Attribute
456 ... ${SENSORS_URI}power/total_power Value
457
458 # Example of power reading via REST
459 # "CriticalAlarmHigh": 0,
460 # "CriticalAlarmLow": 0,
461 # "CriticalHigh": 3100000000,
462 # "CriticalLow": 0,
463 # "Scale": -6,
464 # "Unit": "xyz.openbmc_project.Sensor.Value.Unit.Watts",
465 # "Value": 228000000,
466 # "WarningAlarmHigh": 0,
467 # "WarningAlarmLow": 0,
468 # "WarningHigh": 3050000000,
469 # "WarningLow": 0
470
471 # Get power value based on scale i.e. Value * (10 power Scale Value)
472 # e.g. from above case 228000000 * (10 power -6) = 228000000/1000000
473 ${power_reading_rest}= Evaluate ${power_reading_rest}/1000000
474 ${ipmi_rest_power_diff}=
475 ... Evaluate abs(${power_reading_rest} - ${power_reading})
476
477 Should Be True ${ipmi_rest_power_diff} <= ${allowed_power_diff}
478 ... msg=Power reading above allowed threshold ${allowed_power_diff}.
George Keishing02651f02018-04-11 02:07:16 -0500479
480
George Keishinge85113a2019-06-07 08:21:51 -0500481Set IPMI Restriction Mode
482 [Documentation] Set the IPMI restriction mode.
483 [Arguments] ${restriction_mode}
484
485 # Description of argument(s):
486 # restriction_mode IPMI valid restriction modes.
487
488 ${valueDict}= Create Dictionary data=${restriction_mode}
489
490 Write Attribute ${CONTROL_HOST_URI}restriction_mode/
491 ... RestrictionMode data=${valueDict}