blob: ba6301f7815f1afd9eaa525494a38d51e1503c96 [file] [log] [blame]
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -06001*** Settings ***
2Documentation Test suite for OpenBMC IPMI user management.
3
4Resource ../lib/ipmi_client.robot
5Resource ../lib/openbmc_ffdc.robot
ganesanb0ae36202022-02-17 12:14:37 +00006Resource ../lib/bmc_network_utils.robot
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -06007Library ../lib/ipmi_utils.py
Anusha Dathatridd8e7d82019-12-03 07:45:30 -06008Test Setup Printn
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -06009
Ashwini Chandrappa12be4b42022-03-15 23:02:07 -050010Suite Setup Suite Setup Execution
Rahul Maheshwarif646baa2019-02-20 12:29:35 -060011Test Teardown Test Teardown Execution
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -060012
13*** Variables ***
14
15${invalid_username} user%
16${invalid_password} abc123
chithragc0582f72021-12-08 10:34:23 -050017${new_username} newuser
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -060018${root_userid} 1
19${operator_level_priv} 0x3
Rahul Maheshwaric05bf562019-03-01 04:02:53 -060020${user_priv} 2
21${operator_priv} 3
Rahul Maheshwarief0a7352019-02-20 11:07:48 -060022${admin_level_priv} 4
Rahul Maheshwaric05bf562019-03-01 04:02:53 -060023${no_access_priv} 15
Rahul Maheshwaric19f8382019-02-20 08:19:22 -060024${valid_password} 0penBmc1
25${max_password_length} 20
Rahul Maheshwarief0a7352019-02-20 11:07:48 -060026${ipmi_setaccess_cmd} channel setaccess
Anusha Dathatridd8e7d82019-12-03 07:45:30 -060027&{password_values} 16=0penBmc10penBmc2 17=0penBmc10penBmc2B
28 ... 20=0penBmc10penBmc2Bmc3 21=0penBmc10penBmc2Bmc34
Anusha Dathatri466816f2020-01-30 05:12:36 -060029 ... 7=0penBmc 8=0penBmc0
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -060030
Ashwini Chandrappa5cefabf2021-08-30 23:48:14 -050031# User defined count.
32${USER_LOOP_COUNT} 20
33
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -060034*** Test Cases ***
35
Rahul Maheshwariffc77352019-02-25 09:05:27 -060036Verify IPMI User Summary
37 [Documentation] Verify IPMI maximum supported IPMI user ID and
38 ... enabled user form user summary
39 [Tags] Verify_IPMI_User_Summary
Ashwini Chandrappa12be4b42022-03-15 23:02:07 -050040 [Teardown] Run Keywords FFDC On Test Case Fail AND Delete Created User ${random_userid}
Rahul Maheshwariffc77352019-02-25 09:05:27 -060041
Ashwini Chandrappa12be4b42022-03-15 23:02:07 -050042 # Create random user
Anusha Dathatridd8e7d82019-12-03 07:45:30 -060043 ${random_userid} ${random_username}= Create Random IPMI User
Tony Leef9379e82020-01-08 18:20:38 +080044 Set Test Variable ${random_userid}
Rahul Maheshwariffc77352019-02-25 09:05:27 -060045 Run IPMI Standard Command user enable ${random_userid}
46
Ashwini Chandrappa12be4b42022-03-15 23:02:07 -050047 ${output}= Run IPMI Standard Command user summary ${CHANNEL_NUMBER}
48 # TODO: Verification of enabled IPMI user needs to be done.
49 # https://github.com/openbmc/openbmc-test-automation/issues/2189
50
51 ${maximum_ids}= Get Lines Containing String ${output} Maximum IDs
52
Rahul Maheshwariffc77352019-02-25 09:05:27 -060053 Should Contain ${maximum_ids} 15
54
55
Tony Lee3d351ee2020-02-19 10:21:04 +080056Verify IPMI User List
57 [Documentation] Verify user list via IPMI.
58 [Tags] Verify_IPMI_User_List
59 [Teardown] Run Keywords FFDC On Test Case Fail AND
60 ... Delete Created User ${random_userid}
61
62 ${random_userid} ${random_username}= Create Random IPMI User
63 Set Test Variable ${random_userid}
64
65 Run IPMI Standard Command
66 ... user set password ${random_userid} ${valid_password}
67 Run IPMI Standard Command user enable ${random_userid}
68 # Delay added for IPMI user to get enabled.
69 Sleep 5s
70 # Set admin privilege and enable IPMI messaging for newly created user.
71 Set Channel Access ${random_userid} ipmi=on privilege=${admin_level_priv}
72
73 ${users_access}= Get User Access Ipmi ${CHANNEL_NUMBER}
74 Rprint Vars users_access
75
76 ${index}= Evaluate ${random_userid} - 1
77 # Verify the user access of created user.
78 Valid Value users_access[${index}]['id'] ['${random_userid}']
79 Valid Value users_access[${index}]['name'] ['${random_username}']
80 Valid Value users_access[${index}]['callin'] ['true']
81 Valid Value users_access[${index}]['link'] ['false']
82 Valid Value users_access[${index}]['auth'] ['true']
83 Valid Value users_access[${index}]['ipmi'] ['ADMINISTRATOR']
84
85
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -060086Verify IPMI User Creation With Valid Name And ID
87 [Documentation] Create user via IPMI and verify.
George Keishingb98036a2022-01-31 12:39:47 -060088 [Tags] Verify_IPMI_User_Creation_With_Valid_Name_And_ID
Tony Leef9379e82020-01-08 18:20:38 +080089 [Teardown] Run Keywords FFDC On Test Case Fail AND
90 ... Delete Created User ${random_userid}
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -060091
Anusha Dathatridd8e7d82019-12-03 07:45:30 -060092 ${random_userid} ${random_username}= Create Random IPMI User
Tony Leef9379e82020-01-08 18:20:38 +080093 Set Test Variable ${random_userid}
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -060094
95
96Verify IPMI User Creation With Invalid Name
97 [Documentation] Verify error while creating IPMI user with invalid
George Keishingc2a6f092019-02-20 12:26:54 -060098 ... name(e.g. user name with special characters).
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -060099 [Tags] Verify_IPMI_User_Creation_With_Invalid_Name
100
Rahul Maheshwari976a1702019-02-21 01:47:58 -0600101 ${random_userid}= Evaluate random.randint(2, 15) modules=random
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -0600102 ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command
103 ... user set name ${random_userid} ${invalid_username}
104 Should Contain ${msg} Invalid data
105
106
107Verify IPMI User Creation With Invalid ID
108 [Documentation] Verify error while creating IPMI user with invalid
109 ... ID(i.e. any number greater than 15 or 0).
110 [Tags] Verify_IPMI_User_Creation_With_Invalid_ID
111
112 @{id_list}= Create List
113 ${random_invalid_id}= Evaluate random.randint(16, 1000) modules=random
114 Append To List ${id_list} ${random_invalid_id}
115 Append To List ${id_list} 0
116
Sushil Singhbe97ffc2019-06-04 06:34:24 -0500117 FOR ${id} IN @{id_list}
118 ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command
119 ... user set name ${id} newuser
Tony Leec8ed7532020-01-09 16:15:16 +0800120 Should Contain Any ${msg} User ID is limited to range Parameter out of range
Sushil Singhbe97ffc2019-06-04 06:34:24 -0500121 END
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -0600122
123Verify Setting IPMI User With Invalid Password
124 [Documentation] Verify error while setting IPMI user with invalid
125 ... password.
126 [Tags] Verify_Setting_IPMI_User_With_Invalid_Password
Tony Leef9379e82020-01-08 18:20:38 +0800127 [Teardown] Run Keywords FFDC On Test Case Fail AND
128 ... Delete Created User ${random_userid}
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -0600129
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600130 ${random_userid} ${random_username}= Create Random IPMI User
Tony Leef9379e82020-01-08 18:20:38 +0800131 Set Test Variable ${random_userid}
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -0600132
133 # Set invalid password for newly created user.
134 ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command
135 ... user set password ${random_userid} ${invalid_password}
136
Sushma M M97fccae2020-07-27 14:55:19 -0500137 # Delay added for user password to get set.
138 Sleep 5s
139
Anusha Dathatria54cddc2019-08-07 10:01:16 -0500140 Should Contain ${msg} Set User Password command failed
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -0600141
142Verify Setting IPMI Root User With New Name
143 [Documentation] Verify error while setting IPMI root user with new
144 ... name.
145 [Tags] Verify_Setting_IPMI_Root_User_With_New_Name
146
147 # Set invalid password for newly created user.
148 ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command
149 ... user set name ${root_userid} abcd
150
151 Should Contain ${msg} Set User Name command failed
152
153
Rahul Maheshwaric19f8382019-02-20 08:19:22 -0600154Verify IPMI User Password Via Test Command
155 [Documentation] Verify IPMI user password using test command.
156 [Tags] Verify_IPMI_User_Password_Via_Test_Command
Tony Leef9379e82020-01-08 18:20:38 +0800157 [Teardown] Run Keywords FFDC On Test Case Fail AND
158 ... Delete Created User ${random_userid}
Rahul Maheshwaric19f8382019-02-20 08:19:22 -0600159
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600160 ${random_userid} ${random_username}= Create Random IPMI User
Tony Leef9379e82020-01-08 18:20:38 +0800161 Set Test Variable ${random_userid}
Rahul Maheshwaric19f8382019-02-20 08:19:22 -0600162
163 # Set valid password for newly created user.
164 Run IPMI Standard Command
165 ... user set password ${random_userid} ${valid_password}
166
167 # Verify newly set password using test command.
168 ${msg}= Run IPMI Standard Command
169 ... user test ${random_userid} ${max_password_length} ${valid_password}
170
171 Should Contain ${msg} Success
172
173
Rahul Maheshwarief0a7352019-02-20 11:07:48 -0600174Verify Setting Valid Password For IPMI User
175 [Documentation] Set valid password for IPMI user and verify.
176 [Tags] Verify_Setting_Valid_Password_For_IPMI_User
Tony Leef9379e82020-01-08 18:20:38 +0800177 [Teardown] Run Keywords FFDC On Test Case Fail AND
178 ... Delete Created User ${random_userid}
Rahul Maheshwarief0a7352019-02-20 11:07:48 -0600179
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600180 ${random_userid} ${random_username}= Create Random IPMI User
Tony Leef9379e82020-01-08 18:20:38 +0800181 Set Test Variable ${random_userid}
Rahul Maheshwarief0a7352019-02-20 11:07:48 -0600182
183 # Set valid password for newly created user.
184 Run IPMI Standard Command
185 ... user set password ${random_userid} ${valid_password}
186
Rahul Maheshwarief0a7352019-02-20 11:07:48 -0600187 Run IPMI Standard Command user enable ${random_userid}
188
Rahul Maheshwari7d232ab2019-08-29 06:44:16 -0500189 # Delay added for IPMI user to get enable
190 Sleep 5s
191
Rahul Maheshwarief0a7352019-02-20 11:07:48 -0600192 # Set admin privilege and enable IPMI messaging for newly created user
193 Set Channel Access ${random_userid} ipmi=on privilege=${admin_level_priv}
194
195 Verify IPMI Username And Password ${random_username} ${valid_password}
196
197
Rahul Maheshwari404da0d2019-02-18 23:24:17 -0600198Verify IPMI User Creation With Same Name
199 [Documentation] Verify error while creating two IPMI user with same name.
200 [Tags] Verify_IPMI_User_Creation_With_Same_Name
Tony Leef9379e82020-01-08 18:20:38 +0800201 [Teardown] Run Keywords FFDC On Test Case Fail AND
202 ... Delete Created User 2
Rahul Maheshwari404da0d2019-02-18 23:24:17 -0600203
204 ${random_username}= Generate Random String 8 [LETTERS]
205 IPMI Create User 2 ${random_username}
206
207 # Set same username for another IPMI user.
208 ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command
209 ... user set name 3 ${random_username}
210 Should Contain ${msg} Invalid data field in request
211
212
213Verify Setting IPMI User With Null Password
214 [Documentation] Verify error while setting IPMI user with null
215 ... password.
216 [Tags] Verify_Setting_IPMI_User_With_Null_Password
Tony Leef9379e82020-01-08 18:20:38 +0800217 [Teardown] Run Keywords FFDC On Test Case Fail AND
218 ... Delete Created User ${random_userid}
Rahul Maheshwari404da0d2019-02-18 23:24:17 -0600219
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600220 ${random_userid} ${random_username}= Create Random IPMI User
Tony Leef9379e82020-01-08 18:20:38 +0800221 Set Test Variable ${random_userid}
Rahul Maheshwari404da0d2019-02-18 23:24:17 -0600222
223 # Set null password for newly created user.
224 ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command
225 ... user set password ${random_userid} ""
226
227 Should Contain ${msg} Invalid data field in request
228
229
Rahul Maheshwari645a1132019-02-18 03:29:27 -0600230Verify IPMI User Deletion
231 [Documentation] Delete user via IPMI and verify.
232 [Tags] Verify_IPMI_User_Deletion
Tony Leef9379e82020-01-08 18:20:38 +0800233 [Teardown] Run Keywords FFDC On Test Case Fail AND
234 ... Delete Created User ${random_userid}
Rahul Maheshwari645a1132019-02-18 03:29:27 -0600235
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600236 ${random_userid} ${random_username}= Create Random IPMI User
Tony Leef9379e82020-01-08 18:20:38 +0800237 Set Test Variable ${random_userid}
Rahul Maheshwari645a1132019-02-18 03:29:27 -0600238 # Delete IPMI User and verify
239 Run IPMI Standard Command user set name ${random_userid} ""
Rahul Maheshwari4f4688f2019-02-28 00:49:10 -0600240 ${user_info}= Get User Info ${random_userid}
Rahul Maheshwari645a1132019-02-18 03:29:27 -0600241 Should Be Equal ${user_info['user_name']} ${EMPTY}
242
243
Rahul Maheshwaric05bf562019-03-01 04:02:53 -0600244Test IPMI User Privilege Level
245 [Documentation] Verify IPMI user with user privilege can only run user level commands.
246 [Tags] Test_IPMI_User_Privilege_Level
247 [Template] Test IPMI User Privilege
Tony Leef9379e82020-01-08 18:20:38 +0800248 [Teardown] Run Keywords FFDC On Test Case Fail AND
249 ... Delete Created User ${random_userid}
Rahul Maheshwaric05bf562019-03-01 04:02:53 -0600250
251 #Privilege level User Cmd Status Operator Cmd Status Admin Cmd Status
252 ${user_priv} Passed Failed Failed
253
254
255Test IPMI Operator Privilege Level
256 [Documentation] Verify IPMI user with operator privilege can only run user and operator levels commands.
257 ... level is set to operator.
258 [Tags] Test_IPMI_Operator_Privilege_Level
259 [Template] Test IPMI User Privilege
Tony Leef9379e82020-01-08 18:20:38 +0800260 [Teardown] Run Keywords FFDC On Test Case Fail AND
261 ... Delete Created User ${random_userid}
Rahul Maheshwaric05bf562019-03-01 04:02:53 -0600262
263 #Privilege level User Cmd Status Operator Cmd Status Admin Cmd Status
264 ${operator_priv} Passed Passed Failed
265
266
267Test IPMI Administrator Privilege Level
268 [Documentation] Verify IPMI user with admin privilege can run all levels command.
269 [Tags] Test_IPMI_Administrator_Privilege_Level
270 [Template] Test IPMI User Privilege
Tony Leef9379e82020-01-08 18:20:38 +0800271 [Teardown] Run Keywords FFDC On Test Case Fail AND
272 ... Delete Created User ${random_userid}
Rahul Maheshwaric05bf562019-03-01 04:02:53 -0600273
274 #Privilege level User Cmd Status Operator Cmd Status Admin Cmd Status
275 ${admin_level_priv} Passed Passed Passed
276
277
278Test IPMI No Access Privilege Level
279 [Documentation] Verify IPMI user with no access privilege can not run only any level command.
280 [Tags] Test_IPMI_No_Access_Privilege_Level
281 [Template] Test IPMI User Privilege
Tony Leef9379e82020-01-08 18:20:38 +0800282 [Teardown] Run Keywords FFDC On Test Case Fail AND
283 ... Delete Created User ${random_userid}
Rahul Maheshwaric05bf562019-03-01 04:02:53 -0600284
285 #Privilege level User Cmd Status Operator Cmd Status Admin Cmd Status
286 ${no_access_priv} Failed Failed Failed
287
288
Rahul Maheshwari0c71f5e2019-02-20 03:52:55 -0600289Enable IPMI User And Verify
290 [Documentation] Enable IPMI user and verify that the user is able
291 ... to run IPMI command.
292 [Tags] Enable_IPMI_User_And_Verify
Tony Leef9379e82020-01-08 18:20:38 +0800293 [Teardown] Run Keywords FFDC On Test Case Fail AND
294 ... Delete Created User ${random_userid}
Rahul Maheshwari0c71f5e2019-02-20 03:52:55 -0600295
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600296 ${random_userid} ${random_username}= Create Random IPMI User
Tony Leef9379e82020-01-08 18:20:38 +0800297 Set Test Variable ${random_userid}
Rahul Maheshwari0c71f5e2019-02-20 03:52:55 -0600298 Run IPMI Standard Command
299 ... user set password ${random_userid} ${valid_password}
300
301 # Set admin privilege and enable IPMI messaging for newly created user.
302 Set Channel Access ${random_userid} ipmi=on privilege=${admin_level_priv}
303
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600304 # Delay added for user privilege to get set.
Rahul Maheshwari62c8aea2019-09-27 05:23:12 -0500305 Sleep 5s
306
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600307 Enable IPMI User And Verify ${random_userid}
Rahul Maheshwari0c71f5e2019-02-20 03:52:55 -0600308
309 # Verify that enabled IPMI user is able to run IPMI command.
310 Verify IPMI Username And Password ${random_username} ${valid_password}
311
312
313Disable IPMI User And Verify
314 [Documentation] Disable IPMI user and verify that that the user
315 ... is unable to run IPMI command.
316 [Tags] Disable_IPMI_User_And_Verify
Tony Leef9379e82020-01-08 18:20:38 +0800317 [Teardown] Run Keywords FFDC On Test Case Fail AND
318 ... Delete Created User ${random_userid}
Rahul Maheshwari0c71f5e2019-02-20 03:52:55 -0600319
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600320 ${random_userid} ${random_username}= Create Random IPMI User
Tony Leef9379e82020-01-08 18:20:38 +0800321 Set Test Variable ${random_userid}
Rahul Maheshwari0c71f5e2019-02-20 03:52:55 -0600322 Run IPMI Standard Command
323 ... user set password ${random_userid} ${valid_password}
324
325 # Set admin privilege and enable IPMI messaging for newly created user.
326 Set Channel Access ${random_userid} ipmi=on privilege=${admin_level_priv}
327
328 # Disable IPMI user and verify.
329 Run IPMI Standard Command user disable ${random_userid}
330 ${user_info}= Get User Info ${random_userid}
331 Should Be Equal ${user_info['enable_status']} disabled
332
333 # Verify that disabled IPMI user is unable to run IPMI command.
334 ${msg}= Run Keyword And Expect Error * Verify IPMI Username And Password
335 ... ${random_username} ${valid_password}
Rahul Maheshwaric3d1e962019-03-06 23:53:21 -0600336 Should Contain ${msg} Unable to establish IPMI
Rahul Maheshwari0c71f5e2019-02-20 03:52:55 -0600337
Rahul Maheshwaric19f8382019-02-20 08:19:22 -0600338
Rahul Maheshwaridd63c742019-02-27 23:03:54 -0600339Verify IPMI Root User Password Change
340 [Documentation] Change IPMI root user password and verify that
341 ... root user is able to run IPMI command.
342 [Tags] Verify_IPMI_Root_User_Password_Change
Tony Leef9379e82020-01-08 18:20:38 +0800343 [Teardown] Run Keywords FFDC On Test Case Fail AND
344 ... Wait Until Keyword Succeeds 15 sec 5 sec
Rahul Maheshwaridd63c742019-02-27 23:03:54 -0600345 ... Set Default Password For IPMI Root User
346
Anusha Dathatri9f84bc82020-01-28 07:46:48 -0600347 # User input password should be minimum 8 characters long.
348 Valid Length OPENBMC_PASSWORD min_length=8
Rahul Maheshwaridd63c742019-02-27 23:03:54 -0600349 # Set new password for root user.
350 Run IPMI Standard Command
351 ... user set password ${root_userid} ${valid_password}
352
Sushma M M97fccae2020-07-27 14:55:19 -0500353 # Delay added for user password to get set.
354 Sleep 5s
355
Rahul Maheshwaridd63c742019-02-27 23:03:54 -0600356 # Verify that root user is able to run IPMI command using new password.
Rahul Maheshwari62c8aea2019-09-27 05:23:12 -0500357 Wait Until Keyword Succeeds 15 sec 5 sec Verify IPMI Username And Password
358 ... root ${valid_password}
Rahul Maheshwaridd63c742019-02-27 23:03:54 -0600359
360
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500361Verify Administrator And No Access Privilege For Different Channels
362 [Documentation] Set administrator and no access privilege for different channels and verify.
363 [Tags] Verify_Administrator_And_No_Access_Privilege_For_Different_Channels
ganesanb0ae36202022-02-17 12:14:37 +0000364 [Setup] Check Active Ethernet Channels
Tony Leef9379e82020-01-08 18:20:38 +0800365 [Teardown] Run Keywords FFDC On Test Case Fail AND
366 ... Delete Created User ${random_userid}
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500367
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600368 ${random_userid} ${random_username}= Create Random IPMI User
Tony Leef9379e82020-01-08 18:20:38 +0800369 Set Test Variable ${random_userid}
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500370 Run IPMI Standard Command
371 ... user set password ${random_userid} ${valid_password}
372
373 # Set admin privilege for newly created user with channel 1.
ganesanb0ae36202022-02-17 12:14:37 +0000374 Set Channel Access ${random_userid} ipmi=on privilege=${admin_level_priv} ${CHANNEL_NUMBER}
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500375
376 # Set no access privilege for newly created user with channel 2.
ganesanb0ae36202022-02-17 12:14:37 +0000377 Set Channel Access ${random_userid} ipmi=on privilege=${no_access_priv} ${secondary_channel_number}
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500378
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600379 Enable IPMI User And Verify ${random_userid}
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500380
381 # Verify that user is able to run administrator level IPMI command with channel 1.
ganesanb0ae36202022-02-17 12:14:37 +0000382 Verify IPMI Command ${random_username} ${valid_password} Administrator ${CHANNEL_NUMBER}
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500383
384 # Verify that user is unable to run IPMI command with channel 2.
ganesanb0ae36202022-02-17 12:14:37 +0000385 Run IPMI Standard Command sel info ${secondary_channel_number} expected_rc=${1} U=${random_username} P=${valid_password}
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500386
387
388Verify Operator And User Privilege For Different Channels
389 [Documentation] Set operator and user privilege for different channels and verify.
390 [Tags] Verify_Operator_And_User_Privilege_For_Different_Channels
ganesanb0ae36202022-02-17 12:14:37 +0000391 [Setup] Check Active Ethernet Channels
Tony Leef9379e82020-01-08 18:20:38 +0800392 [Teardown] Run Keywords FFDC On Test Case Fail AND
393 ... Delete Created User ${random_userid}
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500394
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600395 ${random_userid} ${random_username}= Create Random IPMI User
Tony Leef9379e82020-01-08 18:20:38 +0800396 Set Test Variable ${random_userid}
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500397 Run IPMI Standard Command
398 ... user set password ${random_userid} ${valid_password}
399
400 # Set operator privilege for newly created user with channel 1.
ganesanb0ae36202022-02-17 12:14:37 +0000401 Set Channel Access ${random_userid} ipmi=on privilege=${operator_priv} ${CHANNEL_NUMBER}
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500402
403 # Set user privilege for newly created user with channel 2.
ganesanb0ae36202022-02-17 12:14:37 +0000404 Set Channel Access ${random_userid} ipmi=on privilege=${user_priv} ${secondary_channel_number}
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500405
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600406 Enable IPMI User And Verify ${random_userid}
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500407
408 # Verify that user is able to run operator level IPMI command with channel 1.
ganesanb0ae36202022-02-17 12:14:37 +0000409 Verify IPMI Command ${random_username} ${valid_password} Operator ${CHANNEL_NUMBER}
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500410
411 # Verify that user is able to run user level IPMI command with channel 2.
ganesanb0ae36202022-02-17 12:14:37 +0000412 Verify IPMI Command ${random_username} ${valid_password} User ${secondary_channel_number}
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500413
414
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600415Verify Setting IPMI User With Max Password Length
416 [Documentation] Verify IPMI user creation with password length of 20 characters.
417 [Tags] Verify_Setting_IPMI_User_With_Max_Password_Length
418 [Template] Set User Password And Verify
419
420 # password_length password_option expected_status
421 20 20 ${True}
422
423
424Verify Setting IPMI User With Invalid Password Length
425 [Documentation] Verify that IPMI user cannot be set with 21 character password using 16 char
426 ... or 20 char password option.
427 [Tags] Verify_Setting_IPMI_User_With_Invalid_Password_Length
428 [Template] Set User Password And Verify
429
430 # password_length password_option expected_status
431 21 16 ${False}
432 21 20 ${False}
433
434
435Verify Setting IPMI User With 16 Character Password
436 [Documentation] Verify that IPMI user can create a 16 character password using 16 char or 20
437 ... char password option.
438 [Tags] Verify_Setting_IPMI_User_With_16_Character_Password
439 [Template] Set User Password And Verify
440
441 # password_length password_option expected_status
442 16 16 ${True}
443 16 20 ${True}
444
445
446Verify Default Selection Of 16 Character Password For IPMI User
447 [Documentation] Verify that ipmitool by default opts for the 16 character option when given a
448 ... password whose length is in between 17 and 20.
449 [Tags] Verify_Default_Selection_Of_16_Character_Password_For_IPMI_User
450 [Template] Set User Password And Verify
451
452 # password_length password_option expected_status
453 17 16 ${True}
454 20 16 ${True}
455
456
Anusha Dathatri466816f2020-01-30 05:12:36 -0600457Verify Minimum Password Length For IPMI User
458 [Documentation] Verify minimum password length of 8 characters.
459 [Tags] Verify_Minimum_Password_Length_For_IPMI_User
460 [Template] Set User Password And Verify
461
462 # password_length password_option expected_status
463 7 16 ${False}
464 8 16 ${True}
465 7 20 ${False}
466 8 20 ${True}
467
468
Ashwini Chandrappa5cefabf2021-08-30 23:48:14 -0500469Verify Continuous IPMI Command Execution
470 [Documentation] Verify that continuous IPMI command execution runs fine.
471 [Tags] Verify_Continuous_IPMI_Command_Execution
472
473 FOR ${i} IN RANGE ${USER_LOOP_COUNT}
474 Run IPMI Standard Command lan print
475 Run IPMI Standard Command power status
476 Run IPMI Standard Command fru list
477 Run IPMI Standard Command sel list
478 END
479
480
chithragc0582f72021-12-08 10:34:23 -0500481Modify IPMI User
482 [Documentation] Verify modified IPMI user is communicating via IPMI.
483 [Tags] Modify_IPMI_User
484 [Teardown] Run Keywords FFDC On Test Case Fail AND
485 ... Delete Created User ${random_userid}
486
487 ${random_userid} ${random_username}= Create Random IPMI User
488 Set Test Variable ${random_userid}
489 Run IPMI Standard Command
490 ... user set password ${random_userid} ${valid_password}
491
492 # Set admin privilege and enable IPMI messaging for newly created user.
493 Set Channel Access ${random_userid} ipmi=on privilege=${admin_level_priv}
494
495 # Delay added for user privilege to get set.
496 Sleep 5s
497
498 Enable IPMI User And Verify ${random_userid}
499
500 # Verify that user is able to run administrator level IPMI command.
501 Verify IPMI Command ${random_username} ${valid_password} Administrator ${CHANNEL_NUMBER}
502
503 # Set different username for same IPMI user.
504 Run IPMI Standard Command
505 ... user set name ${random_userid} ${new_username}
506
507 # Verify that user is able to run administrator level IPMI command.
508 Verify IPMI Command ${new_username} ${valid_password} Administrator ${CHANNEL_NUMBER}
509
510
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -0600511*** Keywords ***
512
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600513Create Random IPMI User
514 [Documentation] Create IPMI user with random username and userid and return those fields.
515
516 ${random_username}= Generate Random String 8 [LETTERS]
517 ${random_userid}= Evaluate random.randint(2, 15) modules=random
518 IPMI Create User ${random_userid} ${random_username}
519 [Return] ${random_userid} ${random_username}
520
521
522Enable IPMI User And Verify
523 [Documentation] Enable the userid and verify that it has been enabled.
524 [Arguments] ${userid}
525
526 # Description of argument(s):
527 # userid A numeric userid (e.g. "4").
528
529 Run IPMI Standard Command user enable ${userid}
530 ${user_info}= Get User Info ${userid}
531 Valid Value user_info['enable_status'] ['enabled']
532
533
Rahul Maheshwaridd63c742019-02-27 23:03:54 -0600534Set Default Password For IPMI Root User
535 [Documentation] Set default password for IPMI root user (i.e. 0penBmc).
Rahul Maheshwaridd63c742019-02-27 23:03:54 -0600536 # Set default password for root user.
537 ${result}= Run External IPMI Standard Command
538 ... user set password ${root_userid} ${OPENBMC_PASSWORD}
539 ... P=${valid_password}
540 Should Contain ${result} Set User Password command successful
541
542 # Verify that root user is able to run IPMI command using default password.
543 Verify IPMI Username And Password root ${OPENBMC_PASSWORD}
544
Rahul Maheshwarief0a7352019-02-20 11:07:48 -0600545
Rahul Maheshwaric05bf562019-03-01 04:02:53 -0600546Test IPMI User Privilege
547 [Documentation] Test IPMI user privilege by executing IPMI command with different privileges.
548 [Arguments] ${privilege_level} ${user_cmd_status} ${operator_cmd_status} ${admin_cmd_status}
549
550 # Description of argument(s):
551 # privilege_level Privilege level of IPMI user (e.g. 4, 3).
552 # user_cmd_status Expected status of IPMI command run with the "User"
553 # privilege (i.e. "Passed" or "Failed").
554 # operator_cmd_status Expected status of IPMI command run with the "Operator"
555 # privilege (i.e. "Passed" or "Failed").
556 # admin_cmd_status Expected status of IPMI command run with the "Administrator"
557 # privilege (i.e. "Passed" or "Failed").
558
559 # Create IPMI user and set valid password.
560 ${random_username}= Generate Random String 8 [LETTERS]
561 ${random_userid}= Evaluate random.randint(2, 15) modules=random
562 IPMI Create User ${random_userid} ${random_username}
Tony Leef9379e82020-01-08 18:20:38 +0800563 Set Test Variable ${random_userid}
Rahul Maheshwaric05bf562019-03-01 04:02:53 -0600564 Run IPMI Standard Command
565 ... user set password ${random_userid} ${valid_password}
566
567 # Set privilege and enable IPMI messaging for newly created user.
568 Set Channel Access ${random_userid} ipmi=on privilege=${privilege_level}
569
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600570 # Delay added for user privilege to get set.
Rahul Maheshwari62c8aea2019-09-27 05:23:12 -0500571 Sleep 5s
572
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600573 Enable IPMI User And Verify ${random_userid}
Rahul Maheshwaric05bf562019-03-01 04:02:53 -0600574
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500575 Verify IPMI Command ${random_username} ${valid_password} User
576 ... expected_status=${user_cmd_status}
577 Verify IPMI Command ${random_username} ${valid_password} Operator
578 ... expected_status=${operator_cmd_status}
579 Verify IPMI Command ${random_username} ${valid_password} Administrator
580 ... expected_status=${admin_cmd_status}
Rahul Maheshwaric05bf562019-03-01 04:02:53 -0600581
582
583Verify IPMI Command
584 [Documentation] Verify IPMI command execution with given username,
585 ... password, privilege and expected status.
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500586 [Arguments] ${username} ${password} ${privilege} ${channel}=${1} ${expected_status}=Passed
Rahul Maheshwaric05bf562019-03-01 04:02:53 -0600587 # Description of argument(s):
588 # username The user name (e.g. "root", "robert", etc.).
589 # password The user password (e.g. "0penBmc", "0penBmc1", etc.).
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600590 # privilege The session privilege for IPMI command (e.g. "User", "Operator", etc.).
Rahul Maheshwari8e175622019-05-20 05:30:32 -0500591 # channel The user channel number (e.g. "1" or "2").
Rahul Maheshwaric05bf562019-03-01 04:02:53 -0600592 # expected_status Expected status of IPMI command run with the user
593 # of above password and privilege (i.e. "Passed" or "Failed").
594
595 ${expected_rc}= Set Variable If '${expected_status}' == 'Passed' ${0} ${1}
Rahul Maheshwariceb282e2019-09-16 00:11:41 -0500596 Wait Until Keyword Succeeds 15 sec 5 sec Run IPMI Standard Command
597 ... sel info ${channel} expected_rc=${expected_rc} U=${username} P=${password}
Rahul Maheshwaric05bf562019-03-01 04:02:53 -0600598 ... L=${privilege}
599
600
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600601Set User Password And Verify
602 [Documentation] Create a user and set its password with given length and option.
603 [Arguments] ${password_length} ${password_option} ${expected_result}
Tony Leef9379e82020-01-08 18:20:38 +0800604 [Teardown] Run Keyword Delete Created User ${random_userid}
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600605 # Description of argument(s):
606 # password_length Length of password to be generated and used (e.g. "16").
607 # password_option Password length option to be given in IPMI command (e.g. "16", "20").
608 # expected_result Expected result for setting the user's password (e.g. "True", "False").
609
610 Rprint Vars password_length password_option expected_result
611 ${random_userid} ${random_username}= Create Random IPMI User
Tony Leef9379e82020-01-08 18:20:38 +0800612 Set Test Variable ${random_userid}
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600613 ${password}= Get From Dictionary ${password_values} ${password_length}
614 Rprint Vars random_userid password
615
616 # Set password for newly created user.
617 ${status}= Run Keyword And Return Status Run IPMI Standard Command
618 ... user set password ${random_userid} ${password} ${password_option}
619 Rprint Vars status
620 Valid Value status [${expected_result}]
Anusha Dathatri7f810712020-01-07 04:13:16 -0600621 Return From Keyword If '${expected_result}' == '${False}'
Anusha Dathatridd8e7d82019-12-03 07:45:30 -0600622
623 # Set admin privilege and enable IPMI messaging for newly created user.
624 Set Channel Access ${random_userid} ipmi=on privilege=${admin_level_priv}
625
626 # Delay added for user privilege to get set.
627 Sleep 5s
628
629 Enable IPMI User And Verify ${random_userid}
630
631 # For password_option 16, passwords with length between 17 and 20 will be truncated.
632 # For all other cases, passwords will be retained as it is to verify.
633 ${truncated_password}= Set Variable ${password[:${password_option}]}
634 Rprint Vars truncated_password
635 ${status}= Run Keyword And Return Status Verify IPMI Username And Password ${random_username}
636 ... ${truncated_password}
637 Rprint Vars status
638 Valid Value status [${expected_result}]
639
640
Rahul Maheshwarif646baa2019-02-20 12:29:35 -0600641Test Teardown Execution
642 [Documentation] Do the test teardown execution.
643
644 FFDC On Test Case Fail
Tony Leef9379e82020-01-08 18:20:38 +0800645
646
647Delete Created User
648 [Documentation] Delete created IPMI user.
649 [Arguments] ${userid}
650 # Description of argument(s):
651 # userid The user ID (e.g. "1", "2", etc.).
652
653 Run IPMI Standard Command user set name ${userid} ""
Ashwini Chandrappa5cefabf2021-08-30 23:48:14 -0500654 Sleep 5s
ganesanb0ae36202022-02-17 12:14:37 +0000655
656
657Check Active Ethernet Channels
658 [Documentation] Check active ethernet channels and set suite variables.
659
660 ${channel_number_list}= Get Active Ethernet Channel List
661 ${channel_length}= Get Length ${channel_number_list}
662 Skip If '${channel_length}' == '1'
663 ... msg= Skips this test case as only one channel was in active.
664
665 FOR ${channel_num} IN @{channel_number_list}
666 ${secondary_channel_number}= Set Variable If ${channel_num} != ${CHANNEL_NUMBER} ${channel_num}
667 END
668
669 Set Suite Variable ${secondary_channel_number}
Ashwini Chandrappa12be4b42022-03-15 23:02:07 -0500670
671
672Suite Setup Execution
673 [Documentation] Check for the enabled user.
674
675 # Check for the enabled user count
676 ${resp}= Run IPMI Standard Command user summary ${CHANNEL_NUMBER}
677 ${enabled_user_count}=
678 ... Get Lines Containing String ${resp} Enabled User Count
679
680 Should not contain ${enabled_user_count} 15
681 ... msg=IPMI have reached maximum user count