Skip to content

Commit e9972e6

Browse files
committed
tests(account): ACCOUNT_EMAIL_CONFIRMATION_ANONYMOUS_REDIRECT_URL
1 parent f03ff4d commit e9972e6

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

allauth/account/tests/test_email_verification.py

+22
Original file line numberDiff line numberDiff line change
@@ -338,3 +338,25 @@ def test_email_verification_login_redirect(client, db, settings, password_factor
338338
assert resp["location"] == reverse("account_email_verification_sent")
339339
resp = client.get(reverse("account_login"))
340340
assert resp.status_code == 200
341+
342+
343+
def test_email_verification_redirect_url(client, db, settings, user_password):
344+
settings.ACCOUNT_EMAIL_VERIFICATION = app_settings.EmailVerificationMethod.MANDATORY
345+
settings.ACCOUNT_EMAIL_CONFIRMATION_ANONYMOUS_REDIRECT_URL = "/foobar"
346+
settings.ACCOUNT_CONFIRM_EMAIL_ON_GET = True
347+
348+
resp = client.post(
349+
reverse("account_signup"),
350+
{
351+
"username": "johndoe",
352+
"email": email,
353+
"password1": user_password,
354+
"password2": user_password,
355+
},
356+
)
357+
assert resp.status_code == 302
358+
assert resp["location"] == reverse("account_email_verification_sent")
359+
confirmation = EmailConfirmationHMAC(EmailAddress.objects.get(email=email))
360+
resp = client.get(reverse("account_confirm_email", args=[confirmation.key]))
361+
assert resp.status_code == 302
362+
assert resp["location"] == "/foobar"

0 commit comments

Comments
 (0)