blob: 4c946a59d9417dda9e8facd026c5e55f33faad9e [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
6Library ../lib/ipmi_utils.py
7
Rahul Maheshwarif646baa2019-02-20 12:29:35 -06008Test Teardown Test Teardown Execution
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -06009
10
11*** Variables ***
12
13${invalid_username} user%
14${invalid_password} abc123
15${root_userid} 1
16${operator_level_priv} 0x3
Rahul Maheshwarief0a7352019-02-20 11:07:48 -060017${admin_level_priv} 4
Rahul Maheshwaric19f8382019-02-20 08:19:22 -060018${valid_password} 0penBmc1
19${max_password_length} 20
Rahul Maheshwarief0a7352019-02-20 11:07:48 -060020${ipmi_setaccess_cmd} channel setaccess
21${IPMI_EXT_CMD} ipmitool -I lanplus -C 3
22${PASSWORD_OPTION} -P
23${USER_OPTION} -U
24${SEL_INFO_CMD} sel info
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -060025
26*** Test Cases ***
27
Rahul Maheshwariffc77352019-02-25 09:05:27 -060028Verify IPMI User Summary
29 [Documentation] Verify IPMI maximum supported IPMI user ID and
30 ... enabled user form user summary
31 [Tags] Verify_IPMI_User_Summary
32
33 # Delete all non-root IPMI (i.e. except userid 1)
34 Delete All Non Root IPMI User
35
36 # Create a valid user and enable it.
37 ${random_username}= Generate Random String 8 [LETTERS]
38 ${random_userid}= Evaluate random.randint(2, 15) modules=random
39 IPMI Create User ${random_userid} ${random_username}
40 Run IPMI Standard Command user enable ${random_userid}
41
42 # Verify maximum user count IPMI local user can have. Also verify
43 # currently enabled users.
44 ${resp}= Run IPMI Standard Command user summary
45 ${enabled_user_count}=
46 ... Get Lines Containing String ${resp} Enabled User Count
47 ${maximum_ids}= Get Lines Containing String ${resp} Maximum IDs
48 Should Contain ${enabled_user_count} 2
49 Should Contain ${maximum_ids} 15
50
51
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -060052Verify IPMI User Creation With Valid Name And ID
53 [Documentation] Create user via IPMI and verify.
54 [Tags] Test_IPMI_User_Creation_With_Valid_Name_And_ID
55
56 ${random_username}= Generate Random String 8 [LETTERS]
Rahul Maheshwari976a1702019-02-21 01:47:58 -060057 ${random_userid}= Evaluate random.randint(2, 15) modules=random
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -060058 IPMI Create User ${random_userid} ${random_username}
59
60
61Verify IPMI User Creation With Invalid Name
62 [Documentation] Verify error while creating IPMI user with invalid
George Keishingc2a6f092019-02-20 12:26:54 -060063 ... name(e.g. user name with special characters).
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -060064 [Tags] Verify_IPMI_User_Creation_With_Invalid_Name
65
Rahul Maheshwari976a1702019-02-21 01:47:58 -060066 ${random_userid}= Evaluate random.randint(2, 15) modules=random
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -060067 ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command
68 ... user set name ${random_userid} ${invalid_username}
69 Should Contain ${msg} Invalid data
70
71
72Verify IPMI User Creation With Invalid ID
73 [Documentation] Verify error while creating IPMI user with invalid
74 ... ID(i.e. any number greater than 15 or 0).
75 [Tags] Verify_IPMI_User_Creation_With_Invalid_ID
76
77 @{id_list}= Create List
78 ${random_invalid_id}= Evaluate random.randint(16, 1000) modules=random
79 Append To List ${id_list} ${random_invalid_id}
80 Append To List ${id_list} 0
81
82 :FOR ${id} IN @{id_list}
83 \ ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command
84 \ ... user set name ${id} newuser
85 \ Should Contain ${msg} User ID is limited to range
86
87
88Verify Setting IPMI User With Invalid Password
89 [Documentation] Verify error while setting IPMI user with invalid
90 ... password.
91 [Tags] Verify_Setting_IPMI_User_With_Invalid_Password
92
93 # Create IPMI user.
94 ${random_username}= Generate Random String 8 [LETTERS]
Rahul Maheshwari976a1702019-02-21 01:47:58 -060095 ${random_userid}= Evaluate random.randint(2, 15) modules=random
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -060096 IPMI Create User ${random_userid} ${random_username}
97
98 # Set invalid password for newly created user.
99 ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command
100 ... user set password ${random_userid} ${invalid_password}
101
102 Should Contain ${msg} Invalid data field in request
103
104
105Verify Setting IPMI Root User With New Name
106 [Documentation] Verify error while setting IPMI root user with new
107 ... name.
108 [Tags] Verify_Setting_IPMI_Root_User_With_New_Name
109
110 # Set invalid password for newly created user.
111 ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command
112 ... user set name ${root_userid} abcd
113
114 Should Contain ${msg} Set User Name command failed
115
116
Rahul Maheshwaric19f8382019-02-20 08:19:22 -0600117Verify IPMI User Password Via Test Command
118 [Documentation] Verify IPMI user password using test command.
119 [Tags] Verify_IPMI_User_Password_Via_Test_Command
120
121 # Create IPMI user.
122 ${random_username}= Generate Random String 8 [LETTERS]
123 ${random_userid}= Evaluate random.randint(2, 15) modules=random
124 IPMI Create User ${random_userid} ${random_username}
125
126 # Set valid password for newly created user.
127 Run IPMI Standard Command
128 ... user set password ${random_userid} ${valid_password}
129
130 # Verify newly set password using test command.
131 ${msg}= Run IPMI Standard Command
132 ... user test ${random_userid} ${max_password_length} ${valid_password}
133
134 Should Contain ${msg} Success
135
136
Rahul Maheshwarief0a7352019-02-20 11:07:48 -0600137Verify Setting Valid Password For IPMI User
138 [Documentation] Set valid password for IPMI user and verify.
139 [Tags] Verify_Setting_Valid_Password_For_IPMI_User
140
141 # Create IPMI user.
142 ${random_username}= Generate Random String 8 [LETTERS]
143 ${random_userid}= Evaluate random.randint(2, 15) modules=random
144 IPMI Create User ${random_userid} ${random_username}
145
146 # Set valid password for newly created user.
147 Run IPMI Standard Command
148 ... user set password ${random_userid} ${valid_password}
149
150 # Enable IPMI user
151 Run IPMI Standard Command user enable ${random_userid}
152
153 # Set admin privilege and enable IPMI messaging for newly created user
154 Set Channel Access ${random_userid} ipmi=on privilege=${admin_level_priv}
155
156 Verify IPMI Username And Password ${random_username} ${valid_password}
157
158
Rahul Maheshwari404da0d2019-02-18 23:24:17 -0600159Verify IPMI User Creation With Same Name
160 [Documentation] Verify error while creating two IPMI user with same name.
161 [Tags] Verify_IPMI_User_Creation_With_Same_Name
162
163 ${random_username}= Generate Random String 8 [LETTERS]
164 IPMI Create User 2 ${random_username}
165
166 # Set same username for another IPMI user.
167 ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command
168 ... user set name 3 ${random_username}
169 Should Contain ${msg} Invalid data field in request
170
171
172Verify Setting IPMI User With Null Password
173 [Documentation] Verify error while setting IPMI user with null
174 ... password.
175 [Tags] Verify_Setting_IPMI_User_With_Null_Password
176
177 # Create IPMI user.
178 ${random_username}= Generate Random String 8 [LETTERS]
Rahul Maheshwari976a1702019-02-21 01:47:58 -0600179 ${random_userid}= Evaluate random.randint(2, 15) modules=random
Rahul Maheshwari404da0d2019-02-18 23:24:17 -0600180 IPMI Create User ${random_userid} ${random_username}
181
182 # Set null password for newly created user.
183 ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command
184 ... user set password ${random_userid} ""
185
186 Should Contain ${msg} Invalid data field in request
187
188
Rahul Maheshwari645a1132019-02-18 03:29:27 -0600189Verify IPMI User Deletion
190 [Documentation] Delete user via IPMI and verify.
191 [Tags] Verify_IPMI_User_Deletion
192
193 ${random_username}= Generate Random String 8 [LETTERS]
194 ${random_userid}= Evaluate random.randint(2, 15) modules=random
195 IPMI Create User ${random_userid} ${random_username}
196
197 # Delete IPMI User and verify
198 Run IPMI Standard Command user set name ${random_userid} ""
199 Should Be Equal ${user_info['user_name']} ${EMPTY}
200
201
Rahul Maheshwari0c71f5e2019-02-20 03:52:55 -0600202Enable IPMI User And Verify
203 [Documentation] Enable IPMI user and verify that the user is able
204 ... to run IPMI command.
205 [Tags] Enable_IPMI_User_And_Verify
206
207 # Create IPMI user and set valid password.
208 ${random_username}= Generate Random String 8 [LETTERS]
209 ${random_userid}= Evaluate random.randint(2, 15) modules=random
210 IPMI Create User ${random_userid} ${random_username}
211 Run IPMI Standard Command
212 ... user set password ${random_userid} ${valid_password}
213
214 # Set admin privilege and enable IPMI messaging for newly created user.
215 Set Channel Access ${random_userid} ipmi=on privilege=${admin_level_priv}
216
217 # Enable IPMI user and verify.
218 Run IPMI Standard Command user enable ${random_userid}
219 ${user_info}= Get User Info ${random_userid}
220 Should Be Equal ${user_info['enable_status']} enabled
221
222 # Verify that enabled IPMI user is able to run IPMI command.
223 Verify IPMI Username And Password ${random_username} ${valid_password}
224
225
226Disable IPMI User And Verify
227 [Documentation] Disable IPMI user and verify that that the user
228 ... is unable to run IPMI command.
229 [Tags] Disable_IPMI_User_And_Verify
230
231 # Create IPMI user and set valid password.
232 ${random_username}= Generate Random String 8 [LETTERS]
233 ${random_userid}= Evaluate random.randint(2, 15) modules=random
234 IPMI Create User ${random_userid} ${random_username}
235 Run IPMI Standard Command
236 ... user set password ${random_userid} ${valid_password}
237
238 # Set admin privilege and enable IPMI messaging for newly created user.
239 Set Channel Access ${random_userid} ipmi=on privilege=${admin_level_priv}
240
241 # Disable IPMI user and verify.
242 Run IPMI Standard Command user disable ${random_userid}
243 ${user_info}= Get User Info ${random_userid}
244 Should Be Equal ${user_info['enable_status']} disabled
245
246 # Verify that disabled IPMI user is unable to run IPMI command.
247 ${msg}= Run Keyword And Expect Error * Verify IPMI Username And Password
248 ... ${random_username} ${valid_password}
249 Should Contain ${msg} IPMI command fails
250
Rahul Maheshwaric19f8382019-02-20 08:19:22 -0600251
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -0600252*** Keywords ***
253
254IPMI Create User
255 [Documentation] Create IPMI user with given userid and username.
256 [Arguments] ${userid} ${username}
257
258 # Description of argument(s):
259 # userid The user ID (e.g. "1", "2", etc.).
260 # username The user name (e.g. "root", "robert", etc.).
261
262 ${ipmi_cmd}= Catenate user set name ${userid} ${username}
263 ${resp}= Run IPMI Standard Command ${ipmi_cmd}
264 ${user_info}= Get User Info ${userid}
265 Should Be Equal ${user_info['user_name']} ${username}
266
Rahul Maheshwarif646baa2019-02-20 12:29:35 -0600267
Rahul Maheshwarief0a7352019-02-20 11:07:48 -0600268Set Channel Access
269 [Documentation] Verify that user is able to run IPMI command
270 ... with given username and password.
271 [Arguments] ${userid} ${options} ${channel}=1
272
273 # Description of argument(s):
274 # userid The user ID (e.g. "1", "2", etc.).
275 # options Set channel command options (e.g.
276 # "link=on", "ipmi=on", etc.).
277 # channel_number The user's channel number (e.g. "1").
278
279 ${ipmi_cmd}= Catenate SEPARATOR=
280 ... ${ipmi_setaccess_cmd}${SPACE}${channel}${SPACE}${userid}
281 ... ${SPACE}${options}
282 Run IPMI Standard Command ${ipmi_cmd}
283
284
285Verify IPMI Username And Password
286 [Documentation] Verify that user is able to run IPMI command
287 ... with given username and password.
288 [Arguments] ${username} ${password}
289
290 ${ipmi_cmd}= Catenate SEPARATOR=
291 ... ${IPMI_EXT_CMD}${SPACE}${USER_OPTION}${SPACE}${username}
292 ... ${SPACE}${PASSWORD_OPTION}${SPACE}${password}
293 ... ${SPACE}${HOST}${SPACE}${OPENBMC_HOST}${SPACE}${SEL_INFO_CMD}
294 ${rc} ${output}= Run and Return RC and Output ${ipmi_cmd}
Rahul Maheshwari0c71f5e2019-02-20 03:52:55 -0600295 Should Be Equal ${rc} ${0} msg=IPMI command fails
Rahul Maheshwarief0a7352019-02-20 11:07:48 -0600296 Should Contain ${output} SEL Information
297
298
Rahul Maheshwarif646baa2019-02-20 12:29:35 -0600299Delete All Non Root IPMI User
300 [Documentation] Delete all non-root IPMI user.
301
302 :FOR ${userid} IN RANGE 2 16
303 \ ${user_info}= Get User Info ${userid}
304 \ Run Keyword If "${user_info['user_name']}" != ""
305 ... Run IPMI Standard Command user set name ${userid} ""
306
307
308Test Teardown Execution
309 [Documentation] Do the test teardown execution.
310
311 FFDC On Test Case Fail
312 Delete All Non Root IPMI User
313