blob: c1261aafc807902d8a463b0a85e83f08c215663a [file] [log] [blame]
Sushma M M87a5b2d2020-07-31 00:58:48 -05001*** Settings ***
2
Rahul Maheshwari142642d2021-08-24 00:00:15 -05003Documentation Test OpenBMC GUI "User management" sub-menu of "Security and access".
Sushma M M87a5b2d2020-07-31 00:58:48 -05004
Rahul Maheshwari41747da2020-11-17 09:09:52 -06005Resource ../../lib/gui_resource.robot
Sushma M M87a5b2d2020-07-31 00:58:48 -05006
7Suite Setup Launch Browser And Login GUI
8Suite Teardown Close Browser
9Test Setup Test Setup Execution
10
11
12*** Variables ***
rramyasr-in9e2c96f2023-01-24 07:59:34 -060013
14
Rahul Maheshwari142642d2021-08-24 00:00:15 -050015${xpath_user_management_heading} //h1[text()="User management"]
Sushma M M26302992020-08-31 01:15:26 -050016${xpath_select_user} //input[contains(@class,"custom-control-input")]
17${xpath_account_policy} //button[contains(text(),'Account policy settings')]
18${xpath_add_user} //button[contains(text(),'Add user')]
Rahul Maheshwari142642d2021-08-24 00:00:15 -050019${xpath_edit_user} //*[@data-test-id='userManagement-tableRowAction-edit-0']
20${xpath_delete_user} //*[@data-test-id='userManagement-tableRowAction-delete-1']
21${xpath_account_status_enabled_button} //*[@data-test-id='userManagement-radioButton-statusEnabled']
22${xpath_account_status_disabled_button} //*[@data-test-id='userManagement-radioButton-statusDisabled']
23${xpath_username_input_button} //*[@data-test-id='userManagement-input-username']
24${xpath_privilege_list_button} //*[@data-test-id='userManagement-select-privilege']
25${xpath_password_input_button} //*[@data-test-id='userManagement-input-password']
26${xpath_password_confirm_button} //*[@data-test-id='userManagement-input-passwordConfirmation']
27${xpath_cancel_button} //*[@data-test-id='userManagement-button-cancel']
28${xpath_submit_button} //*[@data-test-id='userManagement-button-submit']
manashsarmac67f2262020-09-24 08:16:08 -050029${xpath_add_user_heading} //h5[contains(text(),'Add user')]
manashsarma66f03842020-09-23 08:52:38 -050030${xpath_policy_settings_header} //*[text()="Account policy settings"]
Rahul Maheshwari142642d2021-08-24 00:00:15 -050031${xpath_auto_unlock} //*[@data-test-id='userManagement-radio-automaticUnlock']
32${xpath_manual_unlock} //*[@data-test-id='userManagement-radio-manualUnlock']
33${xpath_max_failed_login} //*[@data-test-id='userManagement-input-lockoutThreshold']
manashsarmacc35bad2020-09-30 04:19:01 -050034${test_user_password} TestPwd1
Sushma M M87a5b2d2020-07-31 00:58:48 -050035
rramyasr-in9e2c96f2023-01-24 07:59:34 -060036
Sushma M M87a5b2d2020-07-31 00:58:48 -050037*** Test Cases ***
38
Rahul Maheshwari142642d2021-08-24 00:00:15 -050039Verify Navigation To User Management Page
40 [Documentation] Verify navigation to user management page.
41 [Tags] Verify_Navigation_To_User_Management_Page
Sushma M M26302992020-08-31 01:15:26 -050042
Rahul Maheshwari142642d2021-08-24 00:00:15 -050043 Page Should Contain Element ${xpath_user_management_heading}
Sushma M M26302992020-08-31 01:15:26 -050044
45
Rahul Maheshwari142642d2021-08-24 00:00:15 -050046Verify Existence Of All Sections In User Management Page
47 [Documentation] Verify existence of all sections in user management page.
48 [Tags] Verify_Existence_Of_All_Sections_In_User_Management_Page
Sushma M M87a5b2d2020-07-31 00:58:48 -050049
50 Page should contain View privilege role descriptions
51
52
Rahul Maheshwari142642d2021-08-24 00:00:15 -050053Verify Existence Of All Input Boxes In User Management Page
54 [Documentation] Verify existence of all sections in user managemnet page.
55 [Tags] Verify_Existence_Of_All_Input_Boxes_In_User_Management_Page
Sushma M M87a5b2d2020-07-31 00:58:48 -050056
57 Page Should Contain Checkbox ${xpath_select_user}
58
59
Rahul Maheshwari142642d2021-08-24 00:00:15 -050060Verify Existence Of All Buttons In User Management Page
61 [Documentation] Verify existence of all buttons in user management page.
62 [Tags] Verify_Existence_Of_All_Buttons_In_User_Management_Page
Sushma M M87a5b2d2020-07-31 00:58:48 -050063
64 Page should contain Button ${xpath_account_policy}
65 Page should contain Button ${xpath_add_user}
manashsarma90d91fa2021-04-08 07:07:16 -050066 Page Should Contain Element ${xpath_edit_user}
67 Page Should Contain Element ${xpath_delete_user}
Sushma M M87a5b2d2020-07-31 00:58:48 -050068
69
manashsarmac67f2262020-09-24 08:16:08 -050070Verify Existence Of All Button And Fields In Add User
71 [Documentation] Verify existence of all buttons and fields in add user page.
72 [Tags] Verify_Existence_Of_All_Button_And_Fields_In_Add_User
manashsarma9d67d262020-10-15 11:20:48 -050073 [Teardown] Click Element ${xpath_cancel_button}
manashsarmac67f2262020-09-24 08:16:08 -050074
75 Click Element ${xpath_add_user}
76 Wait Until Page Contains Element ${xpath_add_user_heading}
77 Page Should Contain Element ${xpath_account_status_enabled_button}
78 Page Should Contain Element ${xpath_account_status_disabled_button}
79 Page Should Contain Element ${xpath_username_input_button}
80 Page Should Contain Element ${xpath_privilege_list_button}
81 Page Should Contain Element ${xpath_password_input_button}
82 Page Should Contain Element ${xpath_password_confirm_button}
83 Page Should Contain Element ${xpath_cancel_button}
84 Page Should Contain Element ${xpath_submit_button}
85
manashsarma66f03842020-09-23 08:52:38 -050086
87Verify Existence Of All Buttons And Fields In Account Policy Settings
88 [Documentation] Verify existence of all buttons and fields in account policy settings page.
89 [Tags] Verify_Existence_Of_All_Buttons_And_Fields_In_Account_Policy_Settings
manashsarma5c4a7d12020-10-21 05:21:37 -050090 [Teardown] Click Element ${xpath_cancel_button}
manashsarma66f03842020-09-23 08:52:38 -050091
92 Click Element ${xpath_account_policy}
manashsarma5c4a7d12020-10-21 05:21:37 -050093 Wait Until Page Contains Element ${xpath_policy_settings_header}
manashsarma66f03842020-09-23 08:52:38 -050094 Page Should Contain Element ${xpath_auto_unlock}
95 Page Should Contain Element ${xpath_manual_unlock}
96 Page Should Contain Element ${xpath_max_failed_login}
97 Page Should Contain Element ${xpath_submit_button}
98 Page Should Contain Element ${xpath_cancel_button}
99
manashsarma95777412020-09-28 09:52:41 -0500100
manashsarmada29e552020-10-04 12:34:01 -0500101Verify User Access Privilege
George Keishing4d4ef992021-01-28 09:56:53 -0600102 [Documentation] Create a new user with a privilege and verify that user is created.
manashsarmada29e552020-10-04 12:34:01 -0500103 [Tags] Verify_User_Access_Privilege
104 [Template] Create User And Verify
105
manashsarmaedd6da02020-10-04 00:11:18 -0500106 # username privilege_level enabled
107 admin_user Administrator ${True}
manashsarmaedd6da02020-10-04 00:11:18 -0500108 readonly_user ReadOnly ${True}
manashsarmaedd6da02020-10-04 00:11:18 -0500109 disabled_user Administrator ${False}
110
manashsarmada29e552020-10-04 12:34:01 -0500111
rramyasr-inc4a5c342023-01-02 01:38:50 -0600112Verify Operator And No Access User Privilege
113 [Documentation] Create users with different access privilege
114 ... and verify that the user is getting created.
115 [Tags] Verify_Operator_And_No_Access_User_Privilege
116 [Template] Create User And Verify
117
118 # username privilege_level enabled
119 operator_user Operator ${True}
120 noaccess_user NoAccess ${True}
121
122
manashsarma165f5272021-08-04 07:37:01 -0500123Verify User Account And Properties Saved Through Reboots
124 [Documentation] Verify that user account and properties saved through reboots.
125 [Tags] Verify_User_Account_And_Properties_Saved_Through_Reboots
126
127 # Create an User account.
128 Create User And Verify my_admin_user Administrator ${True}
129
130 # Reboot BMC.
131 Redfish OBMC Reboot (off) stack_mode=normal
132
133 Click Element ${xpath_refresh_button}
134 Wait Until Page Contains my_admin_user timeout=15
135
136
manashsarmada29e552020-10-04 12:34:01 -0500137*** Keywords ***
138
139Create User And Verify
140 [Documentation] Create a user with given user name and privilege and verify that the
141 ... user is created successfully via GUI and Redfish.
manashsarmaedd6da02020-10-04 00:11:18 -0500142 [Teardown] Run Keywords Redfish.Logout AND Redfish.Login AND
143 ... Redfish.Delete /redfish/v1/AccountService/Accounts/${user_name}
144 [Arguments] ${user_name} ${user_privilege} ${enabled}
manashsarmada29e552020-10-04 12:34:01 -0500145
146 # Description of argument(s):
147 # user_name The name of the user to be created (e.g. "test", "robert", etc.).
148 # user_privilege Privilege of the user.
manashsarmaedd6da02020-10-04 00:11:18 -0500149 # enabled If the user is enabled (e.g True if enabled, False if disabled).
manashsarma95777412020-09-28 09:52:41 -0500150
151 Click Element ${xpath_add_user}
152 Wait Until Page Contains Element ${xpath_add_user_heading}
153
manashsarmaedd6da02020-10-04 00:11:18 -0500154 # Select disabled radio button if user needs to be disabled
155 Run Keyword If ${enabled} == ${False}
manashsarmacb646cc2020-11-17 03:59:04 -0600156 ... Click Element At Coordinates ${xpath_account_status_disabled_button} 0 0
manashsarmaedd6da02020-10-04 00:11:18 -0500157
manashsarma95777412020-09-28 09:52:41 -0500158 # Input username, password and privilege.
manashsarmada29e552020-10-04 12:34:01 -0500159 Input Text ${xpath_username_input_button} ${user_name}
160 Select From List by Value ${xpath_privilege_list_button} ${user_privilege}
manashsarma95777412020-09-28 09:52:41 -0500161
manashsarmacc35bad2020-09-30 04:19:01 -0500162 Input Text ${xpath_password_input_button} ${test_user_password}
manashsarma95777412020-09-28 09:52:41 -0500163
manashsarmacc35bad2020-09-30 04:19:01 -0500164 Input Text ${xpath_password_confirm_button} ${test_user_password}
manashsarma95777412020-09-28 09:52:41 -0500165
166 # Submit.
167 Click Element ${xpath_submit_button}
168
169 # Refresh page and check new user is available.
170 Wait Until Page Contains Element ${xpath_add_user}
171 Click Element ${xpath_refresh_button}
manashsarmada29e552020-10-04 12:34:01 -0500172 Wait Until Page Contains ${user_name} timeout=15
manashsarma95777412020-09-28 09:52:41 -0500173
174 # Cross check the privilege of newly added user via Redfish.
175 ${user_priv_redfish}= Redfish_Utils.Get Attribute
manashsarmada29e552020-10-04 12:34:01 -0500176 ... /redfish/v1/AccountService/Accounts/${user_name} RoleId
177 Should Be Equal ${user_privilege} ${user_priv_redfish}
Sushma M M87a5b2d2020-07-31 00:58:48 -0500178
manashsarmaedd6da02020-10-04 00:11:18 -0500179 # Check enable/disable status for user.
180 Redfish.Logout
181 ${status}= Run Keyword And Return Status Redfish.Login ${user_name} ${test_user_password}
182 Run Keyword If ${enabled} == ${False}
183 ... Should Be Equal ${status} ${False}
184 ... ELSE Should Be Equal ${status} ${True}
185
186
Sushma M M87a5b2d2020-07-31 00:58:48 -0500187Test Setup Execution
188 [Documentation] Do test case setup tasks.
189
Rahul Maheshwari142642d2021-08-24 00:00:15 -0500190 # Navigate to https://xx.xx.xx.xx/#/access-control/user-management user management page.
Sushma M M87a5b2d2020-07-31 00:58:48 -0500191
Rahul Maheshwari142642d2021-08-24 00:00:15 -0500192 Click Element ${xpath_secuity_and_accesss_menu}
193 Click Element ${xpath_user_management_sub_menu}
rramyasr-in9e2c96f2023-01-24 07:59:34 -0600194 Wait Until Keyword Succeeds 30 sec 10 sec Location Should Contain user-management
195 Wait Until Element Is Not Visible ${xpath_page_loading_progress_bar} timeout=30