added cli test for changing password of non-existing user

This commit is contained in:
Sabin
2024-07-11 09:39:57 +05:45
parent d3515354c8
commit 3095d843b8
2 changed files with 14 additions and 4 deletions
@@ -8,10 +8,17 @@ Feature: reset user password via CLI command
| displayName | Alice Hansen |
| password | %alt1% |
And the administrator has stopped the server
When the administrator resets the password of user "Alice" to "newpass" using the CLI
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 has started the server
And user "Alice" should be able to create folder "newFolder" using password "newpass"
But user "Alice" should not be able to create folder "anotherFolder" using password "%alt1%"
Scenario: try to reset password of non-existing user
Given the administrator has stopped the server
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"