| *** Settings *** |
| Documentation Test root user expire password. |
| |
| Resource ../lib/resource.robot |
| Resource ../lib/bmc_redfish_resource.robot |
| Resource ../lib/ipmi_client.robot |
| Library ../lib/bmc_ssh_utils.py |
| Library SSHLibrary |
| |
| Test Setup Test Setup Execution |
| |
| *** Test Cases *** |
| |
| Expire Root Password And Check IPMI Access Fails |
| [Documentation] Expire root user password and expect an error while access via IPMI. |
| [Tags] Expire_Root_Password_And_Check_IPMI_Access_Fails |
| [Teardown] Run Keywords Wait Until Keyword Succeeds 1 min 10 sec |
| ... Restore Default Password For Root User AND FFDC On Test Case Fail |
| |
| Open Connection And Log In ${OPENBMC_USERNAME} ${OPENBMC_PASSWORD} |
| |
| ${output} ${stderr} ${rc}= BMC Execute Command passwd --expire ${OPENBMC_USERNAME} |
| Should Contain ${output} password expiry information changed |
| |
| ${status}= Run Keyword And Return Status Run External IPMI Standard Command lan print -v |
| Should Be Equal ${status} ${False} |
| |
| Expire And Change Root User Password And Access Via SSH |
| [Documentation] Expire and change root user password and access via SSH. |
| [Tags] Expire_Root_User_Password_And_Access_Via_SSH |
| [Teardown] Run Keywords Wait Until Keyword Succeeds 1 min 10 sec |
| ... Restore Default Password For Root User AND FFDC On Test Case Fail |
| |
| Open Connection And Log In ${OPENBMC_USERNAME} ${OPENBMC_PASSWORD} |
| |
| ${output} ${stderr} ${rc}= BMC Execute Command passwd --expire ${OPENBMC_USERNAME} |
| Should Contain ${output} password expiry information changed |
| |
| # Change to a valid password. |
| ${resp}= Redfish.Patch /redfish/v1/AccountService/Accounts/${OPENBMC_USERNAME} |
| ... body={'Password': '0penBmc123'} valid_status_codes=[${HTTP_OK}] |
| |
| # Verify login with the new password through SSH. |
| Open Connection And Log In ${OPENBMC_USERNAME} 0penBmc123 |
| |
| |
| Expire Root Password And Update Bad Password Length Via Redfish |
| [Documentation] Expire root password and update bad password via Redfish and expect an error. |
| [Tags] Expire_Root_Password_And_Update_Bad_Password_Length_Via_Redfish |
| [Teardown] Run Keywords Wait Until Keyword Succeeds 1 min 10 sec |
| ... Restore Default Password For Root User AND FFDC On Test Case Fail |
| |
| Open Connection And Log In ${OPENBMC_USERNAME} ${OPENBMC_PASSWORD} |
| ${output} ${stderr} ${rc}= BMC Execute Command passwd --expire ${OPENBMC_USERNAME} |
| Should Contain ${output} password expiry information changed |
| |
| ${status}= Run Keyword And Return Status |
| ... Redfish.Patch /redfish/v1/AccountService/Accounts/${OPENBMC_USERNAME} |
| ... body={'Password': '0penBmc0penBmc0penBmc'} |
| Should Be Equal ${status} ${False} |
| |
| *** Keywords *** |
| |
| Test Setup Execution |
| [Documentation] Test setup execution. |
| |
| Redfish.login |
| Valid Length OPENBMC_PASSWORD min_length=8 |
| |
| Restore Default Password For Root User |
| [Documentation] Restore default password for root user (i.e. 0penBmc). |
| |
| # Set default password for root user. |
| Redfish.Patch /redfish/v1/AccountService/Accounts/${OPENBMC_USERNAME} |
| ... body={'Password': '${OPENBMC_PASSWORD}'} valid_status_codes=[${HTTP_OK}] |
| # Verify that root user is able to run Redfish command using default password. |
| Redfish.login |
| |