mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 09:02:12 +00:00
50 lines
2.4 KiB
Gherkin
50 lines
2.4 KiB
Gherkin
@customer_login
|
|
Feature: Resetting a password
|
|
In order to login to my account when I forgot my password
|
|
As a Visitor
|
|
I need to be able to reset my password
|
|
|
|
Background:
|
|
Given the store operates on a single channel in "United States"
|
|
And that channel allows to shop using "English (United States)" and "Polish (Poland)" locales
|
|
And there is a user "goodman@example.com" identified by "heisenberg"
|
|
|
|
@ui @email @api
|
|
Scenario: Resetting an account password
|
|
When I want to reset password
|
|
And I specify customer email as "goodman@example.com"
|
|
And I reset it
|
|
Then I should be notified that email with reset instruction has been sent
|
|
And an email with reset token should be sent to "goodman@example.com"
|
|
|
|
@ui @email @api
|
|
Scenario: Resetting an account password in different locale than the default one
|
|
When I reset password for email "goodman@example.com" in "Polish (Poland)" locale
|
|
Then an email with reset token should be sent to "goodman@example.com" in "Polish (Poland)" locale
|
|
|
|
@email @api @ui
|
|
Scenario: Notifying about sending reset instructions even when an account with email does not exist
|
|
When I want to reset password
|
|
And I specify customer email as "does-not-exist@example.com"
|
|
And I reset it
|
|
Then I should be notified that email with reset instruction has been sent
|
|
But "does-not-exist@example.com" should receive no emails
|
|
|
|
@ui @api
|
|
Scenario: Changing my account password with token I received
|
|
Given I have already received a resetting password email
|
|
When I follow link on my email to reset my password
|
|
And I specify my new password as "newp@ssw0rd"
|
|
And I confirm my new password as "newp@ssw0rd"
|
|
And I reset it
|
|
Then I should be notified that my password has been successfully reset
|
|
And I should be able to log in as "goodman@example.com" with "newp@ssw0rd" password
|
|
|
|
@ui @api
|
|
Scenario: Trying to change my account password twice with token I received
|
|
Given I have already received a resetting password email
|
|
When I follow link on my email to reset my password
|
|
And I specify my new password as "newp@ssw0rd"
|
|
And I confirm my new password as "newp@ssw0rd"
|
|
And I reset it
|
|
Then I should not be able to change my password again with the same token
|