Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes issue with mail.outbox #1187

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open

Conversation

kingbuzzman
Copy link
Contributor

@kingbuzzman kingbuzzman commented Mar 31, 2025

Closes: #993
Replaces: #1033

@kingbuzzman kingbuzzman marked this pull request as ready for review April 1, 2025 19:17
@kingbuzzman
Copy link
Contributor Author

@bluetech thoughts?

Copy link
Member

@bluetech bluetech left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for tackling this @kingbuzzman. Please see my comments.

@@ -30,11 +30,13 @@ def _marker_apifun(
extra_settings: str = "",
create_manage_py: bool = False,
project_root: str | None = None,
has_settings: bool = True,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd call this create_settings, read a bit better and matches create_manage_py.

@@ -599,7 +599,8 @@ def _dj_autoclear_mailbox() -> None:

from django.core import mail

del mail.outbox[:]
if hasattr(mail, "outbox"):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change LGTM. This is an autouse fixture and should just do nothing if locmem backend is not used, not error.

@@ -608,12 +609,13 @@ def mailoutbox(
_dj_autoclear_mailbox: None,
) -> list[django.core.mail.EmailMessage] | None:
"""A clean email outbox to which Django-generated emails are sent."""
if not django_settings_is_configured():
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change LGTM. If someone explicitly asked for this fixture and Django is not configured, either it is not meant to run and skip is good, or there's some misconfiguration and then None is not really expected.

return mail.outbox # type: ignore[no-any-return]
if hasattr(mail, "outbox"):
return mail.outbox # type: ignore[no-any-return]
return None
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure about returning None. The situation is that someone explicitly used the mailoutbox fixture, but didn't properly configure Django to actually fill it. Do they expect None? I think probably not.

So I think we should error in this case, with a proper message telling the user what they need to do to get the mailoutbox fixture to work (configure email backend to locmem), or if an error is too harsh, then a warning and return [], this way we at least get rid of the pesky None that no one expects. I'd go with the error.

Copy link
Contributor Author

@kingbuzzman kingbuzzman Apr 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was on the fence about this one.. I've made the change

kingbuzzman

This comment was marked as resolved.

@kingbuzzman kingbuzzman requested a review from bluetech April 3, 2025 20:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants