blob: 886b846f83b59e8ca1bdaab5e27963bd5e64a93b [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 Maheshwaric19f8382019-02-20 08:19:22 -0600202
Rahul Maheshwariddfc0cb2019-02-07 23:43:19 -0600203*** Keywords ***
204
205IPMI Create User
206 [Documentation] Create IPMI user with given userid and username.
207 [Arguments] ${userid} ${username}
208
209 # Description of argument(s):
210 # userid The user ID (e.g. "1", "2", etc.).
211 # username The user name (e.g. "root", "robert", etc.).
212
213 ${ipmi_cmd}= Catenate user set name ${userid} ${username}
214 ${resp}= Run IPMI Standard Command ${ipmi_cmd}
215 ${user_info}= Get User Info ${userid}
216 Should Be Equal ${user_info['user_name']} ${username}
217
Rahul Maheshwarif646baa2019-02-20 12:29:35 -0600218
Rahul Maheshwarief0a7352019-02-20 11:07:48 -0600219Set Channel Access
220 [Documentation] Verify that user is able to run IPMI command
221 ... with given username and password.
222 [Arguments] ${userid} ${options} ${channel}=1
223
224 # Description of argument(s):
225 # userid The user ID (e.g. "1", "2", etc.).
226 # options Set channel command options (e.g.
227 # "link=on", "ipmi=on", etc.).
228 # channel_number The user's channel number (e.g. "1").
229
230 ${ipmi_cmd}= Catenate SEPARATOR=
231 ... ${ipmi_setaccess_cmd}${SPACE}${channel}${SPACE}${userid}
232 ... ${SPACE}${options}
233 Run IPMI Standard Command ${ipmi_cmd}
234
235
236Verify IPMI Username And Password
237 [Documentation] Verify that user is able to run IPMI command
238 ... with given username and password.
239 [Arguments] ${username} ${password}
240
241 ${ipmi_cmd}= Catenate SEPARATOR=
242 ... ${IPMI_EXT_CMD}${SPACE}${USER_OPTION}${SPACE}${username}
243 ... ${SPACE}${PASSWORD_OPTION}${SPACE}${password}
244 ... ${SPACE}${HOST}${SPACE}${OPENBMC_HOST}${SPACE}${SEL_INFO_CMD}
245 ${rc} ${output}= Run and Return RC and Output ${ipmi_cmd}
246 Should Be Equal ${rc} ${0} msg=${output}
247 Should Contain ${output} SEL Information
248
249
Rahul Maheshwarif646baa2019-02-20 12:29:35 -0600250Delete All Non Root IPMI User
251 [Documentation] Delete all non-root IPMI user.
252
253 :FOR ${userid} IN RANGE 2 16
254 \ ${user_info}= Get User Info ${userid}
255 \ Run Keyword If "${user_info['user_name']}" != ""
256 ... Run IPMI Standard Command user set name ${userid} ""
257
258
259Test Teardown Execution
260 [Documentation] Do the test teardown execution.
261
262 FFDC On Test Case Fail
263 Delete All Non Root IPMI User
264