1
# Copyright (C) 2007, 2009, 2011, 2014, 2016 Canonical Ltd
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
from email.Header import decode_header
20
from bzrlib import __version__ as _bzrlib_version
21
from bzrlib.email_message import EmailMessage
22
from bzrlib.errors import BzrBadParameterNotUnicode
23
from bzrlib.smtp_connection import SMTPConnection
24
from bzrlib import tests
30
User-Agent: Bazaar (%s)
34
_SIMPLE_MESSAGE = '''\
36
Content-Type: text/plain; charset="%%s"
37
Content-Transfer-Encoding: %%s
41
User-Agent: Bazaar (%s)
43
%%s''' % _bzrlib_version
45
SIMPLE_MESSAGE_ASCII = _SIMPLE_MESSAGE % ('us-ascii', '7bit', 'body')
46
SIMPLE_MESSAGE_UTF8 = _SIMPLE_MESSAGE % ('utf-8', 'base64', 'YsOzZHk=\n')
47
SIMPLE_MESSAGE_8BIT = _SIMPLE_MESSAGE % ('8-bit', 'base64', 'YvRkeQ==\n')
50
BOUNDARY = '=====123456=='
52
_MULTIPART_HEAD = '''\
53
Content-Type: multipart/mixed; boundary="%(boundary)s"
58
User-Agent: Bazaar (%(version)s)
62
Content-Type: text/plain; charset="us-ascii"
63
Content-Transfer-Encoding: 7bit
64
Content-Disposition: inline
67
''' % { 'version': _bzrlib_version, 'boundary': BOUNDARY }
70
def final_newline_or_not(msg):
71
if sys.version_info >= (2, 7, 6):
72
# Some internals of python's email module changed in an (minor)
73
# incompatible way: a final newline is appended in 2.7.6...
78
def simple_multipart_message():
79
msg = _MULTIPART_HEAD + '--%s--' % BOUNDARY
80
return final_newline_or_not(msg)
83
def complex_multipart_message(typ):
84
msg = _MULTIPART_HEAD + '''\
87
Content-Type: text/%%s; charset="us-ascii"; name="lines.txt"
88
Content-Transfer-Encoding: 7bit
89
Content-Disposition: inline
97
--%(boundary)s--''' % { 'boundary': BOUNDARY }
98
msg = final_newline_or_not(msg)
102
class TestEmailMessage(tests.TestCase):
104
def test_empty_message(self):
105
msg = EmailMessage('from@from.com', 'to@to.com', 'subject')
106
self.assertEqualDiff(EMPTY_MESSAGE , msg.as_string())
108
def test_simple_message(self):
110
'body': SIMPLE_MESSAGE_ASCII,
111
u'b\xf3dy': SIMPLE_MESSAGE_UTF8,
112
'b\xc3\xb3dy': SIMPLE_MESSAGE_UTF8,
113
'b\xf4dy': SIMPLE_MESSAGE_8BIT,
115
for body, expected in pairs.items():
116
msg = EmailMessage('from@from.com', 'to@to.com', 'subject', body)
117
self.assertEqualDiff(expected, msg.as_string())
119
def test_multipart_message_simple(self):
120
msg = EmailMessage('from@from.com', 'to@to.com', 'subject')
121
msg.add_inline_attachment('body')
122
self.assertEqualDiff(simple_multipart_message(),
123
msg.as_string(BOUNDARY))
126
def test_multipart_message_complex(self):
127
msg = EmailMessage('from@from.com', 'to@to.com', 'subject', 'body')
128
msg.add_inline_attachment(u'a\nb\nc\nd\ne\n', 'lines.txt', 'x-subtype')
129
self.assertEqualDiff(complex_multipart_message('x-subtype'),
130
msg.as_string(BOUNDARY))
132
def test_headers_accept_unicode_and_utf8(self):
133
for user in [ u'Pepe P\xe9rez <pperez@ejemplo.com>',
134
'Pepe P\xc3\xa9red <pperez@ejemplo.com>' ]:
135
msg = EmailMessage(user, user, user) # no exception raised
137
for header in ['From', 'To', 'Subject']:
139
str(value).decode('ascii') # no UnicodeDecodeError
141
def test_headers_reject_8bit(self):
142
for i in range(3): # from_address, to_address, subject
143
x = [ '"J. Random Developer" <jrandom@example.com>' ] * 3
144
x[i] = 'Pepe P\xe9rez <pperez@ejemplo.com>'
145
self.assertRaises(BzrBadParameterNotUnicode, EmailMessage, *x)
147
def test_multiple_destinations(self):
148
to_addresses = [ 'to1@to.com', 'to2@to.com', 'to3@to.com' ]
149
msg = EmailMessage('from@from.com', to_addresses, 'subject')
150
self.assertContainsRe(msg.as_string(), 'To: ' +
151
', '.join(to_addresses)) # re.M can't be passed, so no ^$
153
def test_retrieving_headers(self):
154
msg = EmailMessage('from@from.com', 'to@to.com', 'subject')
155
for header, value in [('From', 'from@from.com'), ('To', 'to@to.com'),
156
('Subject', 'subject')]:
157
self.assertEqual(value, msg.get(header))
158
self.assertEqual(value, msg[header])
159
self.assertEqual(None, msg.get('Does-Not-Exist'))
160
self.assertEqual(None, msg['Does-Not-Exist'])
161
self.assertEqual('None', msg.get('Does-Not-Exist', 'None'))
163
def test_setting_headers(self):
164
msg = EmailMessage('from@from.com', 'to@to.com', 'subject')
165
msg['To'] = 'to2@to.com'
166
msg['Cc'] = 'cc@cc.com'
167
self.assertEqual('to2@to.com', msg['To'])
168
self.assertEqual('cc@cc.com', msg['Cc'])
170
def test_address_to_encoded_header(self):
172
"""Convert a RFC2047-encoded string to a unicode string."""
173
return ' '.join([chunk.decode(encoding or 'ascii')
174
for chunk, encoding in decode_header(s)])
176
address = 'jrandom@example.com'
177
encoded = EmailMessage.address_to_encoded_header(address)
178
self.assertEqual(address, encoded)
180
address = 'J Random Developer <jrandom@example.com>'
181
encoded = EmailMessage.address_to_encoded_header(address)
182
self.assertEqual(address, encoded)
184
address = '"J. Random Developer" <jrandom@example.com>'
185
encoded = EmailMessage.address_to_encoded_header(address)
186
self.assertEqual(address, encoded)
188
address = u'Pepe P\xe9rez <pperez@ejemplo.com>' # unicode ok
189
encoded = EmailMessage.address_to_encoded_header(address)
190
self.assertTrue('pperez@ejemplo.com' in encoded) # addr must be unencoded
191
self.assertEqual(address, decode(encoded))
193
address = 'Pepe P\xc3\xa9red <pperez@ejemplo.com>' # UTF-8 ok
194
encoded = EmailMessage.address_to_encoded_header(address)
195
self.assertTrue('pperez@ejemplo.com' in encoded)
196
self.assertEqual(address, decode(encoded).encode('utf-8'))
198
address = 'Pepe P\xe9rez <pperez@ejemplo.com>' # ISO-8859-1 not ok
199
self.assertRaises(BzrBadParameterNotUnicode,
200
EmailMessage.address_to_encoded_header, address)
202
def test_string_with_encoding(self):
204
u'Pepe': ('Pepe', 'ascii'),
205
u'P\xe9rez': ('P\xc3\xa9rez', 'utf-8'),
206
'Perez': ('Perez', 'ascii'), # u'Pepe' == 'Pepe'
207
'P\xc3\xa9rez': ('P\xc3\xa9rez', 'utf-8'),
208
'P\xe8rez': ('P\xe8rez', '8-bit'),
210
for string_, pair in pairs.items():
211
self.assertEqual(pair, EmailMessage.string_with_encoding(string_))
214
class TestSend(tests.TestCase):
217
super(TestSend, self).setUp()
220
def send_as_append(_self, msg):
221
self.messages.append(msg.as_string(BOUNDARY))
223
self.overrideAttr(SMTPConnection, 'send_email', send_as_append)
227
def send_email(self, attachment=None, attachment_filename=None,
228
attachment_mime_subtype='plain'):
230
def get(self, option):
233
EmailMessage.send(FakeConfig(), 'from@from.com', 'to@to.com',
235
attachment=attachment,
236
attachment_filename=attachment_filename,
237
attachment_mime_subtype=attachment_mime_subtype)
239
def assertMessage(self, expected):
240
self.assertLength(1, self.messages)
241
self.assertEqualDiff(expected, self.messages[0])
243
def test_send_plain(self):
244
self.send_email(u'a\nb\nc\nd\ne\n', 'lines.txt')
245
self.assertMessage(complex_multipart_message('plain'))
247
def test_send_patch(self):
248
self.send_email(u'a\nb\nc\nd\ne\n', 'lines.txt', 'x-patch')
249
self.assertMessage(complex_multipart_message('x-patch'))
251
def test_send_simple(self):
253
self.assertMessage(SIMPLE_MESSAGE_ASCII)