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 .. import __version__ as _breezy_version
21
from ..email_message import EmailMessage
22
from ..errors import BzrBadParameterNotUnicode
23
from ..smtp_connection import SMTPConnection
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''' % _breezy_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': _breezy_version, 'boundary': BOUNDARY}
70
def simple_multipart_message():
71
msg = _MULTIPART_HEAD + '--%s--\n' % BOUNDARY
75
def complex_multipart_message(typ):
76
msg = _MULTIPART_HEAD + '''\
79
Content-Type: text/%%s; charset="us-ascii"; name="lines.txt"
80
Content-Transfer-Encoding: 7bit
81
Content-Disposition: inline
90
''' % {'boundary': BOUNDARY}
94
class TestEmailMessage(tests.TestCase):
96
def test_empty_message(self):
97
msg = EmailMessage('from@from.com', 'to@to.com', 'subject')
98
self.assertEqualDiff(EMPTY_MESSAGE, msg.as_string())
100
def test_simple_message(self):
102
b'body': SIMPLE_MESSAGE_ASCII,
103
u'b\xf3dy': SIMPLE_MESSAGE_UTF8,
104
b'b\xc3\xb3dy': SIMPLE_MESSAGE_UTF8,
105
b'b\xf4dy': SIMPLE_MESSAGE_8BIT,
107
for body, expected in pairs.items():
108
msg = EmailMessage('from@from.com', 'to@to.com', 'subject', body)
109
self.assertEqualDiff(expected, msg.as_string())
111
def test_multipart_message_simple(self):
112
msg = EmailMessage('from@from.com', 'to@to.com', 'subject')
113
msg.add_inline_attachment('body')
114
self.assertEqualDiff(simple_multipart_message(),
115
msg.as_string(BOUNDARY))
117
def test_multipart_message_complex(self):
118
msg = EmailMessage('from@from.com', 'to@to.com', 'subject', 'body')
119
msg.add_inline_attachment(u'a\nb\nc\nd\ne\n', 'lines.txt', 'x-subtype')
120
self.assertEqualDiff(complex_multipart_message('x-subtype'),
121
msg.as_string(BOUNDARY))
123
def test_headers_accept_unicode_and_utf8(self):
124
for user in [u'Pepe P\xe9rez <pperez@ejemplo.com>',
125
'Pepe P\xc3\xa9red <pperez@ejemplo.com>']:
126
msg = EmailMessage(user, user, user) # no exception raised
128
for header in ['From', 'To', 'Subject']:
130
value.encode('ascii') # no UnicodeDecodeError
132
def test_headers_reject_8bit(self):
133
for i in range(3): # from_address, to_address, subject
134
x = [b'"J. Random Developer" <jrandom@example.com>'] * 3
135
x[i] = b'Pepe P\xe9rez <pperez@ejemplo.com>'
136
self.assertRaises(BzrBadParameterNotUnicode, EmailMessage, *x)
138
def test_multiple_destinations(self):
139
to_addresses = ['to1@to.com', 'to2@to.com', 'to3@to.com']
140
msg = EmailMessage('from@from.com', to_addresses, 'subject')
141
self.assertContainsRe(msg.as_string(), 'To: '
142
+ ', '.join(to_addresses)) # re.M can't be passed, so no ^$
144
def test_retrieving_headers(self):
145
msg = EmailMessage('from@from.com', 'to@to.com', 'subject')
146
for header, value in [('From', 'from@from.com'), ('To', 'to@to.com'),
147
('Subject', 'subject')]:
148
self.assertEqual(value, msg.get(header))
149
self.assertEqual(value, msg[header])
150
self.assertEqual(None, msg.get('Does-Not-Exist'))
151
self.assertEqual(None, msg['Does-Not-Exist'])
152
self.assertEqual('None', msg.get('Does-Not-Exist', 'None'))
154
def test_setting_headers(self):
155
msg = EmailMessage('from@from.com', 'to@to.com', 'subject')
156
msg['To'] = 'to2@to.com'
157
msg['Cc'] = 'cc@cc.com'
158
self.assertEqual('to2@to.com', msg['To'])
159
self.assertEqual('cc@cc.com', msg['Cc'])
161
def test_address_to_encoded_header(self):
163
"""Convert a RFC2047-encoded string to a unicode string."""
164
return ''.join([chunk.decode(encoding or 'ascii')
165
for chunk, encoding in decode_header(s)])
167
address = 'jrandom@example.com'
168
encoded = EmailMessage.address_to_encoded_header(address)
169
self.assertEqual(address, encoded)
171
address = 'J Random Developer <jrandom@example.com>'
172
encoded = EmailMessage.address_to_encoded_header(address)
173
self.assertEqual(address, encoded)
175
address = '"J. Random Developer" <jrandom@example.com>'
176
encoded = EmailMessage.address_to_encoded_header(address)
177
self.assertEqual(address, encoded)
179
address = u'Pepe P\xe9rez <pperez@ejemplo.com>' # unicode ok
180
encoded = EmailMessage.address_to_encoded_header(address)
181
# addr must be unencoded
182
self.assertTrue('pperez@ejemplo.com' in encoded)
183
self.assertEqual(address, decode(encoded))
185
address = b'Pepe P\xe9rez <pperez@ejemplo.com>' # ISO-8859-1 not ok
186
self.assertRaises(BzrBadParameterNotUnicode,
187
EmailMessage.address_to_encoded_header, address)
189
def test_string_with_encoding(self):
191
u'Pepe': (b'Pepe', 'ascii'),
192
u'P\xe9rez': (b'P\xc3\xa9rez', 'utf-8'),
193
b'P\xc3\xa9rez': (b'P\xc3\xa9rez', 'utf-8'),
194
b'P\xe8rez': (b'P\xe8rez', '8-bit'),
196
for string_, pair in pairs.items():
197
self.assertEqual(pair, EmailMessage.string_with_encoding(string_))
200
class TestSend(tests.TestCase):
203
super(TestSend, self).setUp()
206
def send_as_append(_self, msg):
207
self.messages.append(msg.as_string(BOUNDARY))
209
self.overrideAttr(SMTPConnection, 'send_email', send_as_append)
211
def send_email(self, attachment=None, attachment_filename=None,
212
attachment_mime_subtype='plain'):
214
def get(self, option):
217
EmailMessage.send(FakeConfig(), 'from@from.com', 'to@to.com',
219
attachment=attachment,
220
attachment_filename=attachment_filename,
221
attachment_mime_subtype=attachment_mime_subtype)
223
def assertMessage(self, expected):
224
self.assertLength(1, self.messages)
225
self.assertEqualDiff(expected, self.messages[0])
227
def test_send_plain(self):
228
self.send_email(u'a\nb\nc\nd\ne\n', 'lines.txt')
229
self.assertMessage(complex_multipart_message('plain'))
231
def test_send_patch(self):
232
self.send_email(u'a\nb\nc\nd\ne\n', 'lines.txt', 'x-patch')
233
self.assertMessage(complex_multipart_message('x-patch'))
235
def test_send_simple(self):
237
self.assertMessage(SIMPLE_MESSAGE_ASCII)