blob: 793ff97b27998b9f7ca6c2c15a5576cf57aa99ff [file] [log] [blame]
Sivas SRR6aa101f2019-02-19 22:31:55 -06001*** Settings ***
2Documentation Test Redfish user account.
3
4Resource ../../lib/resource.robot
5Resource ../../lib/bmc_redfish_resource.robot
6Resource ../../lib/openbmc_ffdc.robot
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -05007Resource ../../lib/bmc_redfish_utils.robot
Sivas SRR6aa101f2019-02-19 22:31:55 -06008
manashsarma654cbc12021-09-23 02:28:12 -05009Library SSHLibrary
10
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -050011Test Setup Redfish.Login
Sivas SRR6aa101f2019-02-19 22:31:55 -060012Test Teardown Test Teardown Execution
13
Sandhya Somashekar37122b62019-06-18 06:02:02 -050014*** Variables ***
15
16${account_lockout_duration} ${30}
17${account_lockout_threshold} ${3}
18
George Keishingf8e18192023-07-05 14:26:27 +053019${ssh_status} ${True}
20
Sivas SRR6aa101f2019-02-19 22:31:55 -060021** Test Cases **
22
23Verify AccountService Available
Sivas SRRfa6831c2019-02-22 00:12:00 -060024 [Documentation] Verify Redfish account service is available.
Sivas SRR6aa101f2019-02-19 22:31:55 -060025 [Tags] Verify_AccountService_Available
26
George Keishing97c93942019-03-04 12:45:07 -060027 ${resp} = Redfish_utils.Get Attribute /redfish/v1/AccountService ServiceEnabled
Sivas SRR6aa101f2019-02-19 22:31:55 -060028 Should Be Equal As Strings ${resp} ${True}
29
Rahul Maheshwarid0aa72b2022-08-23 06:44:07 -050030
31Verify Redfish Admin User Persistence After Reboot
32 [Documentation] Verify Redfish admin user persistence after reboot.
33 [Tags] Verify_Redfish_Admin_User_Persistence_After_Reboot
34 [Setup] Run Keywords Redfish.Login AND
35 ... Redfish Create User admin_user TestPwd123 Administrator ${True}
36 [Teardown] Run Keywords Redfish.Delete /redfish/v1/AccountService/Accounts/admin_user
37 ... AND Test Teardown Execution
Sandhya Somashekara83fb472019-08-29 02:26:21 -050038
39 # Reboot BMC.
40 Redfish OBMC Reboot (off) stack_mode=normal
Sandhya Somashekara83fb472019-08-29 02:26:21 -050041
42 # Verify users after reboot.
43 Redfish Verify User admin_user TestPwd123 Administrator ${True}
Rahul Maheshwarid0aa72b2022-08-23 06:44:07 -050044
45
46Verify Redfish Operator User Persistence After Reboot
47 [Documentation] Verify Redfish operator user persistence after reboot.
48 [Tags] Verify_Redfish_Operator_User_Persistence_After_Reboot
49 [Setup] Run Keywords Redfish.Login AND
50 ... Redfish Create User operator_user TestPwd123 Operator ${True}
51 [Teardown] Run Keywords Redfish.Delete /redfish/v1/AccountService/Accounts/operator_user
52 ... AND Test Teardown Execution
53
54 # Reboot BMC.
55 Redfish OBMC Reboot (off) stack_mode=normal
56
57 # Verify users after reboot.
Sandhya Somashekara83fb472019-08-29 02:26:21 -050058 Redfish Verify User operator_user TestPwd123 Operator ${True}
Rahul Maheshwarid0aa72b2022-08-23 06:44:07 -050059
60
61Verify Redfish Readonly User Persistence After Reboot
62 [Documentation] Verify Redfish readonly user persistence after reboot.
63 [Tags] Verify_Redfish_Readonly_User_Persistence_After_Reboot
64 [Setup] Run Keywords Redfish.Login AND
65 ... Redfish Create User readonly_user TestPwd123 ReadOnly ${True}
66 [Teardown] Run Keywords Redfish.Delete /redfish/v1/AccountService/Accounts/readonly_user
67 ... AND Test Teardown Execution
68
69 # Reboot BMC.
70 Redfish OBMC Reboot (off) stack_mode=normal
71
72 # Verify users after reboot.
Anusha Dathatri4062b442020-02-03 04:39:15 -060073 Redfish Verify User readonly_user TestPwd123 ReadOnly ${True}
Sandhya Somashekara83fb472019-08-29 02:26:21 -050074
Sandhya Somashekara83fb472019-08-29 02:26:21 -050075
Rahul Maheshwaricbc4c0b2022-04-25 05:29:25 -050076Redfish Create and Verify Admin User
77 [Documentation] Create a Redfish user with administrator role and verify.
George Keishingf5176902022-05-12 04:23:59 -050078 [Tags] Redfish_Create_and_Verify_Admin_User
Sandhya Somashekar00f59cc2019-03-05 03:39:47 -060079 [Template] Redfish Create And Verify User
80
Sandhya Somashekare92b1e62019-04-25 05:27:45 -050081 #username password role_id enabled
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -050082 admin_user TestPwd123 Administrator ${True}
Rahul Maheshwaricbc4c0b2022-04-25 05:29:25 -050083
84
85Redfish Create and Verify Operator User
86 [Documentation] Create a Redfish user with operator role and verify.
87 [Tags] Redfish_Create_and_Verify_Operator_User
88 [Template] Redfish Create And Verify User
89
90 #username password role_id enabled
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -050091 operator_user TestPwd123 Operator ${True}
Rahul Maheshwaricbc4c0b2022-04-25 05:29:25 -050092
93
94Redfish Create and Verify Readonly User
95 [Documentation] Create a Redfish user with readonly role and verify.
96 [Tags] Redfish_Create_and_Verify_Readonly_User
97 [Template] Redfish Create And Verify User
98
99 #username password role_id enabled
Anusha Dathatri4062b442020-02-03 04:39:15 -0600100 readonly_user TestPwd123 ReadOnly ${True}
Sivas SRR6aa101f2019-02-19 22:31:55 -0600101
Rahul Maheshwaricbc4c0b2022-04-25 05:29:25 -0500102
103Verify Redfish Admin User With Wrong Password
104 [Documentation] Verify Redfish admin user with wrong password.
105 [Tags] Verify_Redfish_Admin_User_With_Wrong_Password
Sandhya Somashekar33aa48c2019-03-13 05:54:49 -0500106 [Template] Verify Redfish User with Wrong Password
107
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500108 #username password role_id enabled wrong_password
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500109 admin_user TestPwd123 Administrator ${True} alskjhfwurh
Rahul Maheshwaricbc4c0b2022-04-25 05:29:25 -0500110
111
112Verify Redfish Operator User with Wrong Password
113 [Documentation] Verify Redfish operator user with wrong password.
114 [Tags] Verify_Redfish_Operator_User_with_Wrong_Password
115 [Template] Verify Redfish User with Wrong Password
116
117 #username password role_id enabled wrong_password
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500118 operator_user TestPwd123 Operator ${True} 12j8a8uakjhdaosiruf024
Rahul Maheshwaricbc4c0b2022-04-25 05:29:25 -0500119
120
121Verify Redfish Readonly User With Wrong Password
122 [Documentation] Verify Redfish readonly user with wrong password.
123 [Tags] Verify_Redfish_Readonly_User_With_Wrong_Password
124 [Template] Verify Redfish User with Wrong Password
125
126 #username password role_id enabled wrong_password
Anusha Dathatri4062b442020-02-03 04:39:15 -0600127 readonly_user TestPwd123 ReadOnly ${True} 12
Sandhya Somashekar33aa48c2019-03-13 05:54:49 -0500128
Rahul Maheshwaricbc4c0b2022-04-25 05:29:25 -0500129
Rahul Maheshwaricbc4c0b2022-04-25 05:29:25 -0500130Verify Login with Deleted Redfish Admin User
131 [Documentation] Verify login with deleted Redfish admin user.
132 [Tags] Verify_Login_with_Deleted_Redfish_Admin_User
Sandhya Somashekaraf402ca2019-03-18 05:59:19 -0500133 [Template] Verify Login with Deleted Redfish User
134
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500135 #username password role_id enabled
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500136 admin_user TestPwd123 Administrator ${True}
Rahul Maheshwaricbc4c0b2022-04-25 05:29:25 -0500137
138
139Verify Login with Deleted Redfish Operator User
140 [Documentation] Verify login with deleted Redfish operator user.
141 [Tags] Verify_Login_with_Deleted_Redfish_Operator_User
142 [Template] Verify Login with Deleted Redfish User
143
144 #username password role_id enabled
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500145 operator_user TestPwd123 Operator ${True}
Rahul Maheshwaricbc4c0b2022-04-25 05:29:25 -0500146
147
148Verify Login with Deleted Redfish Readonly User
149 [Documentation] Verify login with deleted Redfish readonly user.
150 [Tags] Verify_Login_with_Deleted_Redfish_Readonly_User
151 [Template] Verify Login with Deleted Redfish User
152
153 #username password role_id enabled
Anusha Dathatri4062b442020-02-03 04:39:15 -0600154 readonly_user TestPwd123 ReadOnly ${True}
Sandhya Somashekaraf402ca2019-03-18 05:59:19 -0500155
Rahul Maheshwaricbc4c0b2022-04-25 05:29:25 -0500156
157Verify Admin User Creation Without Enabling It
158 [Documentation] Verify admin user creation without enabling it.
159 [Tags] Verify_Admin_User_Creation_Without_Enabling_It
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500160 [Template] Verify Create User Without Enabling
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500161
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500162 #username password role_id enabled
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500163 admin_user TestPwd123 Administrator ${False}
Rahul Maheshwaricbc4c0b2022-04-25 05:29:25 -0500164
165
166Verify Operator User Creation Without Enabling It
167 [Documentation] Verify operator user creation without enabling it.
168 [Tags] Verify_Operator_User_Creation_Without_Enabling_It
169 [Template] Verify Create User Without Enabling
170
171 #username password role_id enabled
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500172 operator_user TestPwd123 Operator ${False}
Rahul Maheshwaricbc4c0b2022-04-25 05:29:25 -0500173
174
175Verify Readonly User Creation Without Enabling It
176 [Documentation] Verify readonly user creation without enabling it.
177 [Tags] Verify_Readonly_User_Creation_Without_Enabling_It
178 [Template] Verify Create User Without Enabling
179
180 #username password role_id enabled
Anusha Dathatri4062b442020-02-03 04:39:15 -0600181 readonly_user TestPwd123 ReadOnly ${False}
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500182
Rahul Maheshwaricbc4c0b2022-04-25 05:29:25 -0500183
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500184Verify User Creation With Invalid Role Id
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500185 [Documentation] Verify user creation with invalid role ID.
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500186 [Tags] Verify_User_Creation_With_Invalid_Role_Id
187
188 # Make sure the user account in question does not already exist.
Anusha Dathatri466816f2020-01-30 05:12:36 -0600189 Redfish.Delete /redfish/v1/AccountService/Accounts/test_user
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500190 ... valid_status_codes=[${HTTP_OK}, ${HTTP_NOT_FOUND}]
191
192 # Create specified user.
193 ${payload}= Create Dictionary
194 ... UserName=test_user Password=TestPwd123 RoleId=wrongroleid Enabled=${True}
Anusha Dathatri466816f2020-01-30 05:12:36 -0600195 Redfish.Post /redfish/v1/AccountService/Accounts/ body=&{payload}
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500196 ... valid_status_codes=[${HTTP_BAD_REQUEST}]
197
Sandhya Somashekar8c5b2492019-05-16 05:19:03 -0500198Verify Error Upon Creating Same Users With Different Privileges
199 [Documentation] Verify error upon creating same users with different privileges.
200 [Tags] Verify_Error_Upon_Creating_Same_Users_With_Different_Privileges
201
202 Redfish Create User test_user TestPwd123 Administrator ${True}
203
204 # Create specified user.
205 ${payload}= Create Dictionary
Nandish-Matti232a6f02023-04-07 05:54:32 -0500206 ... UserName=test_user Password=TestPwd123 RoleId=ReadOnly Enabled=${True}
Anusha Dathatri466816f2020-01-30 05:12:36 -0600207 Redfish.Post /redfish/v1/AccountService/Accounts/ body=&{payload}
Sandhya Somashekar8c5b2492019-05-16 05:19:03 -0500208 ... valid_status_codes=[${HTTP_BAD_REQUEST}]
209
Anusha Dathatri466816f2020-01-30 05:12:36 -0600210 Redfish.Delete /redfish/v1/AccountService/Accounts/test_user
Sandhya Somashekar8c5b2492019-05-16 05:19:03 -0500211
Rahul Maheshwari124ebef2022-08-23 12:06:59 -0500212
Sandhya Somashekar8c5b2492019-05-16 05:19:03 -0500213Verify Modifying User Attributes
214 [Documentation] Verify modifying user attributes.
215 [Tags] Verify_Modifying_User_Attributes
Rahul Maheshwari124ebef2022-08-23 12:06:59 -0500216
Sandhya Somashekar8c5b2492019-05-16 05:19:03 -0500217 # Create Redfish users.
218 Redfish Create User admin_user TestPwd123 Administrator ${True}
Anusha Dathatri4062b442020-02-03 04:39:15 -0600219 Redfish Create User readonly_user TestPwd123 ReadOnly ${True}
Sandhya Somashekar8c5b2492019-05-16 05:19:03 -0500220
Sandhya Somashekar8c5b2492019-05-16 05:19:03 -0500221 # Make sure the new user account does not already exist.
Anusha Dathatri466816f2020-01-30 05:12:36 -0600222 Redfish.Delete /redfish/v1/AccountService/Accounts/newadmin_user
Sandhya Somashekar8c5b2492019-05-16 05:19:03 -0500223 ... valid_status_codes=[${HTTP_OK}, ${HTTP_NOT_FOUND}]
224
225 # Update admin_user username using Redfish.
226 ${payload}= Create Dictionary UserName=newadmin_user
Anusha Dathatri466816f2020-01-30 05:12:36 -0600227 Redfish.Patch /redfish/v1/AccountService/Accounts/admin_user body=&{payload}
Sandhya Somashekar8c5b2492019-05-16 05:19:03 -0500228
Anusha Dathatri4062b442020-02-03 04:39:15 -0600229 # Update readonly_user role using Redfish.
Rahul Maheshwari124ebef2022-08-23 12:06:59 -0500230 ${payload}= Create Dictionary RoleId=Administrator
Anusha Dathatri466816f2020-01-30 05:12:36 -0600231 Redfish.Patch /redfish/v1/AccountService/Accounts/readonly_user body=&{payload}
Sandhya Somashekar8c5b2492019-05-16 05:19:03 -0500232
Sandhya Somashekar8c5b2492019-05-16 05:19:03 -0500233 # Verify users after updating
234 Redfish Verify User newadmin_user TestPwd123 Administrator ${True}
Rahul Maheshwari124ebef2022-08-23 12:06:59 -0500235 Redfish Verify User readonly_user TestPwd123 Administrator ${True}
Sandhya Somashekar8c5b2492019-05-16 05:19:03 -0500236
237 # Delete created users.
Anusha Dathatri466816f2020-01-30 05:12:36 -0600238 Redfish.Delete /redfish/v1/AccountService/Accounts/newadmin_user
Anusha Dathatri466816f2020-01-30 05:12:36 -0600239 Redfish.Delete /redfish/v1/AccountService/Accounts/readonly_user
Sandhya Somashekar8c5b2492019-05-16 05:19:03 -0500240
Rahul Maheshwari124ebef2022-08-23 12:06:59 -0500241
242Verify Modifying Operator User Attributes
243 [Documentation] Verify modifying operator user attributes.
244 [Tags] Verify_Modifying_Operator_User_Attributes
245 [Setup] Run Keywords Redfish.Login AND
246 ... Redfish Create User operator_user TestPwd123 Operator ${True}
247 [Teardown] Run Keywords Redfish.Delete /redfish/v1/AccountService/Accounts/operator_user
248 ... AND Test Teardown Execution
249
250 # Update operator_user password using Redfish.
251 ${payload}= Create Dictionary Password=NewTestPwd123
252 Redfish.Patch /redfish/v1/AccountService/Accounts/operator_user body=&{payload}
253
254 # Verify users after updating
255 Redfish Verify User operator_user NewTestPwd123 Operator ${True}
256
257
Sandhya Somashekar37122b62019-06-18 06:02:02 -0500258Verify User Account Locked
259 [Documentation] Verify user account locked upon trying with invalid password.
260 [Tags] Verify_User_Account_Locked
261
262 Redfish Create User admin_user TestPwd123 Administrator ${True}
263
Joy Onyerikwu1483ce02019-06-26 14:56:36 -0500264 ${payload}= Create Dictionary AccountLockoutThreshold=${account_lockout_threshold}
265 ... AccountLockoutDuration=${account_lockout_duration}
266 Redfish.Patch ${REDFISH_ACCOUNTS_SERVICE_URI} body=${payload}
Sandhya Somashekar37122b62019-06-18 06:02:02 -0500267
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500268 Redfish.Logout
269
Sandhya Somashekar37122b62019-06-18 06:02:02 -0500270 # Make ${account_lockout_threshold} failed login attempts.
271 Repeat Keyword ${account_lockout_threshold} times
272 ... Run Keyword And Expect Error InvalidCredentialsError* Redfish.Login admin_user abc123
273
274 # Verify that legitimate login fails due to lockout.
275 Run Keyword And Expect Error InvalidCredentialsError*
276 ... Redfish.Login admin_user TestPwd123
277
278 # Wait for lockout duration to expire and then verify that login works.
279 Sleep ${account_lockout_duration}s
280 Redfish.Login admin_user TestPwd123
281
282 Redfish.Logout
Sandhya Somashekar8c5b2492019-05-16 05:19:03 -0500283
Sandhya Somashekar7a237472019-07-15 02:06:39 -0500284 Redfish.Login
285
Anusha Dathatri466816f2020-01-30 05:12:36 -0600286 Redfish.Delete /redfish/v1/AccountService/Accounts/admin_user
Sandhya Somashekar7a237472019-07-15 02:06:39 -0500287
aravinth0510746884b2022-09-29 16:04:07 +0000288
289Verify User Account Unlock
290 [Documentation] Verify manually unlocking the account before lockout time
291 [Tags] Verify_User_Account_Unlock
George Keishinga36926b2023-05-17 21:54:34 +0530292 [Teardown] Run Keywords Redfish.Logout
293 ... AND Redfish.Login
aravinth0510746884b2022-09-29 16:04:07 +0000294 ... AND Redfish.Delete /redfish/v1/AccountService/Accounts/test_user
295 ... AND SSHLibrary.Close All Connections
296
297 Redfish Create User test_user TestPwd123 Administrator ${True}
298
299 ${payload}= Create Dictionary
300 ... AccountLockoutThreshold=${account_lockout_threshold}
301 ... AccountLockoutDuration=${account_lockout_duration}
302 Redfish.Patch ${REDFISH_ACCOUNTS_SERVICE_URI} body=${payload}
303
304 Redfish.Logout
305
306 # Make ${account_lockout_threshold} failed login attempts.
307 Repeat Keyword ${account_lockout_threshold} times
308 ... Run Keyword And Expect Error InvalidCredentialsError*
309 ... Redfish.Login test_user abc123
310
311 # Ensure SSH Login with locked account gets failed
312 SSHLibrary.Open Connection ${OPENBMC_HOST}
313 Run Keyword And Expect Error Authentication failed*
314 ... SSHLibrary.Login test_user TestPwd123
315
316 # Verify that legitimate login fails due to lockout.
317 Run Keyword And Expect Error InvalidCredentialsError*
318 ... Redfish.Login test_user TestPwd123
319
320 ${payload}= Create Dictionary Locked=${FALSE}
321
322 # Manually unlock the account before lockout threshold expires
323 Redfish.Login
324 Redfish.Patch ${REDFISH_ACCOUNTS_URI}test_user body=${payload}
325 Redfish.Logout
326
327 # Try redfish login with the recently unlocked account
328 Redfish.Login test_user TestPwd123
329
330 # Try SSH login with the unlocked account
331 SSHLibrary.Open Connection ${OPENBMC_HOST}
332 SSHLibrary.Login test_user TestPwd123
333
334
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500335Verify Admin User Privilege
336 [Documentation] Verify admin user privilege.
337 [Tags] Verify_Admin_User_Privilege
338
339 Redfish Create User admin_user TestPwd123 Administrator ${True}
Anusha Dathatri4062b442020-02-03 04:39:15 -0600340 Redfish Create User readonly_user TestPwd123 ReadOnly ${True}
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500341
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500342 Redfish.Logout
343
Rahul Maheshwari3bc08642022-08-23 12:49:48 -0500344 Redfish.Login admin_user TestPwd123
345
346 # Change password of 'readonly' user with admin user.
347 Redfish.Patch /redfish/v1/AccountService/Accounts/readonly_user body={'Password': 'NewTestPwd123'}
348
349 # Verify modified user.
350 Redfish Verify User readonly_user NewTestPwd123 ReadOnly ${True}
351
352 # Note: Delete user would work here because a root login is
353 # performed as part of "Redfish Verify User" keyword's teardown.
354 Redfish.Delete /redfish/v1/AccountService/Accounts/admin_user
355 Redfish.Delete /redfish/v1/AccountService/Accounts/readonly_user
356
357
358Verify Operator User Role Change Using Admin Privilege User
359 [Documentation] Verify operator user role change using admin privilege user
360 [Tags] Verify_Operator_User_Role_Change_Using_Admin_Privilege_User
361
362 Redfish Create User admin_user TestPwd123 Administrator ${True}
363 Redfish Create User operator_user TestPwd123 Operator ${True}
364
365 Redfish.Logout
366
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500367 # Change role ID of operator user with admin user.
368 # Login with admin user.
369 Redfish.Login admin_user TestPwd123
370
371 # Modify Role ID of Operator user.
Anusha Dathatri466816f2020-01-30 05:12:36 -0600372 Redfish.Patch /redfish/v1/AccountService/Accounts/operator_user body={'RoleId': 'Administrator'}
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500373
374 # Verify modified user.
375 Redfish Verify User operator_user TestPwd123 Administrator ${True}
376
Anusha Dathatri466816f2020-01-30 05:12:36 -0600377 Redfish.Delete /redfish/v1/AccountService/Accounts/admin_user
378 Redfish.Delete /redfish/v1/AccountService/Accounts/operator_user
Rahul Maheshwari3bc08642022-08-23 12:49:48 -0500379
Sandhya Somashekar7a237472019-07-15 02:06:39 -0500380
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500381Verify Operator User Privilege
382 [Documentation] Verify operator user privilege.
George Keishing5236ec52022-01-31 12:07:58 -0600383 [Tags] Verify_Operator_User_Privilege
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500384
385 Redfish Create User admin_user TestPwd123 Administrator ${True}
386 Redfish Create User operator_user TestPwd123 Operator ${True}
387
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500388 Redfish.Logout
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500389 # Login with operator user.
390 Redfish.Login operator_user TestPwd123
391
George Keishing093c1bd2020-02-10 09:47:34 -0600392 # Verify BMC reset.
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500393 Run Keyword And Expect Error ValueError* Redfish BMC Reset Operation
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500394
395 # Attempt to change password of admin user with operator user.
Anusha Dathatri466816f2020-01-30 05:12:36 -0600396 Redfish.Patch /redfish/v1/AccountService/Accounts/admin_user body={'Password': 'NewTestPwd123'}
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500397 ... valid_status_codes=[${HTTP_FORBIDDEN}]
398
399 Redfish.Logout
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500400
Sandhya Somashekar7a237472019-07-15 02:06:39 -0500401 Redfish.Login
402
Anusha Dathatri466816f2020-01-30 05:12:36 -0600403 Redfish.Delete /redfish/v1/AccountService/Accounts/admin_user
404 Redfish.Delete /redfish/v1/AccountService/Accounts/operator_user
Sandhya Somashekar7a237472019-07-15 02:06:39 -0500405
406
Anusha Dathatri4062b442020-02-03 04:39:15 -0600407Verify ReadOnly User Privilege
408 [Documentation] Verify ReadOnly user privilege.
409 [Tags] Verify_ReadOnly_User_Privilege
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500410
Anusha Dathatri4062b442020-02-03 04:39:15 -0600411 Redfish Create User readonly_user TestPwd123 ReadOnly ${True}
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500412 Redfish.Logout
413
414 # Login with read_only user.
415 Redfish.Login readonly_user TestPwd123
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500416
417 # Read system level data.
418 ${system_model}= Redfish_Utils.Get Attribute
419 ... ${SYSTEM_BASE_URI} Model
420
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500421 Redfish.Logout
Sandhya Somashekar7a237472019-07-15 02:06:39 -0500422 Redfish.Login
Anusha Dathatri4062b442020-02-03 04:39:15 -0600423 Redfish.Delete ${REDFISH_ACCOUNTS_URI}readonly_user
Sandhya Somashekar7a237472019-07-15 02:06:39 -0500424
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500425
Anusha Dathatri466816f2020-01-30 05:12:36 -0600426Verify Minimum Password Length For Redfish User
427 [Documentation] Verify minimum password length for new and existing user.
428 [Tags] Verify_Minimum_Password_Length_For_Redfish_User
429
430 ${user_name}= Set Variable testUser
431
432 # Make sure the user account in question does not already exist.
433 Redfish.Delete /redfish/v1/AccountService/Accounts/${user_name}
434 ... valid_status_codes=[${HTTP_OK}, ${HTTP_NOT_FOUND}]
435
436 # Try to create a user with invalid length password.
437 ${payload}= Create Dictionary
438 ... UserName=${user_name} Password=UserPwd RoleId=Administrator Enabled=${True}
439 Redfish.Post /redfish/v1/AccountService/Accounts/ body=&{payload}
440 ... valid_status_codes=[${HTTP_BAD_REQUEST}]
441
442 # Create specified user with valid length password.
443 Set To Dictionary ${payload} Password UserPwd1
444 Redfish.Post /redfish/v1/AccountService/Accounts/ body=&{payload}
445 ... valid_status_codes=[${HTTP_CREATED}]
446
447 # Try to change to an invalid password.
448 Redfish.Patch /redfish/v1/AccountService/Accounts/${user_name} body={'Password': 'UserPwd'}
449 ... valid_status_codes=[${HTTP_BAD_REQUEST}]
450
451 # Change to a valid password.
452 Redfish.Patch /redfish/v1/AccountService/Accounts/${user_name} body={'Password': 'UserPwd1'}
453
454 # Verify login.
455 Redfish.Logout
456 Redfish.Login ${user_name} UserPwd1
457 Redfish.Logout
458 Redfish.Login
459 Redfish.Delete /redfish/v1/AccountService/Accounts/${user_name}
460
461
Tony Lee94335f42021-02-04 15:16:39 +0800462Verify Standard User Roles Defined By Redfish
463 [Documentation] Verify standard user roles defined by Redfish.
464 [Tags] Verify_Standard_User_Roles_Defined_By_Redfish
465
466 ${member_list}= Redfish_Utils.Get Member List
467 ... /redfish/v1/AccountService/Roles
468
469 @{roles}= Create List
470 ... /redfish/v1/AccountService/Roles/Administrator
471 ... /redfish/v1/AccountService/Roles/Operator
472 ... /redfish/v1/AccountService/Roles/ReadOnly
473
474 List Should Contain Sub List ${member_list} ${roles}
475
476 # The standard roles are:
477
478 # | Role name | Assigned privileges |
479 # | Administrator | Login, ConfigureManager, ConfigureUsers, ConfigureComponents, ConfigureSelf |
480 # | Operator | Login, ConfigureComponents, ConfigureSelf |
481 # | ReadOnly | Login, ConfigureSelf |
482
483 @{admin}= Create List Login ConfigureManager ConfigureUsers ConfigureComponents ConfigureSelf
484 @{operator}= Create List Login ConfigureComponents ConfigureSelf
485 @{readOnly}= Create List Login ConfigureSelf
486
487 ${roles_dict}= create dictionary admin_privileges=${admin} operator_privileges=${operator}
488 ... readOnly_privileges=${readOnly}
489
490 ${resp}= redfish.Get /redfish/v1/AccountService/Roles/Administrator
491 List Should Contain Sub List ${resp.dict['AssignedPrivileges']} ${roles_dict['admin_privileges']}
492
493 ${resp}= redfish.Get /redfish/v1/AccountService/Roles/Operator
494 List Should Contain Sub List ${resp.dict['AssignedPrivileges']} ${roles_dict['operator_privileges']}
495
496 ${resp}= redfish.Get /redfish/v1/AccountService/Roles/ReadOnly
497 List Should Contain Sub List ${resp.dict['AssignedPrivileges']} ${roles_dict['readOnly_privileges']}
498
499
manashsarma4910aa22021-07-26 09:12:36 -0500500Verify Error While Deleting Root User
501 [Documentation] Verify error while deleting root user.
502 [Tags] Verify_Error_While_Deleting_Root_User
503
504 Redfish.Delete /redfish/v1/AccountService/Accounts/root valid_status_codes=[${HTTP_FORBIDDEN}]
505
506
manashsarma654cbc12021-09-23 02:28:12 -0500507Verify SSH Login Access With Admin User
George Keishingf8e18192023-07-05 14:26:27 +0530508 [Documentation] Verify that admin user have SSH login access.
509 ... By default, admin should have access but there could be
510 ... case where admin user shell access is restricted by design
511 ... in the community sphere..
manashsarma654cbc12021-09-23 02:28:12 -0500512 [Tags] Verify_SSH_Login_Access_With_Admin_User
513
514 # Create an admin User.
515 Redfish Create User new_admin TestPwd1 Administrator ${True}
516
517 # Attempt SSH login with admin user.
518 SSHLibrary.Open Connection ${OPENBMC_HOST}
519 ${status}= Run Keyword And Return Status SSHLibrary.Login new_admin TestPwd1
George Keishingf8e18192023-07-05 14:26:27 +0530520
521 # By default ssh_status is True, user can change the status via CLI
522 # -v ssh_status:False
523 Should Be Equal As Strings "${status}" "${ssh_status}"
manashsarma654cbc12021-09-23 02:28:12 -0500524
George Keishinge8015b32022-09-19 09:38:47 -0500525 Redfish.Login
526 Redfish.Delete /redfish/v1/AccountService/Accounts/new_admin
527
manashsarma654cbc12021-09-23 02:28:12 -0500528
aravinth0510746884b2022-09-29 16:04:07 +0000529Verify Configure BasicAuth Enable And Disable
530 [Documentation] Verify configure basicauth enable and disable
531 [Tags] Verify_Configure_BasicAuth_Enable_And_Disable
532 [Template] Template For Configure Auth Methods
533
534 # auth_method
535 BasicAuth
536 XToken
537
Sivas SRR6aa101f2019-02-19 22:31:55 -0600538*** Keywords ***
539
Sivas SRR6aa101f2019-02-19 22:31:55 -0600540Test Teardown Execution
541 [Documentation] Do the post test teardown.
542
Anusha Dathatridb769702020-02-12 01:02:30 -0600543 Run Keyword And Ignore Error Redfish.Logout
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500544 FFDC On Test Case Fail
545
Sandhya Somashekar00f59cc2019-03-05 03:39:47 -0600546
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500547Redfish Create User
548 [Documentation] Redfish create user.
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500549 [Arguments] ${username} ${password} ${role_id} ${enabled} ${login_check}=${True}
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500550
551 # Description of argument(s):
552 # username The username to be created.
553 # password The password to be assigned.
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500554 # role_id The role ID of the user to be created
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500555 # (e.g. "Administrator", "Operator", etc.).
556 # enabled Indicates whether the username being created
557 # should be enabled (${True}, ${False}).
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500558 # login_check Checks user login for created user.
559 # (e.g. ${True}, ${False}).
Sandhya Somashekar8c5b2492019-05-16 05:19:03 -0500560
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500561 # Make sure the user account in question does not already exist.
Anusha Dathatri466816f2020-01-30 05:12:36 -0600562 Redfish.Delete /redfish/v1/AccountService/Accounts/${userName}
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500563 ... valid_status_codes=[${HTTP_OK}, ${HTTP_NOT_FOUND}]
564
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500565 # Create specified user.
566 ${payload}= Create Dictionary
567 ... UserName=${username} Password=${password} RoleId=${role_id} Enabled=${enabled}
Anusha Dathatri466816f2020-01-30 05:12:36 -0600568 Redfish.Post /redfish/v1/AccountService/Accounts/ body=&{payload}
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500569 ... valid_status_codes=[${HTTP_CREATED}]
570
Rahul Maheshwari9928b1d2021-07-19 04:59:55 -0500571 # Resetting faillock count as a workaround for issue
Anusha Dathatrif7268b52020-02-19 01:03:49 -0600572 # openbmc/phosphor-user-manager#4
nagarjunb2261267e92022-03-30 21:04:16 +0530573 ${cmd}= Catenate test -f /usr/sbin/faillock && /usr/sbin/faillock --user USER --reset
574 ... || /usr/sbin/pam_tally2 -u ${username} --reset
Anusha Dathatrif7268b52020-02-19 01:03:49 -0600575 Bmc Execute Command ${cmd}
576
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500577 # Verify login with created user.
578 ${status}= Run Keyword If '${login_check}' == '${True}'
579 ... Verify Redfish User Login ${username} ${password}
580 Run Keyword If '${login_check}' == '${True}' Should Be Equal ${status} ${enabled}
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500581
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500582 # Validate Role ID of created user.
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500583 ${role_config}= Redfish_Utils.Get Attribute
Anusha Dathatri466816f2020-01-30 05:12:36 -0600584 ... /redfish/v1/AccountService/Accounts/${username} RoleId
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500585 Should Be Equal ${role_id} ${role_config}
586
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500587
588Redfish Verify User
589 [Documentation] Redfish user verification.
590 [Arguments] ${username} ${password} ${role_id} ${enabled}
591
592 # Description of argument(s):
593 # username The username to be created.
594 # password The password to be assigned.
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500595 # role_id The role ID of the user to be created
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500596 # (e.g. "Administrator", "Operator", etc.).
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500597 # enabled Indicates whether the username being created
598 # should be enabled (${True}, ${False}).
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500599
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500600 ${status}= Verify Redfish User Login ${username} ${password}
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500601 # Doing a check of the returned status.
602 Should Be Equal ${status} ${enabled}
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500603
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500604 # Validate Role Id of user.
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500605 ${role_config}= Redfish_Utils.Get Attribute
Anusha Dathatri466816f2020-01-30 05:12:36 -0600606 ... /redfish/v1/AccountService/Accounts/${username} RoleId
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500607 Should Be Equal ${role_id} ${role_config}
608
609
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500610Verify Redfish User Login
611 [Documentation] Verify Redfish login with given user id.
612 [Teardown] Run Keywords Run Keyword And Ignore Error Redfish.Logout AND Redfish.Login
613 [Arguments] ${username} ${password}
614
615 # Description of argument(s):
616 # username Login username.
617 # password Login password.
618
619 # Logout from current Redfish session.
George Keishing1cf2a422021-02-02 22:59:29 -0600620 # We don't really care if the current session is flushed out since we are going to login
621 # with new credential in next.
622 Run Keyword And Ignore Error Redfish.Logout
623
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500624 ${status}= Run Keyword And Return Status Redfish.Login ${username} ${password}
625 [Return] ${status}
626
627
Sandhya Somashekar00f59cc2019-03-05 03:39:47 -0600628Redfish Create And Verify User
629 [Documentation] Redfish create and verify user.
630 [Arguments] ${username} ${password} ${role_id} ${enabled}
631
632 # Description of argument(s):
Sandhya Somashekar33aa48c2019-03-13 05:54:49 -0500633 # username The username to be created.
634 # password The password to be assigned.
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500635 # role_id The role ID of the user to be created
Sandhya Somashekaraf402ca2019-03-18 05:59:19 -0500636 # (e.g. "Administrator", "Operator", etc.).
637 # enabled Indicates whether the username being created
638 # should be enabled (${True}, ${False}).
Sandhya Somashekar00f59cc2019-03-05 03:39:47 -0600639
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500640 # Example:
641 #{
642 #"@odata.context": "/redfish/v1/$metadata#ManagerAccount.ManagerAccount",
643 #"@odata.id": "/redfish/v1/AccountService/Accounts/test1",
644 #"@odata.type": "#ManagerAccount.v1_0_3.ManagerAccount",
645 #"Description": "User Account",
646 #"Enabled": true,
647 #"Id": "test1",
648 #"Links": {
649 # "Role": {
650 # "@odata.id": "/redfish/v1/AccountService/Roles/Administrator"
651 # }
652 #},
653
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500654 Redfish Create User ${username} ${password} ${role_id} ${enabled}
Sandhya Somashekar00f59cc2019-03-05 03:39:47 -0600655
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500656 Redfish Verify User ${username} ${password} ${role_id} ${enabled}
Sandhya Somashekar00f59cc2019-03-05 03:39:47 -0600657
658 # Delete Specified User
Anusha Dathatri466816f2020-01-30 05:12:36 -0600659 Redfish.Delete /redfish/v1/AccountService/Accounts/${username}
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500660
Sandhya Somashekar33aa48c2019-03-13 05:54:49 -0500661Verify Redfish User with Wrong Password
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500662 [Documentation] Verify Redfish User with Wrong Password.
Sandhya Somashekar33aa48c2019-03-13 05:54:49 -0500663 [Arguments] ${username} ${password} ${role_id} ${enabled} ${wrong_password}
664
665 # Description of argument(s):
666 # username The username to be created.
667 # password The password to be assigned.
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500668 # role_id The role ID of the user to be created
Sandhya Somashekaraf402ca2019-03-18 05:59:19 -0500669 # (e.g. "Administrator", "Operator", etc.).
670 # enabled Indicates whether the username being created
671 # should be enabled (${True}, ${False}).
Sandhya Somashekar33aa48c2019-03-13 05:54:49 -0500672 # wrong_password Any invalid password.
673
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500674 Redfish Create User ${username} ${password} ${role_id} ${enabled}
Sandhya Somashekar33aa48c2019-03-13 05:54:49 -0500675
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500676 Redfish.Logout
677
Sandhya Somashekar33aa48c2019-03-13 05:54:49 -0500678 # Attempt to login with created user with invalid password.
679 Run Keyword And Expect Error InvalidCredentialsError*
680 ... Redfish.Login ${username} ${wrong_password}
681
682 Redfish.Login
683
684 # Delete newly created user.
Anusha Dathatri466816f2020-01-30 05:12:36 -0600685 Redfish.Delete /redfish/v1/AccountService/Accounts/${username}
Sandhya Somashekar33aa48c2019-03-13 05:54:49 -0500686
687
Sandhya Somashekaraf402ca2019-03-18 05:59:19 -0500688Verify Login with Deleted Redfish User
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500689 [Documentation] Verify Login with Deleted Redfish User.
Sandhya Somashekaraf402ca2019-03-18 05:59:19 -0500690 [Arguments] ${username} ${password} ${role_id} ${enabled}
691
692 # Description of argument(s):
693 # username The username to be created.
694 # password The password to be assigned.
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500695 # role_id The role ID of the user to be created
Sandhya Somashekaraf402ca2019-03-18 05:59:19 -0500696 # (e.g. "Administrator", "Operator", etc.).
697 # enabled Indicates whether the username being created
698 # should be enabled (${True}, ${False}).
699
Sandhya Somashekaraa280aa2019-04-01 04:15:06 -0500700 Redfish Create User ${username} ${password} ${role_id} ${enabled}
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500701
702 # Delete newly created user.
Anusha Dathatri466816f2020-01-30 05:12:36 -0600703 Redfish.Delete /redfish/v1/AccountService/Accounts/${userName}
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500704
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500705 Redfish.Logout
706
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500707 # Attempt to login with deleted user account.
708 Run Keyword And Expect Error InvalidCredentialsError*
709 ... Redfish.Login ${username} ${password}
710
711 Redfish.Login
712
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500713
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500714Verify Create User Without Enabling
715 [Documentation] Verify Create User Without Enabling.
716 [Arguments] ${username} ${password} ${role_id} ${enabled}
717
718 # Description of argument(s):
719 # username The username to be created.
720 # password The password to be assigned.
Sandhya Somashekard7d46c02019-06-26 05:10:25 -0500721 # role_id The role ID of the user to be created
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500722 # (e.g. "Administrator", "Operator", etc.).
723 # enabled Indicates whether the username being created
724 # should be enabled (${True}, ${False}).
725
Anusha Dathatrie0dddcf2020-06-18 05:23:16 -0500726 Redfish Create User ${username} ${password} ${role_id} ${enabled} ${False}
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500727
728 Redfish.Logout
729
730 # Login with created user.
731 Run Keyword And Expect Error InvalidCredentialsError*
732 ... Redfish.Login ${username} ${password}
733
734 Redfish.Login
Sandhya Somashekaraf402ca2019-03-18 05:59:19 -0500735
736 # Delete newly created user.
Anusha Dathatri466816f2020-01-30 05:12:36 -0600737 Redfish.Delete /redfish/v1/AccountService/Accounts/${username}
George Keishing07fb41f2020-06-16 08:09:19 -0500738
aravinth0510746884b2022-09-29 16:04:07 +0000739Template For Configure Auth Methods
740 [Documentation] Template to configure auth methods.
741 [Arguments] ${auth_method}
742 [Teardown] Configure AuthMethods ${auth_method}=${initial_value}
743
744 # Description of Argument(s):
745 # authmethods The authmethod setting which needs to be
746 # set in account service URI.
747 # valid values BasicAuth, XToken.
748
749 Get AuthMethods Default Values ${auth_method}
750
751 # Patch basicauth to TRUE
752 Configure AuthMethods ${auth_method}=${TRUE}
753
754 Run Keyword IF "${auth_method}" == "XToken"
755 ... Check XToken Works Fine ${HTTP_OK}
756 ... ELSE
757 ... Check BasicAuth Works Fine ${HTTP_OK}
758
759 # Patch basicauth to FALSE
760 Configure AuthMethods ${auth_method}=${FALSE}
761
762 Run Keyword IF "${auth_method}" == "BasicAuth"
763 ... Check BasicAuth Works Fine ${HTTP_UNAUTHORIZED}
764 ... ELSE
765 ... Check XToken Works Fine ${HTTP_UNAUTHORIZED}
766
767Configure AuthMethods
768 [Documentation] Enable/disable authmethod types.
769 [Arguments] &{authmethods}
770
771 # Description of argument(s):
772 # authmethods The authmethod setting which needs to be
773 # set in account service URI.
774 # Usage Example Configure AuthMethods XToken=${TRUE} BasicAuth=${TRUE}
775 # This will set the value of "XToken" and "BasicAuth"
776 # property in accountservice uri to TRUE.
777
778 ${openbmc}= Create Dictionary AuthMethods=${authmethods}
779 ${oem}= Create Dictionary OpenBMC=${openbmc}
780 ${payload}= Create Dictionary Oem=${oem}
781
782 # Setting authmethod properties using Redfish session based auth
783 ${status}= Run Keyword And Return Status
784 ... Redfish.Patch ${REDFISH_BASE_URI}AccountService
785 ... body=${payload} valid_status_codes=[${HTTP_OK},${HTTP_NO_CONTENT}]
786
787 # Setting authmethod properties using basic auth incase the former fails
788 IF ${status}==${FALSE}
789 # Payload dictionary pre-process to match json formatting
790 ${payload}= Convert To String ${payload}
791 ${payload}= Replace String ${payload} ' "
792 ${payload}= Replace String ${payload} False false
793 ${payload}= Replace String ${payload} True true
794
795 # Curl Command Framing for PATCH authmethod
796 ${cmd}= Catenate curl -k -i -u ${OPENBMC_USERNAME}:${OPENBMC_PASSWORD}
797 ... -X PATCH '${AUTH_URI}${REDFISH_ACCOUNTS_SERVICE_URI}'
798 ... -H 'content-type:application/json' -H 'If-Match:*'
799 ... -d '${payload}'
800 ${rc} ${out}= Run And Return Rc And Output ${cmd}
801
802 # Check the response of curl command is 200 or 204
803 ${check_no_content}=
804 ... Run Keyword and Return Status Should Contain ${out} 204
805 ${check_ok}=
806 ... Run Keyword and Return Status Should Contain ${out} 200
807 Pass Execution If ${check_no_content}==${TRUE}
808 ... OR ${check_ok}==${TRUE}
809 END
810
811
812Get AuthMethods Default Values
813 [Documentation] Get enabled/disabled status of all authmethods
814 ... from Redfish account service URI
815 [Arguments] ${authmethod}
816
817 # Description of argument(s):
818 # authmethod The authmethod property whose value needs to be
819 # retrieved from account service URI.
820 # Usage Example Get AuthMethods Default Values BasicAuth
821 # returns >> ${TRUE}
822 # Example:
823 # {
824 # "@odata.id": "/redfish/v1/AccountService",
825 # (...)
826 # "Oem": {
827 # "OpenBMC": {
828 # "AuthMethods": {
829 # "BasicAuth": true,
830 # "Cookie": true,
831 # "SessionToken": true,
832 # "TLS": true,
833 # "XToken": true
834 # }
835 # }
836 # }
837 # }
838
839 ${resp}= Redfish.Get Attribute ${REDFISH_ACCOUNTS_SERVICE_URI} Oem
840 ${authmethods}= Set Variable ${resp['OpenBMC']['AuthMethods']}
841 ${initial_value}= Get From Dictionary ${authmethods} ${authmethod}
842 Set Test Variable ${initial_value}
843
844Check XToken Works Fine
845 [Documentation] Verify Xtoken works fine.
846 [Arguments] ${status_code}
847
848 # Description of Argument(s):
849 # status_code : 200, 401.
850
851 # Verify xtoken auth works for xtoken
852 Redfish.Get ${REDFISH_ACCOUNTS_SERVICE_URI}
853 ... valid_status_codes=[${status_code}]
854
855Check BasicAuth Works Fine
856 [Documentation] Verify Basic Auth works fine.
857 [Arguments] ${status_code}
858
859 # Description of Argument(s):
860 # status_code : 200, 401.
861
862 # Verify basic auth works based on basic auth.
863 ${cmd}= Catenate curl -k -i -u ${OPENBMC_USERNAME}:${OPENBMC_PASSWORD}
864 ... ${AUTH_URI}/redfish/v1/AccountService
865 ${rc} ${out}= Run And Return Rc And Output ${cmd}
866
867 # Check the response of curl command is 200/401
868 Should Contain ${out} ${status_code}