added test for updating admin password via cli

This commit is contained in:
Sabin
2024-07-18 12:07:54 +05:45
parent 61f8b20ecd
commit 52a0c346c3
4 changed files with 106 additions and 1 deletions
@@ -22,3 +22,34 @@ Feature: reset user password via CLI command
When the administrator resets the password of non-existing user "Alice" to "newpass" using the CLI
Then the command should be successful
But the command output should contain "Failed to update user password: entry does not exist"
Scenario: reset password of admin user
Given the user "Admin" has created a new user with the following attributes:
| userName | Alice |
| displayName | Alice Hansen |
| password | %alt1% |
And the administrator has assigned the role "Admin" to user "Alice" using the Graph API
And the administrator has stopped the server
When the administrator resets the password of existing user "Alice" to "newpass" using the CLI
Then the command should be successful
And the command output should contain "Password for user 'uid=Alice,ou=users,o=libregraph-idm' updated."
But the command output should not contain "Failed to update user password: entry does not exist"
And the administrator starts the server
And user "Alice" using password "newpass" should be able to create a new user "Brian" with default attributes
Scenario: reset password after renaming the admin user
Given the user "Admin" has created a new user with the following attributes:
| userName | Alice |
| displayName | Alice Hansen |
| password | %alt1% |
And the administrator has assigned the role "Admin" to user "Alice" using the Graph API
And user "Alice" has changed the username to "superUser"
And the administrator has stopped the server
When the administrator resets the password of existing user "superUser" to "newpass" using the CLI
Then the command should be successful
And the command output should contain "Password for user 'uid=superUser,ou=users,o=libregraph-idm' updated."
But the command output should not contain "Failed to update user password: entry does not exist"
And the administrator starts the server
And user "superUser" using password "newpass" should be able to create a new user "Brian" with default attributes