Sivas SRR | 7d7bae3 | 2019-05-29 00:31:14 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation Test Redfish LDAP user configuration. |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 3 | |
Sivas SRR | d21c984 | 2019-06-21 05:41:18 -0500 | [diff] [blame] | 4 | Library ../../lib/gen_robot_valid.py |
Sivas SRR | 7d7bae3 | 2019-05-29 00:31:14 -0500 | [diff] [blame] | 5 | Resource ../../lib/resource.robot |
| 6 | Resource ../../lib/bmc_redfish_resource.robot |
| 7 | Resource ../../lib/openbmc_ffdc.robot |
Sivas SRR | f4ec649 | 2019-06-16 01:59:30 -0500 | [diff] [blame] | 8 | Library ../../lib/gen_robot_valid.py |
Sivas SRR | 7d7bae3 | 2019-05-29 00:31:14 -0500 | [diff] [blame] | 9 | |
| 10 | Suite Setup Suite Setup Execution |
Sivas SRR | 939b4b1 | 2019-06-26 00:01:59 -0500 | [diff] [blame] | 11 | Suite Teardown Run Keywords Restore LDAP Privilege AND Redfish.Logout |
Sivas SRR | f4ec649 | 2019-06-16 01:59:30 -0500 | [diff] [blame] | 12 | Test Teardown FFDC On Test Case Fail |
Sivas SRR | 7d7bae3 | 2019-05-29 00:31:14 -0500 | [diff] [blame] | 13 | |
Sivas SRR | 9358b5c | 2019-06-06 04:57:03 -0500 | [diff] [blame] | 14 | Force Tags LDAP_Test |
| 15 | |
Sivas SRR | f4ec649 | 2019-06-16 01:59:30 -0500 | [diff] [blame] | 16 | *** Variables *** |
Sivas SRR | 873de8e | 2019-09-26 00:37:53 -0500 | [diff] [blame] | 17 | ${old_ldap_privilege} ${EMPTY} |
Sivas SRR | d21c984 | 2019-06-21 05:41:18 -0500 | [diff] [blame] | 18 | &{old_account_service} &{EMPTY} |
Sivas SRR | 873de8e | 2019-09-26 00:37:53 -0500 | [diff] [blame] | 19 | &{old_ldap_config} &{EMPTY} |
| 20 | ${hostname} ${EMPTY} |
Sivas SRR | f4ec649 | 2019-06-16 01:59:30 -0500 | [diff] [blame] | 21 | |
Sivas SRR | 7d7bae3 | 2019-05-29 00:31:14 -0500 | [diff] [blame] | 22 | ** Test Cases ** |
| 23 | |
Sivas SRR | b1b8575 | 2019-07-04 01:28:28 -0500 | [diff] [blame] | 24 | Verify LDAP Configuration Created |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 25 | [Documentation] Verify that LDAP configuration created. |
Sivas SRR | b1b8575 | 2019-07-04 01:28:28 -0500 | [diff] [blame] | 26 | [Tags] Verify_LDAP_Configuration_Created |
| 27 | |
| 28 | Create LDAP Configuration |
| 29 | # Call 'Get LDAP Configuration' to verify that LDAP configuration exists. |
| 30 | Get LDAP Configuration ${LDAP_TYPE} |
| 31 | Sleep 10s |
| 32 | Redfish.Login ${LDAP_USER} ${LDAP_USER_PASSWORD} |
| 33 | Redfish.Logout |
| 34 | Redfish.Login |
| 35 | |
| 36 | |
| 37 | Verify LDAP Service Disable |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 38 | [Documentation] Verify that LDAP is disabled and that LDAP user cannot |
| 39 | ... login. |
Sivas SRR | b1b8575 | 2019-07-04 01:28:28 -0500 | [diff] [blame] | 40 | [Tags] Verify_LDAP_Service_Disable |
| 41 | |
| 42 | Redfish.Patch ${REDFISH_BASE_URI}AccountService |
| 43 | ... body={'${LDAP_TYPE}': {'ServiceEnabled': ${False}}} |
| 44 | Sleep 15s |
| 45 | ${resp}= Run Keyword And Return Status Redfish.Login ${LDAP_USER} |
| 46 | ... ${LDAP_USER_PASSWORD} |
George Keishing | 333bb72 | 2019-12-11 11:40:49 -0600 | [diff] [blame] | 47 | Should Be Equal ${resp} ${False} |
| 48 | ... msg=LDAP user was able to login even though the LDAP service was disabled. |
Sivas SRR | b1b8575 | 2019-07-04 01:28:28 -0500 | [diff] [blame] | 49 | Redfish.Logout |
| 50 | Redfish.Login |
| 51 | # Enabling LDAP so that LDAP user works. |
| 52 | Redfish.Patch ${REDFISH_BASE_URI}AccountService |
| 53 | ... body={'${LDAP_TYPE}': {'ServiceEnabled': ${True}}} |
| 54 | Redfish.Logout |
| 55 | Redfish.Login |
| 56 | |
| 57 | |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 58 | Verify LDAP Login With ServiceEnabled |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 59 | [Documentation] Verify that LDAP Login with ServiceEnabled. |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 60 | [Tags] Verify_LDAP_Login_With_ServiceEnabled |
| 61 | |
| 62 | Disable Other LDAP |
| 63 | # Actual service enablement. |
| 64 | Redfish.Patch ${REDFISH_BASE_URI}AccountService |
| 65 | ... body={'${LDAP_TYPE}': {'ServiceEnabled': ${True}}} |
| 66 | Sleep 15s |
| 67 | # After update, LDAP login. |
| 68 | Redfish.Login ${LDAP_USER} ${LDAP_USER_PASSWORD} |
| 69 | Redfish.Logout |
| 70 | Redfish.Login |
| 71 | |
| 72 | |
| 73 | Verify LDAP Login With Correct AuthenticationType |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 74 | [Documentation] Verify that LDAP Login with right AuthenticationType. |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 75 | [Tags] Verify_LDAP_Login_With_Correct_AuthenticationType |
| 76 | |
| 77 | Redfish.Patch ${REDFISH_BASE_URI}AccountService |
| 78 | ... body={'${ldap_type}': {'Authentication': {'AuthenticationType':'UsernameAndPassword'}}} |
| 79 | Sleep 15s |
| 80 | # After update, LDAP login. |
| 81 | Redfish.Login ${LDAP_USER} ${LDAP_USER_PASSWORD} |
| 82 | Redfish.Logout |
| 83 | Redfish.Login |
| 84 | |
| 85 | |
| 86 | Verify LDAP Config Update With Incorrect AuthenticationType |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 87 | [Documentation] Verify that invalid AuthenticationType is not updated. |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 88 | [Tags] Verify_LDAP_Update_With_Incorrect_AuthenticationType |
| 89 | |
George Keishing | 2d0804e | 2019-12-12 22:27:05 -0600 | [diff] [blame] | 90 | ${body}= Catenate {'${ldap_type}': {'Authentication': {'AuthenticationType':'KerberosKeytab'}}} |
Prashanth Katti | 7d38a09 | 2020-01-10 06:01:09 -0600 | [diff] [blame] | 91 | |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 92 | Redfish.Patch ${REDFISH_BASE_URI}AccountService |
Prashanth Katti | 7d38a09 | 2020-01-10 06:01:09 -0600 | [diff] [blame] | 93 | ... body=${body} valid_status_codes=[400] |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 94 | |
| 95 | |
| 96 | Verify LDAP Login With Correct LDAP URL |
| 97 | [Documentation] Verify LDAP Login with right LDAP URL. |
| 98 | [Tags] Verify_LDAP_Login_With_Correct_LDAP_URL |
| 99 | |
| 100 | Config LDAP URL ${LDAP_SERVER_URI} |
| 101 | |
| 102 | |
| 103 | Verify LDAP Config Update With Incorrect LDAP URL |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 104 | [Documentation] Verify that LDAP Login fails with invalid LDAP URL. |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 105 | [Tags] Verify_LDAP_Config_Update_With_Incorrect_LDAP_URL |
| 106 | [Teardown] Run Keywords Restore LDAP URL AND |
| 107 | ... FFDC On Test Case Fail |
| 108 | |
Prashanth Katti | 7d38a09 | 2020-01-10 06:01:09 -0600 | [diff] [blame] | 109 | Config LDAP URL ldap://1.2.3.4/ ${FALSE} |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 110 | |
Sivas SRR | 7d7bae3 | 2019-05-29 00:31:14 -0500 | [diff] [blame] | 111 | Verify LDAP Configuration Exist |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 112 | [Documentation] Verify that LDAP configuration is available. |
Sivas SRR | 7d7bae3 | 2019-05-29 00:31:14 -0500 | [diff] [blame] | 113 | [Tags] Verify_LDAP_Configuration_Exist |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 114 | |
Sivas SRR | 7d7bae3 | 2019-05-29 00:31:14 -0500 | [diff] [blame] | 115 | ${resp}= Redfish.Get Attribute ${REDFISH_BASE_URI}AccountService |
| 116 | ... ${LDAP_TYPE} default=${EMPTY} |
| 117 | Should Not Be Empty ${resp} msg=LDAP configuration is not defined. |
| 118 | |
| 119 | |
| 120 | Verify LDAP User Login |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 121 | [Documentation] Verify that LDAP user able to login into BMC. |
Sivas SRR | 7d7bae3 | 2019-05-29 00:31:14 -0500 | [diff] [blame] | 122 | [Tags] Verify_LDAP_User_Login |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 123 | |
| 124 | Redfish.Login ${LDAP_USER} ${LDAP_USER_PASSWORD} |
Sivas SRR | 939b4b1 | 2019-06-26 00:01:59 -0500 | [diff] [blame] | 125 | Redfish.Logout |
| 126 | Redfish.Login |
Sivas SRR | 7d7bae3 | 2019-05-29 00:31:14 -0500 | [diff] [blame] | 127 | |
| 128 | |
| 129 | Verify LDAP Service Available |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 130 | [Documentation] Verify that LDAP service is available. |
Sivas SRR | 7d7bae3 | 2019-05-29 00:31:14 -0500 | [diff] [blame] | 131 | [Tags] Verify_LDAP_Service_Available |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 132 | |
Sivas SRR | 7d7bae3 | 2019-05-29 00:31:14 -0500 | [diff] [blame] | 133 | @{ldap_configuration}= Get LDAP Configuration ${LDAP_TYPE} |
| 134 | Should Contain ${ldap_configuration} LDAPService |
| 135 | ... msg=LDAPService is not available. |
| 136 | |
| 137 | |
Sivas SRR | 108f9d3 | 2019-06-03 10:05:34 -0500 | [diff] [blame] | 138 | Verify LDAP Login Works After BMC Reboot |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 139 | [Documentation] Verify that LDAP login works after BMC reboot. |
Sivas SRR | 108f9d3 | 2019-06-03 10:05:34 -0500 | [diff] [blame] | 140 | [Tags] Verify_LDAP_Login_Works_After_BMC_Reboot |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 141 | |
Sivas SRR | 108f9d3 | 2019-06-03 10:05:34 -0500 | [diff] [blame] | 142 | Redfish OBMC Reboot (off) |
| 143 | Redfish.Login ${LDAP_USER} ${LDAP_USER_PASSWORD} |
| 144 | Redfish.Logout |
Sivas SRR | 939b4b1 | 2019-06-26 00:01:59 -0500 | [diff] [blame] | 145 | Redfish.Login |
Sivas SRR | 108f9d3 | 2019-06-03 10:05:34 -0500 | [diff] [blame] | 146 | |
| 147 | |
| 148 | Verify LDAP User With Admin Privilege Able To Do BMC Reboot |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 149 | [Documentation] Verify that LDAP user with administrator privilege able to do BMC reboot. |
Sivas SRR | 108f9d3 | 2019-06-03 10:05:34 -0500 | [diff] [blame] | 150 | [Tags] Verify_LDAP_User_With_Admin_Privilege_Able_To_Do_BMC_Reboot |
| 151 | |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 152 | |
Sivas SRR | 108f9d3 | 2019-06-03 10:05:34 -0500 | [diff] [blame] | 153 | Update LDAP Configuration with LDAP User Role And Group ${LDAP_TYPE} |
| 154 | ... ${GROUP_PRIVILEGE} ${GROUP_NAME} |
| 155 | Redfish.Login ${LDAP_USER} ${LDAP_USER_PASSWORD} |
| 156 | # With LDAP user and with right privilege trying to do BMC reboot. |
| 157 | Redfish OBMC Reboot (off) |
| 158 | Redfish.Login ${LDAP_USER} ${LDAP_USER_PASSWORD} |
| 159 | Redfish.Logout |
Sivas SRR | 939b4b1 | 2019-06-26 00:01:59 -0500 | [diff] [blame] | 160 | Redfish.Login |
Sivas SRR | 108f9d3 | 2019-06-03 10:05:34 -0500 | [diff] [blame] | 161 | |
| 162 | |
Sivas SRR | 2b83ec0 | 2019-07-12 11:30:20 -0500 | [diff] [blame] | 163 | Verify LDAP User With Operator Privilege Able To Do Host Poweroff |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 164 | [Documentation] Verify that LDAP user with operator privilege can do host |
| 165 | ... power off. |
Sivas SRR | 2b83ec0 | 2019-07-12 11:30:20 -0500 | [diff] [blame] | 166 | [Tags] Verify_LDAP_User_With_Operator_Privilege_Able_To_Do_Host_Poweroff |
Sivas SRR | f4ec649 | 2019-06-16 01:59:30 -0500 | [diff] [blame] | 167 | [Teardown] Restore LDAP Privilege |
| 168 | |
Sivas SRR | f4ec649 | 2019-06-16 01:59:30 -0500 | [diff] [blame] | 169 | Update LDAP Configuration with LDAP User Role And Group ${LDAP_TYPE} |
| 170 | ... Operator ${GROUP_NAME} |
Sivas SRR | f4ec649 | 2019-06-16 01:59:30 -0500 | [diff] [blame] | 171 | |
Sivas SRR | f4ec649 | 2019-06-16 01:59:30 -0500 | [diff] [blame] | 172 | Redfish.Login ${LDAP_USER} ${LDAP_USER_PASSWORD} |
Sivas SRR | 2b83ec0 | 2019-07-12 11:30:20 -0500 | [diff] [blame] | 173 | # Verify that the LDAP user with operator privilege is able to power the system off. |
| 174 | Redfish.Post ${REDFISH_POWER_URI} |
Sivas SRR | 3d82b3c | 2019-07-12 12:20:04 -0500 | [diff] [blame] | 175 | ... body={'ResetType': 'ForceOff'} valid_status_codes=[200] |
Sivas SRR | f4ec649 | 2019-06-16 01:59:30 -0500 | [diff] [blame] | 176 | Redfish.Logout |
Sivas SRR | 939b4b1 | 2019-06-26 00:01:59 -0500 | [diff] [blame] | 177 | Redfish.Login |
Sivas SRR | f4ec649 | 2019-06-16 01:59:30 -0500 | [diff] [blame] | 178 | |
| 179 | |
Sivas SRR | d21c984 | 2019-06-21 05:41:18 -0500 | [diff] [blame] | 180 | Verify AccountLockout Attributes Set To Zero |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 181 | [Documentation] Verify that attribute AccountLockoutDuration and |
Sivas SRR | d21c984 | 2019-06-21 05:41:18 -0500 | [diff] [blame] | 182 | ... AccountLockoutThreshold are set to 0. |
| 183 | [Teardown] Run Keywords Restore AccountLockout Attributes AND |
| 184 | ... FFDC On Test Case Fail |
| 185 | [Tags] Verify_AccountLockout_Attributes_Set_To_Zero |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 186 | |
Sivas SRR | d21c984 | 2019-06-21 05:41:18 -0500 | [diff] [blame] | 187 | ${old_account_service}= Redfish.Get Properties |
| 188 | ... ${REDFISH_BASE_URI}AccountService |
Michael Walsh | 39c0051 | 2019-07-17 10:54:06 -0500 | [diff] [blame] | 189 | Rprint Vars old_account_service |
Sivas SRR | d21c984 | 2019-06-21 05:41:18 -0500 | [diff] [blame] | 190 | Redfish.Patch ${REDFISH_BASE_URI}AccountService |
| 191 | ... body=[('AccountLockoutDuration', 0)] |
| 192 | Redfish.Patch ${REDFISH_BASE_URI}AccountService |
| 193 | ... body=[('AccountLockoutThreshold', 0)] |
| 194 | |
| 195 | |
Sivas SRR | 939b4b1 | 2019-06-26 00:01:59 -0500 | [diff] [blame] | 196 | Verify LDAP User With Read Privilege Able To Check Inventory |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 197 | [Documentation] Verify that LDAP user with read privilege able to |
Sivas SRR | 939b4b1 | 2019-06-26 00:01:59 -0500 | [diff] [blame] | 198 | ... read firmware inventory. |
| 199 | [Tags] Verify_LDAP_User_With_Read_Privilege_Able_To_Check_Inventory |
| 200 | [Teardown] Run Keywords FFDC On Test Case Fail AND Restore LDAP Privilege |
| 201 | [Template] Set Read Privilege And Check Firmware Inventory |
| 202 | |
Prashanth Katti | edce4a9 | 2020-01-16 07:28:39 -0600 | [diff] [blame] | 203 | ReadOnly |
Sivas SRR | 939b4b1 | 2019-06-26 00:01:59 -0500 | [diff] [blame] | 204 | |
| 205 | |
| 206 | Verify LDAP User With Read Privilege Should Not Do Host Poweron |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 207 | [Documentation] Verify that LDAP user with read privilege should not be |
Sivas SRR | 939b4b1 | 2019-06-26 00:01:59 -0500 | [diff] [blame] | 208 | ... allowed to power on the host. |
| 209 | [Tags] Verify_LDAP_User_With_Read_Privilege_Should_Not_Do_Host_Poweron |
| 210 | [Teardown] Run Keywords FFDC On Test Case Fail AND Restore LDAP Privilege |
| 211 | [Template] Set Read Privilege And Check Poweron |
| 212 | |
Prashanth Katti | edce4a9 | 2020-01-16 07:28:39 -0600 | [diff] [blame] | 213 | ReadOnly |
Sivas SRR | 939b4b1 | 2019-06-26 00:01:59 -0500 | [diff] [blame] | 214 | |
| 215 | |
Sivas SRR | e9a4786 | 2019-08-05 07:13:43 -0500 | [diff] [blame] | 216 | Update LDAP Group Name And Verify Operations |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 217 | [Documentation] Verify that LDAP group name update and able to do right |
| 218 | ... operations. |
Sivas SRR | e9a4786 | 2019-08-05 07:13:43 -0500 | [diff] [blame] | 219 | [Tags] Update_LDAP_Group_Name_And_Verify_Operations |
| 220 | [Template] Update LDAP Config And Verify Set Host Name |
| 221 | [Teardown] Restore LDAP Privilege |
| 222 | |
| 223 | # group_name group_privilege valid_status_codes |
| 224 | ${GROUP_NAME} Administrator [${HTTP_OK}] |
| 225 | ${GROUP_NAME} Operator [${HTTP_UNAUTHORIZED}, ${HTTP_FORBIDDEN}] |
Prashanth Katti | edce4a9 | 2020-01-16 07:28:39 -0600 | [diff] [blame] | 226 | ${GROUP_NAME} ReadOnly [${HTTP_UNAUTHORIZED}, ${HTTP_FORBIDDEN}] |
| 227 | ${GROUP_NAME} NoAccess [${HTTP_UNAUTHORIZED}, ${HTTP_FORBIDDEN}] |
Sivas SRR | e9a4786 | 2019-08-05 07:13:43 -0500 | [diff] [blame] | 228 | Invalid_LDAP_Group_Name Administrator [${HTTP_UNAUTHORIZED}, ${HTTP_FORBIDDEN}] |
| 229 | Invalid_LDAP_Group_Name Operator [${HTTP_UNAUTHORIZED}, ${HTTP_FORBIDDEN}] |
Prashanth Katti | edce4a9 | 2020-01-16 07:28:39 -0600 | [diff] [blame] | 230 | Invalid_LDAP_Group_Name ReadOnly [${HTTP_UNAUTHORIZED}, ${HTTP_FORBIDDEN}] |
| 231 | Invalid_LDAP_Group_Name NoAccess [${HTTP_UNAUTHORIZED}, ${HTTP_FORBIDDEN}] |
Sivas SRR | e9a4786 | 2019-08-05 07:13:43 -0500 | [diff] [blame] | 232 | |
| 233 | |
Sivas SRR | a031d2d | 2019-08-16 07:49:52 -0500 | [diff] [blame] | 234 | Verify LDAP BaseDN Update And LDAP Login |
| 235 | [Documentation] Update LDAP BaseDN of LDAP configuration and verify |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 236 | ... that LDAP login works. |
Sivas SRR | a031d2d | 2019-08-16 07:49:52 -0500 | [diff] [blame] | 237 | [Tags] Verify_LDAP_BaseDN_Update_And_LDAP_Login |
| 238 | |
| 239 | |
| 240 | ${body}= Catenate {'${LDAP_TYPE}': { 'LDAPService': {'SearchSettings': |
| 241 | ... {'BaseDistinguishedNames': ['${LDAP_BASE_DN}']}}}} |
| 242 | Redfish.Patch ${REDFISH_BASE_URI}AccountService body=${body} |
| 243 | Sleep 15s |
| 244 | Redfish Verify LDAP Login |
| 245 | |
| 246 | |
| 247 | Verify LDAP BindDN Update And LDAP Login |
| 248 | [Documentation] Update LDAP BindDN of LDAP configuration and verify |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 249 | ... that LDAP login works. |
Sivas SRR | a031d2d | 2019-08-16 07:49:52 -0500 | [diff] [blame] | 250 | [Tags] Verify_LDAP_BindDN_Update_And_LDAP_Login |
| 251 | |
| 252 | ${body}= Catenate {'${LDAP_TYPE}': { 'Authentication': |
| 253 | ... {'AuthenticationType':'UsernameAndPassword', 'Username': |
| 254 | ... '${LDAP_BIND_DN}'}}} |
| 255 | Redfish.Patch ${REDFISH_BASE_URI}AccountService body=${body} |
| 256 | Sleep 15s |
| 257 | Redfish Verify LDAP Login |
| 258 | |
| 259 | |
| 260 | Verify LDAP BindDN Password Update And LDAP Login |
| 261 | [Documentation] Update LDAP BindDN password of LDAP configuration and |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 262 | ... verify that LDAP login works. |
Sivas SRR | a031d2d | 2019-08-16 07:49:52 -0500 | [diff] [blame] | 263 | [Tags] Verify_LDAP_BindDN_Passsword_Update_And_LDAP_Login |
| 264 | |
| 265 | |
| 266 | ${body}= Catenate {'${LDAP_TYPE}': { 'Authentication': |
| 267 | ... {'AuthenticationType':'UsernameAndPassword', 'Password': |
| 268 | ... '${LDAP_BIND_DN_PASSWORD}'}}} |
| 269 | Redfish.Patch ${REDFISH_BASE_URI}AccountService body=${body} |
| 270 | Sleep 15s |
| 271 | Redfish Verify LDAP Login |
| 272 | |
| 273 | |
| 274 | Verify LDAP Type Update And LDAP Login |
| 275 | [Documentation] Update LDAP type of LDAP configuration and verify |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 276 | ... that LDAP login works. |
Sivas SRR | a031d2d | 2019-08-16 07:49:52 -0500 | [diff] [blame] | 277 | [Tags] Verify_LDAP_Type_Update_And_LDAP_Login |
| 278 | |
| 279 | Disable Other LDAP |
| 280 | Redfish.Patch ${REDFISH_BASE_URI}AccountService |
| 281 | ... body={'${LDAP_TYPE}': {'ServiceEnabled': ${True}}} |
| 282 | Sleep 15s |
| 283 | Redfish Verify LDAP Login |
| 284 | |
| 285 | |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 286 | Verify Authorization With Null Privilege |
| 287 | [Documentation] Verify the failure of LDAP authorization with empty |
| 288 | ... privilege. |
| 289 | [Tags] Verify_LDAP_Authorization_With_Null_Privilege |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 290 | [Teardown] Restore LDAP Privilege |
| 291 | |
| 292 | Update LDAP Config And Verify Set Host Name ${GROUP_NAME} ${EMPTY} |
| 293 | ... [${HTTP_FORBIDDEN}] |
| 294 | |
| 295 | |
| 296 | Verify Authorization With Invalid Privilege |
| 297 | [Documentation] Verify that LDAP user authorization with wrong privilege |
| 298 | ... fails. |
| 299 | [Tags] Verify_LDAP_Authorization_With_Invalid_Privilege |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 300 | [Teardown] Restore LDAP Privilege |
| 301 | |
| 302 | Update LDAP Config And Verify Set Host Name ${GROUP_NAME} |
| 303 | ... Invalid_Privilege [${HTTP_FORBIDDEN}] |
| 304 | |
| 305 | |
| 306 | Verify LDAP Login With Invalid Data |
| 307 | [Documentation] Verify that LDAP login with Invalid LDAP data and |
| 308 | ... right LDAP user fails. |
| 309 | [Tags] Verify_LDAP_Login_With_Invalid_Data |
| 310 | [Teardown] Run Keywords FFDC On Test Case Fail AND |
| 311 | ... Create LDAP Configuration |
| 312 | |
| 313 | Create LDAP Configuration ${LDAP_TYPE} Invalid_LDAP_Server_URI |
| 314 | ... Invalid_LDAP_BIND_DN LDAP_BIND_DN_PASSWORD |
| 315 | ... Invalid_LDAP_BASE_DN |
| 316 | Sleep 15s |
| 317 | Redfish Verify LDAP Login ${False} |
| 318 | |
| 319 | |
| 320 | Verify LDAP Config Creation Without BASE_DN |
| 321 | [Documentation] Verify that LDAP login with LDAP configuration |
| 322 | ... created without BASE_DN fails. |
| 323 | [Tags] Verify_LDAP_Config_Creation_Without_BASE_DN |
| 324 | [Teardown] Run Keywords FFDC On Test Case Fail AND |
| 325 | ... Create LDAP Configuration |
| 326 | |
| 327 | Create LDAP Configuration ${LDAP_TYPE} Invalid_LDAP_Server_URI |
| 328 | ... Invalid_LDAP_BIND_DN LDAP_BIND_DN_PASSWORD ${EMPTY} |
| 329 | Sleep 15s |
| 330 | Redfish Verify LDAP Login ${False} |
| 331 | |
| 332 | |
| 333 | Verify LDAP Authentication Without Password |
| 334 | [Documentation] Verify that LDAP user authentication without LDAP |
| 335 | ... user password fails. |
| 336 | [Tags] Verify_LDAP_Authentication_Without_Password |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 337 | |
| 338 | ${status}= Run Keyword And Return Status Redfish.Login ${LDAP_USER} |
| 339 | Valid Value status [${False}] |
| 340 | |
| 341 | |
Sivas SRR | cde694c | 2019-09-09 12:20:34 -0500 | [diff] [blame] | 342 | Verify LDAP Login With Invalid BASE_DN |
| 343 | [Documentation] Verify that LDAP login with invalid BASE_DN and |
| 344 | ... valid LDAP user fails. |
| 345 | [Tags] Verify_LDAP_Login_With_Invalid_BASE_DN |
| 346 | [Teardown] Run Keywords FFDC On Test Case Fail AND |
| 347 | ... Create LDAP Configuration |
| 348 | |
| 349 | Create LDAP Configuration ${LDAP_TYPE} ${LDAP_SERVER_URI} |
| 350 | ... ${LDAP_BIND_DN} ${LDAP_BIND_DN_PASSWORD} Invalid_LDAP_BASE_DN |
| 351 | Sleep 15s |
| 352 | Redfish Verify LDAP Login ${False} |
| 353 | |
| 354 | |
| 355 | Verify LDAP Login With Invalid BIND_DN_PASSWORD |
| 356 | [Documentation] Verify that LDAP login with invalid BIND_DN_PASSWORD and |
| 357 | ... valid LDAP user fails. |
| 358 | [Tags] Verify_LDAP_Login_With_Invalid_BIND_DN_PASSWORD |
| 359 | [Teardown] Run Keywords FFDC On Test Case Fail AND |
| 360 | ... Create LDAP Configuration |
| 361 | |
| 362 | Create LDAP Configuration ${LDAP_TYPE} ${LDAP_SERVER_URI} |
| 363 | ... ${LDAP_BIND_DN} INVALID_LDAP_BIND_DN_PASSWORD ${LDAP_BASE_DN} |
| 364 | Sleep 15s |
| 365 | Redfish Verify LDAP Login ${False} |
| 366 | |
| 367 | |
| 368 | Verify LDAP Login With Invalid BASE_DN And Invalid BIND_DN |
| 369 | [Documentation] Verify that LDAP login with invalid BASE_DN and invalid |
| 370 | ... BIND_DN and valid LDAP user fails. |
| 371 | [Tags] Verify_LDAP_Login_With_Invalid_BASE_DN_And_Invalid_BIND_DN |
| 372 | [Teardown] Run Keywords FFDC On Test Case Fail AND |
| 373 | ... Create LDAP Configuration |
| 374 | |
| 375 | Create LDAP Configuration ${LDAP_TYPE} ${LDAP_SERVER_URI} |
| 376 | ... INVALID_LDAP_BIND_DN ${LDAP_BIND_DN_PASSWORD} INVALID_LDAP_BASE_DN |
| 377 | Sleep 15s |
| 378 | Redfish Verify LDAP Login ${False} |
| 379 | |
| 380 | |
| 381 | Verify Group Name And Group Privilege Able To Modify |
| 382 | [Documentation] Verify that LDAP group name and group privilege able to |
| 383 | ... modify. |
| 384 | [Tags] Verify_Group_Name_And_Group_Privilege_Able_To_Modify |
Sivas SRR | 873de8e | 2019-09-26 00:37:53 -0500 | [diff] [blame] | 385 | [Setup] Update LDAP Configuration with LDAP User Role And Group |
Sivas SRR | cde694c | 2019-09-09 12:20:34 -0500 | [diff] [blame] | 386 | ... ${LDAP_TYPE} Operator ${GROUP_NAME} |
| 387 | |
| 388 | Update LDAP Configuration with LDAP User Role And Group ${LDAP_TYPE} |
| 389 | ... Administrator ${GROUP_NAME} |
| 390 | |
| 391 | |
| 392 | Verify LDAP Login With Invalid BIND_DN |
| 393 | [Documentation] Verify that LDAP login with invalid BIND_DN and |
| 394 | ... valid LDAP user fails. |
| 395 | [Tags] Verify_LDAP_Login_With_Invalid_BIND_DN |
| 396 | [Teardown] Run Keywords FFDC On Test Case Fail AND |
| 397 | ... Create LDAP Configuration |
| 398 | |
| 399 | Create LDAP Configuration ${LDAP_TYPE} ${LDAP_SERVER_URI} |
| 400 | ... Invalid_LDAP_BIND_DN ${LDAP_BIND_DN_PASSWORD} ${LDAP_BASE_DN} |
| 401 | Sleep 15s |
| 402 | Redfish Verify LDAP Login ${False} |
| 403 | |
| 404 | |
| 405 | Verify LDAP Authentication With Invalid LDAP User |
| 406 | [Documentation] Verify that LDAP user authentication for user not exist |
| 407 | ... in LDAP server and fails. |
| 408 | [Tags] Verify_LDAP_Authentication_With_Invalid_LDAP_User |
Sivas SRR | cde694c | 2019-09-09 12:20:34 -0500 | [diff] [blame] | 409 | |
| 410 | ${status}= Run Keyword And Return Status Redfish.Login INVALID_LDAP_USER |
| 411 | ... ${LDAP_USER_PASSWORD} |
| 412 | Valid Value status [${False}] |
| 413 | |
| 414 | |
Prashanth Katti | fe79881 | 2020-01-31 07:04:26 -0600 | [diff] [blame] | 415 | Update LDAP User Roles And Verify Host Poweroff Operation |
| 416 | [Documentation] Update LDAP user roles and verify host poweroff operation. |
| 417 | [Tags] Update_LDAP_User_Roles_And_Verify_Host_Poweroff_Operation |
| 418 | [Teardown] Restore LDAP Privilege |
| 419 | |
| 420 | [Template] Update LDAP User Role And Host Poweroff |
| 421 | # ldap_type group_privilege group_name valid_status_codes |
| 422 | |
| 423 | # Verify LDAP user with NoAccess privilege not able to do host poweroff. |
| 424 | ${LDAP_TYPE} NoAccess ${GROUP_NAME} ${HTTP_FORBIDDEN} |
| 425 | |
| 426 | # Verify LDAP user with ReadOnly privilege not able to do host poweroff. |
| 427 | ${LDAP_TYPE} ReadOnly ${GROUP_NAME} ${HTTP_FORBIDDEN} |
| 428 | |
| 429 | # Verify LDAP user with Operator privilege able to do host poweroff. |
| 430 | ${LDAP_TYPE} Operator ${GROUP_NAME} ${HTTP_OK} |
| 431 | |
| 432 | # Verify LDAP user with Administrator privilege able to do host poweroff. |
| 433 | ${LDAP_TYPE} Administrator ${GROUP_NAME} ${HTTP_OK} |
| 434 | |
| 435 | |
Sivas SRR | 7d7bae3 | 2019-05-29 00:31:14 -0500 | [diff] [blame] | 436 | *** Keywords *** |
Sivas SRR | d21c984 | 2019-06-21 05:41:18 -0500 | [diff] [blame] | 437 | |
Sivas SRR | a031d2d | 2019-08-16 07:49:52 -0500 | [diff] [blame] | 438 | Redfish Verify LDAP Login |
| 439 | [Documentation] LDAP user log into BMC. |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 440 | [Arguments] ${valid_status}=${True} |
| 441 | |
| 442 | # Description of argument(s): |
| 443 | # valid_status Expected status of LDAP login ("True" or "False"). |
Sivas SRR | a031d2d | 2019-08-16 07:49:52 -0500 | [diff] [blame] | 444 | |
| 445 | # According to our repo coding rules, Redfish.Login is to be done in Suite |
| 446 | # Setup and Redfish.Logout is to be done in Suite Teardown. For any |
| 447 | # deviation from this rule (such as in this keyword), the deviant code |
| 448 | # must take steps to restore us to our original logged-in state. |
| 449 | |
Sivas SRR | 6f8ac5d | 2019-08-27 01:09:52 -0500 | [diff] [blame] | 450 | ${status}= Run Keyword And Return Status Redfish.Login ${LDAP_USER} |
| 451 | ... ${LDAP_USER_PASSWORD} |
| 452 | Valid Value status [${valid_status}] |
Sivas SRR | a031d2d | 2019-08-16 07:49:52 -0500 | [diff] [blame] | 453 | Redfish.Logout |
| 454 | Redfish.Login |
| 455 | |
| 456 | |
Sivas SRR | e9a4786 | 2019-08-05 07:13:43 -0500 | [diff] [blame] | 457 | Update LDAP Config And Verify Set Host Name |
| 458 | [Documentation] Update LDAP config and verify by attempting to set host name. |
| 459 | [Arguments] ${group_name} ${group_privilege}=Administrator |
| 460 | ... ${valid_status_codes}=[${HTTP_OK}] |
| 461 | |
| 462 | # Description of argument(s): |
| 463 | # group_name The group name of user. |
| 464 | # group_privilege The group privilege ("Administrator", |
| 465 | # "Operator", "User" or "Callback"). |
| 466 | # valid_status_codes Expected return code(s) from patch |
| 467 | # operation (e.g. "200") used to update |
| 468 | # HostName. See prolog of rest_request |
| 469 | # method in redfish_plut.py for details. |
| 470 | Update LDAP Configuration with LDAP User Role And Group ${LDAP_TYPE} |
| 471 | ... ${group_privilege} ${group_name} |
| 472 | Redfish.Login ${LDAP_USER} ${LDAP_USER_PASSWORD} |
| 473 | # Verify that the LDAP user in ${group_name} with the given privilege is |
| 474 | # allowed to change the hostname. |
Sivas SRR | e9a4786 | 2019-08-05 07:13:43 -0500 | [diff] [blame] | 475 | Redfish.Patch ${REDFISH_NW_PROTOCOL_URI} body={'HostName': '${hostname}'} |
| 476 | ... valid_status_codes=${valid_status_codes} |
| 477 | Redfish.Logout |
| 478 | Redfish.Login |
| 479 | |
| 480 | |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 481 | Disable Other LDAP |
| 482 | [Documentation] Disable other LDAP configuration. |
| 483 | |
| 484 | # First disable other LDAP. |
| 485 | ${inverse_ldap_type}= Set Variable If '${LDAP_TYPE}' == 'LDAP' ActiveDirectory LDAP |
| 486 | Redfish.Patch ${REDFISH_BASE_URI}AccountService |
| 487 | ... body={'${inverse_ldap_type}': {'ServiceEnabled': ${False}}} |
| 488 | Sleep 15s |
| 489 | |
| 490 | |
Sivas SRR | b1b8575 | 2019-07-04 01:28:28 -0500 | [diff] [blame] | 491 | Create LDAP Configuration |
| 492 | [Documentation] Create LDAP configuration. |
| 493 | [Arguments] ${ldap_type}=${LDAP_TYPE} ${ldap_server_uri}=${LDAP_SERVER_URI} |
| 494 | ... ${ldap_bind_dn}=${LDAP_BIND_DN} ${ldap_bind_dn_password}=${LDAP_BIND_DN_PASSWORD} |
| 495 | ... ${ldap_base_dn}=${LDAP_BASE_DN} |
| 496 | |
| 497 | # Description of argument(s): |
| 498 | # ldap_type The LDAP type ("ActiveDirectory" or "LDAP"). |
| 499 | # ldap_server_uri LDAP server uri (e.g. ldap://XX.XX.XX.XX). |
| 500 | # ldap_bind_dn The LDAP bind distinguished name. |
| 501 | # ldap_bind_dn_password The LDAP bind distinguished name password. |
| 502 | # ldap_base_dn The LDAP base distinguished name. |
| 503 | |
George Keishing | 2d0804e | 2019-12-12 22:27:05 -0600 | [diff] [blame] | 504 | ${body}= Catenate {'${ldap_type}': |
| 505 | ... {'ServiceEnabled': ${True}, |
| 506 | ... 'ServiceAddresses': ['${ldap_server_uri}'], |
| 507 | ... 'Authentication': |
| 508 | ... {'AuthenticationType': 'UsernameAndPassword', |
| 509 | ... 'Username':'${ldap_bind_dn}', |
| 510 | ... 'Password': '${ldap_bind_dn_password}'}, |
| 511 | ... 'LDAPService': |
| 512 | ... {'SearchSettings': |
| 513 | ... {'BaseDistinguishedNames': ['${ldap_base_dn}']}}}} |
| 514 | |
| 515 | Redfish.Patch ${REDFISH_BASE_URI}AccountService body=${body} |
Sivas SRR | b1b8575 | 2019-07-04 01:28:28 -0500 | [diff] [blame] | 516 | Sleep 15s |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 517 | |
| 518 | |
| 519 | Config LDAP URL |
| 520 | [Documentation] Config LDAP URL. |
Prashanth Katti | 7d38a09 | 2020-01-10 06:01:09 -0600 | [diff] [blame] | 521 | [Arguments] ${ldap_server_uri}=${LDAP_SERVER_URI} ${expected_status}=${TRUE} |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 522 | |
| 523 | # Description of argument(s): |
| 524 | # ldap_server_uri LDAP server uri (e.g. "ldap://XX.XX.XX.XX/"). |
| 525 | |
Sivas SRR | b1b8575 | 2019-07-04 01:28:28 -0500 | [diff] [blame] | 526 | Redfish.Patch ${REDFISH_BASE_URI}AccountService |
| 527 | ... body={'${ldap_type}': {'ServiceAddresses': ['${ldap_server_uri}']}} |
| 528 | Sleep 15s |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 529 | # After update, LDAP login. |
Prashanth Katti | 7d38a09 | 2020-01-10 06:01:09 -0600 | [diff] [blame] | 530 | ${status}= Run Keyword And Return Status Redfish.Login ${LDAP_USER} ${LDAP_USER_PASSWORD} |
| 531 | Valid Value status [${expected_status}] |
| 532 | |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 533 | Redfish.Logout |
| 534 | Redfish.Login |
| 535 | |
| 536 | |
| 537 | Restore LDAP URL |
| 538 | [Documentation] Restore LDAP URL. |
| 539 | |
| 540 | # Restoring the working LDAP server uri. |
Sivas SRR | b1b8575 | 2019-07-04 01:28:28 -0500 | [diff] [blame] | 541 | Redfish.Patch ${REDFISH_BASE_URI}AccountService |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 542 | ... body={'${ldap_type}': {'ServiceAddresses': ['${LDAP_SERVER_URI}']}} |
Sivas SRR | b1b8575 | 2019-07-04 01:28:28 -0500 | [diff] [blame] | 543 | Sleep 15s |
| 544 | |
| 545 | |
Sivas SRR | d21c984 | 2019-06-21 05:41:18 -0500 | [diff] [blame] | 546 | Restore AccountLockout Attributes |
| 547 | [Documentation] Restore AccountLockout Attributes. |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 548 | |
Sivas SRR | d21c984 | 2019-06-21 05:41:18 -0500 | [diff] [blame] | 549 | Return From Keyword If &{old_account_service} == &{EMPTY} |
| 550 | Redfish.Patch ${REDFISH_BASE_URI}AccountService |
| 551 | ... body=[('AccountLockoutDuration', ${old_account_service['AccountLockoutDuration']})] |
| 552 | Redfish.Patch ${REDFISH_BASE_URI}AccountService |
| 553 | ... body=[('AccountLockoutDuration', ${old_account_service['AccountLockoutThreshold']})] |
| 554 | |
| 555 | |
Sivas SRR | 7d7bae3 | 2019-05-29 00:31:14 -0500 | [diff] [blame] | 556 | Suite Setup Execution |
| 557 | [Documentation] Do suite setup tasks. |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 558 | |
Michael Walsh | e7edb22 | 2019-08-19 17:39:38 -0500 | [diff] [blame] | 559 | Valid Value LDAP_TYPE valid_values=["ActiveDirectory", "LDAP"] |
| 560 | Valid Value LDAP_USER |
| 561 | Valid Value LDAP_USER_PASSWORD |
| 562 | Valid Value GROUP_PRIVILEGE |
| 563 | Valid Value GROUP_NAME |
| 564 | Valid Value LDAP_SERVER_URI |
| 565 | Valid Value LDAP_BIND_DN_PASSWORD |
| 566 | Valid Value LDAP_BIND_DN |
| 567 | Valid Value LDAP_BASE_DN |
Sivas SRR | e9a4786 | 2019-08-05 07:13:43 -0500 | [diff] [blame] | 568 | |
Sivas SRR | f4ec649 | 2019-06-16 01:59:30 -0500 | [diff] [blame] | 569 | Redfish.Login |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 570 | # Call 'Get LDAP Configuration' to verify that LDAP configuration exists. |
| 571 | Get LDAP Configuration ${LDAP_TYPE} |
Sivas SRR | 939b4b1 | 2019-06-26 00:01:59 -0500 | [diff] [blame] | 572 | ${old_ldap_privilege}= Get LDAP Privilege |
Prashanth Katti | fe79881 | 2020-01-31 07:04:26 -0600 | [diff] [blame] | 573 | Set Suite Variable ${old_ldap_privilege} |
Sivas SRR | cde694c | 2019-09-09 12:20:34 -0500 | [diff] [blame] | 574 | Disable Other LDAP |
Sivas SRR | 873de8e | 2019-09-26 00:37:53 -0500 | [diff] [blame] | 575 | Create LDAP Configuration |
| 576 | ${hostname}= Redfish.Get Attribute ${REDFISH_NW_PROTOCOL_URI} HostName |
Sivas SRR | 7d7bae3 | 2019-05-29 00:31:14 -0500 | [diff] [blame] | 577 | |
| 578 | |
Sivas SRR | 939b4b1 | 2019-06-26 00:01:59 -0500 | [diff] [blame] | 579 | Set Read Privilege And Check Firmware Inventory |
| 580 | [Documentation] Set read privilege and check firmware inventory. |
| 581 | [Arguments] ${read_privilege} |
| 582 | |
| 583 | # Description of argument(s): |
| 584 | # read_privilege The read privilege role (e.g. "User" / "Callback"). |
| 585 | |
| 586 | Update LDAP Configuration with LDAP User Role And Group ${LDAP_TYPE} |
| 587 | ... ${read_privilege} ${GROUP_NAME} |
| 588 | |
| 589 | Redfish.Login ${LDAP_USER} ${LDAP_USER_PASSWORD} |
| 590 | # Verify that the LDAP user with read privilege is able to read inventory. |
| 591 | ${resp}= Redfish.Get /redfish/v1/UpdateService/FirmwareInventory |
| 592 | Should Be True ${resp.dict["Members@odata.count"]} >= ${1} |
| 593 | Length Should Be ${resp.dict["Members"]} ${resp.dict["Members@odata.count"]} |
Sivas SRR | d21c984 | 2019-06-21 05:41:18 -0500 | [diff] [blame] | 594 | Redfish.Logout |
Sivas SRR | 939b4b1 | 2019-06-26 00:01:59 -0500 | [diff] [blame] | 595 | Redfish.Login |
| 596 | |
| 597 | |
| 598 | Set Read Privilege And Check Poweron |
| 599 | [Documentation] Set read privilege and power on should not be possible. |
| 600 | [Arguments] ${read_privilege} |
| 601 | |
| 602 | # Description of argument(s): |
| 603 | # read_privilege The read privilege role (e.g. "User" / "Callback"). |
| 604 | |
| 605 | Update LDAP Configuration with LDAP User Role And Group ${LDAP_TYPE} |
| 606 | ... ${read_privilege} ${GROUP_NAME} |
| 607 | Redfish.Login ${LDAP_USER} ${LDAP_USER_PASSWORD} |
| 608 | Redfish.Post ${REDFISH_POWER_URI} |
| 609 | ... body={'ResetType': 'On'} valid_status_codes=[401, 403] |
| 610 | Redfish.Logout |
| 611 | Redfish.Login |
Sivas SRR | d21c984 | 2019-06-21 05:41:18 -0500 | [diff] [blame] | 612 | |
| 613 | |
Sivas SRR | 7d7bae3 | 2019-05-29 00:31:14 -0500 | [diff] [blame] | 614 | Get LDAP Configuration |
| 615 | [Documentation] Retrieve LDAP Configuration. |
| 616 | [Arguments] ${ldap_type} |
| 617 | |
| 618 | # Description of argument(s): |
| 619 | # ldap_type The LDAP type ("ActiveDirectory" or "LDAP"). |
| 620 | |
| 621 | ${ldap_config}= Redfish.Get Properties ${REDFISH_BASE_URI}AccountService |
| 622 | [Return] ${ldap_config["${ldap_type}"]} |
Sivas SRR | 108f9d3 | 2019-06-03 10:05:34 -0500 | [diff] [blame] | 623 | |
| 624 | |
| 625 | Update LDAP Configuration with LDAP User Role And Group |
| 626 | [Documentation] Update LDAP configuration update with LDAP user Role and group. |
| 627 | [Arguments] ${ldap_type} ${group_privilege} ${group_name} |
| 628 | |
| 629 | # Description of argument(s): |
| 630 | # ldap_type The LDAP type ("ActiveDirectory" or "LDAP"). |
| 631 | # group_privilege The group privilege ("Administrator", "Operator", "User" or "Callback"). |
| 632 | # group_name The group name of user. |
| 633 | |
| 634 | ${local_role_remote_group}= Create Dictionary LocalRole=${group_privilege} RemoteGroup=${group_name} |
| 635 | ${remote_role_mapping}= Create List ${local_role_remote_group} |
| 636 | ${ldap_data}= Create Dictionary RemoteRoleMapping=${remote_role_mapping} |
| 637 | ${payload}= Create Dictionary ${ldap_type}=${ldap_data} |
| 638 | Redfish.Patch ${REDFISH_BASE_URI}AccountService body=&{payload} |
Sivas SRR | 939b4b1 | 2019-06-26 00:01:59 -0500 | [diff] [blame] | 639 | # Provide adequate time for LDAP daemon to restart after the update. |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 640 | Sleep 15s |
Sivas SRR | 108f9d3 | 2019-06-03 10:05:34 -0500 | [diff] [blame] | 641 | |
Sivas SRR | f4ec649 | 2019-06-16 01:59:30 -0500 | [diff] [blame] | 642 | |
| 643 | Get LDAP Privilege |
| 644 | [Documentation] Get LDAP privilege and return it. |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 645 | |
Sivas SRR | f4ec649 | 2019-06-16 01:59:30 -0500 | [diff] [blame] | 646 | ${ldap_config}= Get LDAP Configuration ${LDAP_TYPE} |
Sivas SRR | e9a4786 | 2019-08-05 07:13:43 -0500 | [diff] [blame] | 647 | ${num_list_entries}= Get Length ${ldap_config["RemoteRoleMapping"]} |
| 648 | Return From Keyword If ${num_list_entries} == ${0} @{EMPTY} |
| 649 | |
Sivas SRR | f4ec649 | 2019-06-16 01:59:30 -0500 | [diff] [blame] | 650 | [Return] ${ldap_config["RemoteRoleMapping"][0]["LocalRole"]} |
| 651 | |
| 652 | |
| 653 | Restore LDAP Privilege |
| 654 | [Documentation] Restore the LDAP privilege to its original value. |
Sivas SRR | 73379bc | 2019-07-22 10:21:45 -0500 | [diff] [blame] | 655 | |
Sivas SRR | 939b4b1 | 2019-06-26 00:01:59 -0500 | [diff] [blame] | 656 | Return From Keyword If '${old_ldap_privilege}' == '${EMPTY}' |
| 657 | # Log back in to restore the original privilege. |
Sivas SRR | f4ec649 | 2019-06-16 01:59:30 -0500 | [diff] [blame] | 658 | Update LDAP Configuration with LDAP User Role And Group ${LDAP_TYPE} |
| 659 | ... ${old_ldap_privilege} ${GROUP_NAME} |
Prashanth Katti | fe79881 | 2020-01-31 07:04:26 -0600 | [diff] [blame] | 660 | |
| 661 | Sleep 18s |
| 662 | |
| 663 | |
| 664 | Update LDAP User Role And Host Poweroff |
| 665 | [Documentation] Update LDAP user role and do host poweroff. |
| 666 | [Arguments] ${ldap_type} ${group_privilege} ${group_name} ${valid_status_code} |
| 667 | [Teardown] Run Keywords Restore LDAP Privilege AND Redfish.Logout AND Redfish.Login |
| 668 | |
| 669 | # Description of argument(s): |
| 670 | # ldap_type The LDAP type ("ActiveDirectory" or "LDAP"). |
| 671 | # group_privilege The group privilege ("Administrator", "Operator", "ReadOnly" or "NoAccess"). |
| 672 | # group_name The group name of user. |
| 673 | # valid_status_code The expected valid status code. |
| 674 | |
| 675 | Update LDAP Configuration with LDAP User Role And Group ${ldap_type} |
| 676 | ... ${group_privilege} ${group_name} |
| 677 | |
| 678 | Redfish.Login ${LDAP_USER} ${LDAP_USER_PASSWORD} |
| 679 | |
| 680 | Redfish.Post ${REDFISH_POWER_URI} |
| 681 | ... body={'ResetType': 'ForceOff'} valid_status_codes=[${valid_status_code}] |
| 682 | |
| 683 | |