mirror of
https://github.com/django/django.git
synced 2025-04-05 14:06:42 +00:00
Fixed #7773 -- Added some simple tests for EmailMessage. Thanks to serialx for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7975 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
69ac815a41
commit
825622d912
2
tests/regressiontests/mail/__init__.py
Normal file
2
tests/regressiontests/mail/__init__.py
Normal file
@ -0,0 +1,2 @@
|
||||
|
||||
|
1
tests/regressiontests/mail/models.py
Normal file
1
tests/regressiontests/mail/models.py
Normal file
@ -0,0 +1 @@
|
||||
# This file intentionally left blank
|
41
tests/regressiontests/mail/tests.py
Normal file
41
tests/regressiontests/mail/tests.py
Normal file
@ -0,0 +1,41 @@
|
||||
# coding: utf-8
|
||||
r"""
|
||||
# Tests for the django.core.mail.
|
||||
|
||||
>>> from django.core.mail import EmailMessage
|
||||
|
||||
# Test normal ascii character case:
|
||||
|
||||
>>> email = EmailMessage('Subject', 'Content', 'from@example.com', ['to@example.com'])
|
||||
>>> message = email.message()
|
||||
>>> message['Subject']
|
||||
'Subject'
|
||||
>>> message.get_payload()
|
||||
'Content'
|
||||
>>> message['From']
|
||||
'from@example.com'
|
||||
>>> message['To']
|
||||
'to@example.com'
|
||||
|
||||
# Test multiple-recipient case
|
||||
|
||||
>>> email = EmailMessage('Subject', 'Content', 'from@example.com', ['to@example.com','other@example.com'])
|
||||
>>> message = email.message()
|
||||
>>> message['Subject']
|
||||
'Subject'
|
||||
>>> message.get_payload()
|
||||
'Content'
|
||||
>>> message['From']
|
||||
'from@example.com'
|
||||
>>> message['To']
|
||||
'to@example.com, other@example.com'
|
||||
|
||||
# Test for header injection
|
||||
|
||||
>>> email = EmailMessage('Subject\nInjection Test', 'Content', 'from@example.com', ['to@example.com'])
|
||||
>>> message = email.message()
|
||||
Traceback (most recent call last):
|
||||
...
|
||||
BadHeaderError: Header values can't contain newlines (got 'Subject\nInjection Test' for header 'Subject')
|
||||
|
||||
"""
|
Loading…
x
Reference in New Issue
Block a user