2019-11-24 20:27:59 +00:00
|
|
|
package suites
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (wds *WebDriverSession) doInitiatePasswordReset(ctx context.Context, t *testing.T, username string) {
|
2020-04-22 03:33:14 +00:00
|
|
|
wds.WaitElementLocatedByID(ctx, t, "reset-password-button").Click() //nolint:errcheck // TODO: Legacy code, consider refactoring time permitting.
|
2019-11-24 20:27:59 +00:00
|
|
|
// Fill in username
|
2020-04-22 03:33:14 +00:00
|
|
|
wds.WaitElementLocatedByID(ctx, t, "username-textfield").SendKeys(username) //nolint:errcheck // TODO: Legacy code, consider refactoring time permitting.
|
2019-11-24 20:27:59 +00:00
|
|
|
// And click on the reset button
|
2020-04-22 03:33:14 +00:00
|
|
|
wds.WaitElementLocatedByID(ctx, t, "reset-button").Click() //nolint:errcheck // TODO: Legacy code, consider refactoring time permitting.
|
2019-11-24 20:27:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (wds *WebDriverSession) doCompletePasswordReset(ctx context.Context, t *testing.T, newPassword1, newPassword2 string) {
|
|
|
|
link := doGetLinkFromLastMail(t)
|
|
|
|
wds.doVisit(t, link)
|
|
|
|
|
2020-04-22 03:33:14 +00:00
|
|
|
wds.WaitElementLocatedByID(ctx, t, "password1-textfield").SendKeys(newPassword1) //nolint:errcheck // TODO: Legacy code, consider refactoring time permitting.
|
|
|
|
wds.WaitElementLocatedByID(ctx, t, "password2-textfield").SendKeys(newPassword2) //nolint:errcheck // TODO: Legacy code, consider refactoring time permitting.
|
|
|
|
wds.WaitElementLocatedByID(ctx, t, "reset-button").Click() //nolint:errcheck // TODO: Legacy code, consider refactoring time permitting.
|
2019-11-24 20:27:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (wds *WebDriverSession) doSuccessfullyCompletePasswordReset(ctx context.Context, t *testing.T, newPassword1, newPassword2 string) {
|
|
|
|
wds.doCompletePasswordReset(ctx, t, newPassword1, newPassword2)
|
|
|
|
wds.verifyIsFirstFactorPage(ctx, t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wds *WebDriverSession) doResetPassword(ctx context.Context, t *testing.T, username, newPassword1, newPassword2 string) {
|
|
|
|
wds.doInitiatePasswordReset(ctx, t, username)
|
|
|
|
// then wait for the "email sent notification"
|
|
|
|
wds.verifyMailNotificationDisplayed(ctx, t)
|
|
|
|
wds.doSuccessfullyCompletePasswordReset(ctx, t, newPassword1, newPassword2)
|
|
|
|
}
|