From cf0f59afc02fe756f7b1e7788f38ad8531d4ea14 Mon Sep 17 00:00:00 2001 From: Jakub Date: Fri, 19 Jan 2024 09:45:32 +0100 Subject: [PATCH] test(GODT-3220): Add scenario cannot login with deleted alias --- tests/features/user/login.feature | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/tests/features/user/login.feature b/tests/features/user/login.feature index de00fd09..1855ea20 100644 --- a/tests/features/user/login.feature +++ b/tests/features/user/login.feature @@ -45,4 +45,14 @@ Feature: A user can login When the user logs in with username "[user:user]" and password "password2" And the user logs in with username "[user:additional]" and password "password" Then user "[user:user]" is eventually listed and connected - And user "[user:additional]" is eventually listed and connected \ No newline at end of file + And user "[user:additional]" is eventually listed and connected + + Scenario: Login to account with an alias address that no longer exists + Given the account "[user:user]" has additional address "[user:alias]@[domain]" + And the user logs in with alias address "[user:alias]@[domain]" and password "password2" + And user "[user:user]" is eventually listed and connected + When user "[user:user]" is deleted + Then user "[user:user]" is not listed + When the account "[user:user]" no longer has additional address "[user:alias]@[domain]" + When the user logs in with username "[user:alias]@[domain]" and password "password2" + Then it fails