-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathtest_sandbox_mode.py
114 lines (95 loc) · 5.62 KB
/
test_sandbox_mode.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
from django.core.mail import EmailMessage
from django.test import override_settings
from django.test.testcases import SimpleTestCase
from sendgrid.helpers.mail import BypassListManagement, MailSettings
from sendgrid_backend.mail import SendgridBackend
class TestSandboxMode(SimpleTestCase):
def test_sandbox_mode(self):
"""
Tests combinations of DEBUG, SENDGRID_SANDBOX_MODE_IN_DEBUG, and mail_settings to ensure
that the behavior is as expected.
"""
msg = EmailMessage(
subject="Hello, World!",
body="Hello, World!",
from_email="Sam Smith <sam.smith@example.com>",
to=["John Doe <john.doe@example.com>"],
)
msg_with_settings = EmailMessage(
subject="Hello, World!",
body="Hello, World!",
from_email="Sam Smith <sam.smith@example.com>",
to=["John Doe <john.doe@example.com>"],
)
# additional setting to test existing settings preserved then sandbox_mode populated
mail_settings = MailSettings()
mail_settings.bypass_list_management = BypassListManagement(enable=True)
msg_with_settings.mail_settings = mail_settings
# Sandbox mode should be False
with override_settings(DEBUG=False, SENDGRID_SANDBOX_MODE_IN_DEBUG=True):
backend = SendgridBackend(api_key="stub")
result = backend._build_sg_mail(msg)
self.assertIn("mail_settings", result)
self.assertIn("sandbox_mode", result["mail_settings"])
self.assertNotIn("bypass_list_management", result["mail_settings"])
self.assertFalse(result["mail_settings"]["sandbox_mode"]["enable"])
# Sandbox mode should be True
with override_settings(DEBUG=True, SENDGRID_SANDBOX_MODE_IN_DEBUG=True):
backend = SendgridBackend(api_key="stub")
result = backend._build_sg_mail(msg)
self.assertIn("mail_settings", result)
self.assertIn("sandbox_mode", result["mail_settings"])
self.assertNotIn("bypass_list_management", result["mail_settings"])
self.assertTrue(result["mail_settings"]["sandbox_mode"]["enable"])
# Sandbox mode should be True (by default when DEBUG==True)
with override_settings(DEBUG=True):
backend = SendgridBackend(api_key="stub")
result = backend._build_sg_mail(msg)
self.assertIn("mail_settings", result)
self.assertIn("sandbox_mode", result["mail_settings"])
self.assertNotIn("bypass_list_management", result["mail_settings"])
self.assertTrue(result["mail_settings"]["sandbox_mode"]["enable"])
# Sandbox mode should be False
with override_settings(DEBUG=True, SENDGRID_SANDBOX_MODE_IN_DEBUG=False):
backend = SendgridBackend(api_key="stub")
result = backend._build_sg_mail(msg)
self.assertIn("mail_settings", result)
self.assertIn("sandbox_mode", result["mail_settings"])
self.assertNotIn("bypass_list_management", result["mail_settings"])
self.assertFalse(result["mail_settings"]["sandbox_mode"]["enable"])
# Sandbox mode should be False with existing settings preserved
with override_settings(DEBUG=False, SENDGRID_SANDBOX_MODE_IN_DEBUG=True):
backend = SendgridBackend(api_key="stub")
result = backend._build_sg_mail(msg_with_settings)
self.assertIn("mail_settings", result)
self.assertIn("sandbox_mode", result["mail_settings"])
self.assertIn("bypass_list_management", result["mail_settings"])
self.assertFalse(result["mail_settings"]["sandbox_mode"]["enable"])
self.assertTrue(result["mail_settings"]["bypass_list_management"]["enable"])
# Sandbox mode should be True with existing settings preserved
with override_settings(DEBUG=True, SENDGRID_SANDBOX_MODE_IN_DEBUG=True):
backend = SendgridBackend(api_key="stub")
result = backend._build_sg_mail(msg_with_settings)
self.assertIn("mail_settings", result)
self.assertIn("sandbox_mode", result["mail_settings"])
self.assertIn("bypass_list_management", result["mail_settings"])
self.assertTrue(result["mail_settings"]["sandbox_mode"]["enable"])
self.assertTrue(result["mail_settings"]["bypass_list_management"]["enable"])
# Sandbox mode should be True (by default when DEBUG==True) with existing settings preserved
with override_settings(DEBUG=True):
backend = SendgridBackend(api_key="stub")
result = backend._build_sg_mail(msg_with_settings)
self.assertIn("mail_settings", result)
self.assertIn("sandbox_mode", result["mail_settings"])
self.assertIn("bypass_list_management", result["mail_settings"])
self.assertTrue(result["mail_settings"]["sandbox_mode"]["enable"])
self.assertTrue(result["mail_settings"]["bypass_list_management"]["enable"])
# Sandbox mode should be False with existing settings preserved
with override_settings(DEBUG=True, SENDGRID_SANDBOX_MODE_IN_DEBUG=False):
backend = SendgridBackend(api_key="stub")
result = backend._build_sg_mail(msg_with_settings)
self.assertIn("mail_settings", result)
self.assertIn("sandbox_mode", result["mail_settings"])
self.assertIn("bypass_list_management", result["mail_settings"])
self.assertFalse(result["mail_settings"]["sandbox_mode"]["enable"])
self.assertTrue(result["mail_settings"]["bypass_list_management"]["enable"])