blob: 8d1dbbfc4364d4243c8e85c3141cbe78b1ad28ef [file] [log] [blame]
Guido van Rossum806c2462007-08-06 23:33:07 +00001import asyncore
R. David Murray7dff9e02010-11-08 17:15:13 +00002import email.mime.text
Guido van Rossum04110fb2007-08-24 16:32:05 +00003import email.utils
Guido van Rossumd8faa362007-04-27 19:54:29 +00004import socket
Guido van Rossum806c2462007-08-06 23:33:07 +00005import smtpd
Guido van Rossumd8faa362007-04-27 19:54:29 +00006import smtplib
Guido van Rossum806c2462007-08-06 23:33:07 +00007import io
R. David Murray7dff9e02010-11-08 17:15:13 +00008import re
Guido van Rossum806c2462007-08-06 23:33:07 +00009import sys
Guido van Rossumd8faa362007-04-27 19:54:29 +000010import time
Guido van Rossum806c2462007-08-06 23:33:07 +000011import select
Ross Lagerwall86407432012-03-29 18:08:48 +020012import errno
Guido van Rossumd8faa362007-04-27 19:54:29 +000013
Victor Stinner45df8202010-04-28 22:31:17 +000014import unittest
Richard Jones64b02de2010-08-03 06:39:33 +000015from test import support, mock_socket
Guido van Rossumd8faa362007-04-27 19:54:29 +000016
Victor Stinner45df8202010-04-28 22:31:17 +000017try:
18 import threading
19except ImportError:
20 threading = None
21
Benjamin Petersonee8712c2008-05-20 21:35:26 +000022HOST = support.HOST
Guido van Rossumd8faa362007-04-27 19:54:29 +000023
Josiah Carlsond74900e2008-07-07 04:15:08 +000024if sys.platform == 'darwin':
25 # select.poll returns a select.POLLHUP at the end of the tests
26 # on darwin, so just ignore it
27 def handle_expt(self):
28 pass
29 smtpd.SMTPChannel.handle_expt = handle_expt
30
31
Christian Heimes5e696852008-04-09 08:37:03 +000032def server(evt, buf, serv):
Christian Heimes380f7f22008-02-28 11:19:05 +000033 serv.listen(5)
34 evt.set()
Guido van Rossumd8faa362007-04-27 19:54:29 +000035 try:
36 conn, addr = serv.accept()
37 except socket.timeout:
38 pass
39 else:
Guido van Rossum806c2462007-08-06 23:33:07 +000040 n = 500
41 while buf and n > 0:
42 r, w, e = select.select([], [conn], [])
43 if w:
44 sent = conn.send(buf)
45 buf = buf[sent:]
46
47 n -= 1
Guido van Rossum806c2462007-08-06 23:33:07 +000048
Guido van Rossumd8faa362007-04-27 19:54:29 +000049 conn.close()
50 finally:
51 serv.close()
52 evt.set()
53
Victor Stinner45df8202010-04-28 22:31:17 +000054class GeneralTests(unittest.TestCase):
Guido van Rossumd8faa362007-04-27 19:54:29 +000055
56 def setUp(self):
Richard Jones64b02de2010-08-03 06:39:33 +000057 smtplib.socket = mock_socket
58 self.port = 25
Guido van Rossumd8faa362007-04-27 19:54:29 +000059
60 def tearDown(self):
Richard Jones64b02de2010-08-03 06:39:33 +000061 smtplib.socket = socket
Guido van Rossumd8faa362007-04-27 19:54:29 +000062
R. David Murray7dff9e02010-11-08 17:15:13 +000063 # This method is no longer used but is retained for backward compatibility,
64 # so test to make sure it still works.
65 def testQuoteData(self):
66 teststr = "abc\n.jkl\rfoo\r\n..blue"
67 expected = "abc\r\n..jkl\r\nfoo\r\n...blue"
68 self.assertEqual(expected, smtplib.quotedata(teststr))
69
Guido van Rossum806c2462007-08-06 23:33:07 +000070 def testBasic1(self):
Richard Jones64b02de2010-08-03 06:39:33 +000071 mock_socket.reply_with(b"220 Hola mundo")
Guido van Rossumd8faa362007-04-27 19:54:29 +000072 # connects
Christian Heimes5e696852008-04-09 08:37:03 +000073 smtp = smtplib.SMTP(HOST, self.port)
Georg Brandlf78e02b2008-06-10 17:40:04 +000074 smtp.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +000075
Senthil Kumaran3d23fd62011-07-30 10:56:50 +080076 def testSourceAddress(self):
77 mock_socket.reply_with(b"220 Hola mundo")
78 # connects
79 smtp = smtplib.SMTP(HOST, self.port,
80 source_address=('127.0.0.1',19876))
81 self.assertEqual(smtp.source_address, ('127.0.0.1', 19876))
82 smtp.close()
83
Guido van Rossum806c2462007-08-06 23:33:07 +000084 def testBasic2(self):
Richard Jones6a9e6bb2010-08-04 12:27:36 +000085 mock_socket.reply_with(b"220 Hola mundo")
Guido van Rossum806c2462007-08-06 23:33:07 +000086 # connects, include port in host name
Christian Heimes5e696852008-04-09 08:37:03 +000087 smtp = smtplib.SMTP("%s:%s" % (HOST, self.port))
Georg Brandlf78e02b2008-06-10 17:40:04 +000088 smtp.close()
Guido van Rossum806c2462007-08-06 23:33:07 +000089
90 def testLocalHostName(self):
Richard Jones6a9e6bb2010-08-04 12:27:36 +000091 mock_socket.reply_with(b"220 Hola mundo")
Guido van Rossum806c2462007-08-06 23:33:07 +000092 # check that supplied local_hostname is used
Christian Heimes5e696852008-04-09 08:37:03 +000093 smtp = smtplib.SMTP(HOST, self.port, local_hostname="testhost")
Guido van Rossum806c2462007-08-06 23:33:07 +000094 self.assertEqual(smtp.local_hostname, "testhost")
Georg Brandlf78e02b2008-06-10 17:40:04 +000095 smtp.close()
Guido van Rossum806c2462007-08-06 23:33:07 +000096
Guido van Rossumd8faa362007-04-27 19:54:29 +000097 def testTimeoutDefault(self):
Richard Jones6a9e6bb2010-08-04 12:27:36 +000098 mock_socket.reply_with(b"220 Hola mundo")
Richard Jones64b02de2010-08-03 06:39:33 +000099 self.assertTrue(mock_socket.getdefaulttimeout() is None)
100 mock_socket.setdefaulttimeout(30)
101 self.assertEqual(mock_socket.getdefaulttimeout(), 30)
Georg Brandlf78e02b2008-06-10 17:40:04 +0000102 try:
103 smtp = smtplib.SMTP(HOST, self.port)
104 finally:
Richard Jones64b02de2010-08-03 06:39:33 +0000105 mock_socket.setdefaulttimeout(None)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000106 self.assertEqual(smtp.sock.gettimeout(), 30)
Georg Brandlf78e02b2008-06-10 17:40:04 +0000107 smtp.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000108
109 def testTimeoutNone(self):
Richard Jones6a9e6bb2010-08-04 12:27:36 +0000110 mock_socket.reply_with(b"220 Hola mundo")
Georg Brandlf78e02b2008-06-10 17:40:04 +0000111 self.assertTrue(socket.getdefaulttimeout() is None)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000112 socket.setdefaulttimeout(30)
113 try:
Christian Heimes5e696852008-04-09 08:37:03 +0000114 smtp = smtplib.SMTP(HOST, self.port, timeout=None)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000115 finally:
Georg Brandlf78e02b2008-06-10 17:40:04 +0000116 socket.setdefaulttimeout(None)
117 self.assertTrue(smtp.sock.gettimeout() is None)
118 smtp.close()
119
120 def testTimeoutValue(self):
Richard Jones6a9e6bb2010-08-04 12:27:36 +0000121 mock_socket.reply_with(b"220 Hola mundo")
Georg Brandlf78e02b2008-06-10 17:40:04 +0000122 smtp = smtplib.SMTP(HOST, self.port, timeout=30)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000123 self.assertEqual(smtp.sock.gettimeout(), 30)
Georg Brandlf78e02b2008-06-10 17:40:04 +0000124 smtp.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000125
126
Guido van Rossum04110fb2007-08-24 16:32:05 +0000127# Test server thread using the specified SMTP server class
Christian Heimes5e696852008-04-09 08:37:03 +0000128def debugging_server(serv, serv_evt, client_evt):
Christian Heimes380f7f22008-02-28 11:19:05 +0000129 serv_evt.set()
Guido van Rossum806c2462007-08-06 23:33:07 +0000130
131 try:
132 if hasattr(select, 'poll'):
133 poll_fun = asyncore.poll2
134 else:
135 poll_fun = asyncore.poll
136
137 n = 1000
138 while asyncore.socket_map and n > 0:
139 poll_fun(0.01, asyncore.socket_map)
140
141 # when the client conversation is finished, it will
142 # set client_evt, and it's then ok to kill the server
Benjamin Peterson672b8032008-06-11 19:14:14 +0000143 if client_evt.is_set():
Guido van Rossum806c2462007-08-06 23:33:07 +0000144 serv.close()
145 break
146
147 n -= 1
148
149 except socket.timeout:
150 pass
151 finally:
Benjamin Peterson672b8032008-06-11 19:14:14 +0000152 if not client_evt.is_set():
Christian Heimes380f7f22008-02-28 11:19:05 +0000153 # allow some time for the client to read the result
154 time.sleep(0.5)
155 serv.close()
Guido van Rossum806c2462007-08-06 23:33:07 +0000156 asyncore.close_all()
Guido van Rossum806c2462007-08-06 23:33:07 +0000157 serv_evt.set()
158
159MSG_BEGIN = '---------- MESSAGE FOLLOWS ----------\n'
160MSG_END = '------------ END MESSAGE ------------\n'
161
Guido van Rossum04110fb2007-08-24 16:32:05 +0000162# NOTE: Some SMTP objects in the tests below are created with a non-default
163# local_hostname argument to the constructor, since (on some systems) the FQDN
164# lookup caused by the default local_hostname sometimes takes so long that the
Guido van Rossum806c2462007-08-06 23:33:07 +0000165# test server times out, causing the test to fail.
Guido van Rossum04110fb2007-08-24 16:32:05 +0000166
167# Test behavior of smtpd.DebuggingServer
Victor Stinner45df8202010-04-28 22:31:17 +0000168@unittest.skipUnless(threading, 'Threading required for this test.')
169class DebuggingServerTests(unittest.TestCase):
Guido van Rossum806c2462007-08-06 23:33:07 +0000170
R. David Murray7dff9e02010-11-08 17:15:13 +0000171 maxDiff = None
172
Guido van Rossum806c2462007-08-06 23:33:07 +0000173 def setUp(self):
Richard Jones64b02de2010-08-03 06:39:33 +0000174 self.real_getfqdn = socket.getfqdn
175 socket.getfqdn = mock_socket.getfqdn
Guido van Rossum806c2462007-08-06 23:33:07 +0000176 # temporarily replace sys.stdout to capture DebuggingServer output
177 self.old_stdout = sys.stdout
178 self.output = io.StringIO()
179 sys.stdout = self.output
180
181 self.serv_evt = threading.Event()
182 self.client_evt = threading.Event()
R. David Murray7dff9e02010-11-08 17:15:13 +0000183 # Capture SMTPChannel debug output
184 self.old_DEBUGSTREAM = smtpd.DEBUGSTREAM
185 smtpd.DEBUGSTREAM = io.StringIO()
Antoine Pitrou043bad02010-04-30 23:20:15 +0000186 # Pick a random unused port by passing 0 for the port number
187 self.serv = smtpd.DebuggingServer((HOST, 0), ('nowhere', -1))
188 # Keep a note of what port was assigned
189 self.port = self.serv.socket.getsockname()[1]
Christian Heimes5e696852008-04-09 08:37:03 +0000190 serv_args = (self.serv, self.serv_evt, self.client_evt)
Antoine Pitrouc3d47722009-10-27 19:49:45 +0000191 self.thread = threading.Thread(target=debugging_server, args=serv_args)
192 self.thread.start()
Guido van Rossum806c2462007-08-06 23:33:07 +0000193
194 # wait until server thread has assigned a port number
Christian Heimes380f7f22008-02-28 11:19:05 +0000195 self.serv_evt.wait()
196 self.serv_evt.clear()
Guido van Rossum806c2462007-08-06 23:33:07 +0000197
198 def tearDown(self):
Richard Jones64b02de2010-08-03 06:39:33 +0000199 socket.getfqdn = self.real_getfqdn
Guido van Rossum806c2462007-08-06 23:33:07 +0000200 # indicate that the client is finished
201 self.client_evt.set()
202 # wait for the server thread to terminate
203 self.serv_evt.wait()
Antoine Pitrouc3d47722009-10-27 19:49:45 +0000204 self.thread.join()
Guido van Rossum806c2462007-08-06 23:33:07 +0000205 # restore sys.stdout
206 sys.stdout = self.old_stdout
R. David Murray7dff9e02010-11-08 17:15:13 +0000207 # restore DEBUGSTREAM
208 smtpd.DEBUGSTREAM.close()
209 smtpd.DEBUGSTREAM = self.old_DEBUGSTREAM
Guido van Rossum806c2462007-08-06 23:33:07 +0000210
211 def testBasic(self):
212 # connect
Christian Heimes5e696852008-04-09 08:37:03 +0000213 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
Guido van Rossum806c2462007-08-06 23:33:07 +0000214 smtp.quit()
215
Senthil Kumaran3d23fd62011-07-30 10:56:50 +0800216 def testSourceAddress(self):
217 # connect
Senthil Kumaranb351a482011-07-31 09:14:17 +0800218 port = support.find_unused_port()
219 try:
220 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost',
221 timeout=3, source_address=('127.0.0.1', port))
222 self.assertEqual(smtp.source_address, ('127.0.0.1', port))
223 self.assertEqual(smtp.local_hostname, 'localhost')
224 smtp.quit()
225 except IOError as e:
226 if e.errno == errno.EADDRINUSE:
227 self.skipTest("couldn't bind to port %d" % port)
228 raise
Senthil Kumaran3d23fd62011-07-30 10:56:50 +0800229
Guido van Rossum04110fb2007-08-24 16:32:05 +0000230 def testNOOP(self):
Christian Heimes5e696852008-04-09 08:37:03 +0000231 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
R David Murrayd1a30c92012-05-26 14:33:59 -0400232 expected = (250, b'OK')
Guido van Rossum04110fb2007-08-24 16:32:05 +0000233 self.assertEqual(smtp.noop(), expected)
234 smtp.quit()
235
236 def testRSET(self):
Christian Heimes5e696852008-04-09 08:37:03 +0000237 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
R David Murrayd1a30c92012-05-26 14:33:59 -0400238 expected = (250, b'OK')
Guido van Rossum04110fb2007-08-24 16:32:05 +0000239 self.assertEqual(smtp.rset(), expected)
240 smtp.quit()
241
Benjamin Peterson1eca0622013-09-29 10:46:31 -0400242 def testELHO(self):
Guido van Rossum04110fb2007-08-24 16:32:05 +0000243 # EHLO isn't implemented in DebuggingServer
Christian Heimes5e696852008-04-09 08:37:03 +0000244 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
Benjamin Peterson1eca0622013-09-29 10:46:31 -0400245 expected = (250, b'\nSIZE 33554432\nHELP')
Guido van Rossum806c2462007-08-06 23:33:07 +0000246 self.assertEqual(smtp.ehlo(), expected)
247 smtp.quit()
248
Benjamin Peterson1eca0622013-09-29 10:46:31 -0400249 def testEXPNNotImplemented(self):
R David Murrayd1a30c92012-05-26 14:33:59 -0400250 # EXPN isn't implemented in DebuggingServer
Christian Heimes5e696852008-04-09 08:37:03 +0000251 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
R David Murrayd1a30c92012-05-26 14:33:59 -0400252 expected = (502, b'EXPN not implemented')
253 smtp.putcmd('EXPN')
254 self.assertEqual(smtp.getreply(), expected)
255 smtp.quit()
256
257 def testVRFY(self):
258 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
259 expected = (252, b'Cannot VRFY user, but will accept message ' + \
260 b'and attempt delivery')
Guido van Rossum04110fb2007-08-24 16:32:05 +0000261 self.assertEqual(smtp.vrfy('nobody@nowhere.com'), expected)
262 self.assertEqual(smtp.verify('nobody@nowhere.com'), expected)
263 smtp.quit()
264
265 def testSecondHELO(self):
266 # check that a second HELO returns a message that it's a duplicate
267 # (this behavior is specific to smtpd.SMTPChannel)
Christian Heimes5e696852008-04-09 08:37:03 +0000268 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000269 smtp.helo()
270 expected = (503, b'Duplicate HELO/EHLO')
271 self.assertEqual(smtp.helo(), expected)
272 smtp.quit()
273
Guido van Rossum806c2462007-08-06 23:33:07 +0000274 def testHELP(self):
Christian Heimes5e696852008-04-09 08:37:03 +0000275 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
R David Murrayd1a30c92012-05-26 14:33:59 -0400276 self.assertEqual(smtp.help(), b'Supported commands: EHLO HELO MAIL ' + \
277 b'RCPT DATA RSET NOOP QUIT VRFY')
Guido van Rossum806c2462007-08-06 23:33:07 +0000278 smtp.quit()
279
280 def testSend(self):
281 # connect and send mail
282 m = 'A test message'
Christian Heimes5e696852008-04-09 08:37:03 +0000283 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
Guido van Rossum806c2462007-08-06 23:33:07 +0000284 smtp.sendmail('John', 'Sally', m)
Neal Norwitz25329672008-08-25 03:55:03 +0000285 # XXX(nnorwitz): this test is flaky and dies with a bad file descriptor
286 # in asyncore. This sleep might help, but should really be fixed
287 # properly by using an Event variable.
288 time.sleep(0.01)
Guido van Rossum806c2462007-08-06 23:33:07 +0000289 smtp.quit()
290
291 self.client_evt.set()
292 self.serv_evt.wait()
293 self.output.flush()
294 mexpect = '%s%s\n%s' % (MSG_BEGIN, m, MSG_END)
295 self.assertEqual(self.output.getvalue(), mexpect)
296
R. David Murray7dff9e02010-11-08 17:15:13 +0000297 def testSendBinary(self):
298 m = b'A test message'
299 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
300 smtp.sendmail('John', 'Sally', m)
301 # XXX (see comment in testSend)
302 time.sleep(0.01)
303 smtp.quit()
304
305 self.client_evt.set()
306 self.serv_evt.wait()
307 self.output.flush()
308 mexpect = '%s%s\n%s' % (MSG_BEGIN, m.decode('ascii'), MSG_END)
309 self.assertEqual(self.output.getvalue(), mexpect)
310
R David Murray0f663d02011-06-09 15:05:57 -0400311 def testSendNeedingDotQuote(self):
312 # Issue 12283
313 m = '.A test\n.mes.sage.'
314 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
315 smtp.sendmail('John', 'Sally', m)
316 # XXX (see comment in testSend)
317 time.sleep(0.01)
318 smtp.quit()
319
320 self.client_evt.set()
321 self.serv_evt.wait()
322 self.output.flush()
323 mexpect = '%s%s\n%s' % (MSG_BEGIN, m, MSG_END)
324 self.assertEqual(self.output.getvalue(), mexpect)
325
R David Murray46346762011-07-18 21:38:54 -0400326 def testSendNullSender(self):
327 m = 'A test message'
328 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
329 smtp.sendmail('<>', 'Sally', m)
330 # XXX (see comment in testSend)
331 time.sleep(0.01)
332 smtp.quit()
333
334 self.client_evt.set()
335 self.serv_evt.wait()
336 self.output.flush()
337 mexpect = '%s%s\n%s' % (MSG_BEGIN, m, MSG_END)
338 self.assertEqual(self.output.getvalue(), mexpect)
339 debugout = smtpd.DEBUGSTREAM.getvalue()
340 sender = re.compile("^sender: <>$", re.MULTILINE)
341 self.assertRegex(debugout, sender)
342
R. David Murray7dff9e02010-11-08 17:15:13 +0000343 def testSendMessage(self):
344 m = email.mime.text.MIMEText('A test message')
345 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
346 smtp.send_message(m, from_addr='John', to_addrs='Sally')
347 # XXX (see comment in testSend)
348 time.sleep(0.01)
349 smtp.quit()
350
351 self.client_evt.set()
352 self.serv_evt.wait()
353 self.output.flush()
354 # Add the X-Peer header that DebuggingServer adds
R David Murrayb912c5a2011-05-02 08:47:24 -0400355 m['X-Peer'] = socket.gethostbyname('localhost')
R. David Murray7dff9e02010-11-08 17:15:13 +0000356 mexpect = '%s%s\n%s' % (MSG_BEGIN, m.as_string(), MSG_END)
357 self.assertEqual(self.output.getvalue(), mexpect)
358
359 def testSendMessageWithAddresses(self):
360 m = email.mime.text.MIMEText('A test message')
361 m['From'] = 'foo@bar.com'
362 m['To'] = 'John'
363 m['CC'] = 'Sally, Fred'
364 m['Bcc'] = 'John Root <root@localhost>, "Dinsdale" <warped@silly.walks.com>'
365 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
366 smtp.send_message(m)
367 # XXX (see comment in testSend)
368 time.sleep(0.01)
369 smtp.quit()
R David Murrayac4e5ab2011-07-02 21:03:19 -0400370 # make sure the Bcc header is still in the message.
371 self.assertEqual(m['Bcc'], 'John Root <root@localhost>, "Dinsdale" '
372 '<warped@silly.walks.com>')
R. David Murray7dff9e02010-11-08 17:15:13 +0000373
374 self.client_evt.set()
375 self.serv_evt.wait()
376 self.output.flush()
377 # Add the X-Peer header that DebuggingServer adds
R David Murrayb912c5a2011-05-02 08:47:24 -0400378 m['X-Peer'] = socket.gethostbyname('localhost')
R David Murrayac4e5ab2011-07-02 21:03:19 -0400379 # The Bcc header should not be transmitted.
R. David Murray7dff9e02010-11-08 17:15:13 +0000380 del m['Bcc']
381 mexpect = '%s%s\n%s' % (MSG_BEGIN, m.as_string(), MSG_END)
382 self.assertEqual(self.output.getvalue(), mexpect)
383 debugout = smtpd.DEBUGSTREAM.getvalue()
384 sender = re.compile("^sender: foo@bar.com$", re.MULTILINE)
Ezio Melottied3a7d22010-12-01 02:32:32 +0000385 self.assertRegex(debugout, sender)
R. David Murray7dff9e02010-11-08 17:15:13 +0000386 for addr in ('John', 'Sally', 'Fred', 'root@localhost',
387 'warped@silly.walks.com'):
388 to_addr = re.compile(r"^recips: .*'{}'.*$".format(addr),
389 re.MULTILINE)
Ezio Melottied3a7d22010-12-01 02:32:32 +0000390 self.assertRegex(debugout, to_addr)
R. David Murray7dff9e02010-11-08 17:15:13 +0000391
392 def testSendMessageWithSomeAddresses(self):
393 # Make sure nothing breaks if not all of the three 'to' headers exist
394 m = email.mime.text.MIMEText('A test message')
395 m['From'] = 'foo@bar.com'
396 m['To'] = 'John, Dinsdale'
397 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
398 smtp.send_message(m)
399 # XXX (see comment in testSend)
400 time.sleep(0.01)
401 smtp.quit()
402
403 self.client_evt.set()
404 self.serv_evt.wait()
405 self.output.flush()
406 # Add the X-Peer header that DebuggingServer adds
R David Murrayb912c5a2011-05-02 08:47:24 -0400407 m['X-Peer'] = socket.gethostbyname('localhost')
R. David Murray7dff9e02010-11-08 17:15:13 +0000408 mexpect = '%s%s\n%s' % (MSG_BEGIN, m.as_string(), MSG_END)
409 self.assertEqual(self.output.getvalue(), mexpect)
410 debugout = smtpd.DEBUGSTREAM.getvalue()
411 sender = re.compile("^sender: foo@bar.com$", re.MULTILINE)
Ezio Melottied3a7d22010-12-01 02:32:32 +0000412 self.assertRegex(debugout, sender)
R. David Murray7dff9e02010-11-08 17:15:13 +0000413 for addr in ('John', 'Dinsdale'):
414 to_addr = re.compile(r"^recips: .*'{}'.*$".format(addr),
415 re.MULTILINE)
Ezio Melottied3a7d22010-12-01 02:32:32 +0000416 self.assertRegex(debugout, to_addr)
R. David Murray7dff9e02010-11-08 17:15:13 +0000417
R David Murrayac4e5ab2011-07-02 21:03:19 -0400418 def testSendMessageWithSpecifiedAddresses(self):
419 # Make sure addresses specified in call override those in message.
420 m = email.mime.text.MIMEText('A test message')
421 m['From'] = 'foo@bar.com'
422 m['To'] = 'John, Dinsdale'
423 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
424 smtp.send_message(m, from_addr='joe@example.com', to_addrs='foo@example.net')
425 # XXX (see comment in testSend)
426 time.sleep(0.01)
427 smtp.quit()
428
429 self.client_evt.set()
430 self.serv_evt.wait()
431 self.output.flush()
432 # Add the X-Peer header that DebuggingServer adds
433 m['X-Peer'] = socket.gethostbyname('localhost')
434 mexpect = '%s%s\n%s' % (MSG_BEGIN, m.as_string(), MSG_END)
435 self.assertEqual(self.output.getvalue(), mexpect)
436 debugout = smtpd.DEBUGSTREAM.getvalue()
437 sender = re.compile("^sender: joe@example.com$", re.MULTILINE)
438 self.assertRegex(debugout, sender)
439 for addr in ('John', 'Dinsdale'):
440 to_addr = re.compile(r"^recips: .*'{}'.*$".format(addr),
441 re.MULTILINE)
442 self.assertNotRegex(debugout, to_addr)
443 recip = re.compile(r"^recips: .*'foo@example.net'.*$", re.MULTILINE)
444 self.assertRegex(debugout, recip)
445
446 def testSendMessageWithMultipleFrom(self):
447 # Sender overrides To
448 m = email.mime.text.MIMEText('A test message')
449 m['From'] = 'Bernard, Bianca'
450 m['Sender'] = 'the_rescuers@Rescue-Aid-Society.com'
451 m['To'] = 'John, Dinsdale'
452 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
453 smtp.send_message(m)
454 # XXX (see comment in testSend)
455 time.sleep(0.01)
456 smtp.quit()
457
458 self.client_evt.set()
459 self.serv_evt.wait()
460 self.output.flush()
461 # Add the X-Peer header that DebuggingServer adds
462 m['X-Peer'] = socket.gethostbyname('localhost')
463 mexpect = '%s%s\n%s' % (MSG_BEGIN, m.as_string(), MSG_END)
464 self.assertEqual(self.output.getvalue(), mexpect)
465 debugout = smtpd.DEBUGSTREAM.getvalue()
466 sender = re.compile("^sender: the_rescuers@Rescue-Aid-Society.com$", re.MULTILINE)
467 self.assertRegex(debugout, sender)
468 for addr in ('John', 'Dinsdale'):
469 to_addr = re.compile(r"^recips: .*'{}'.*$".format(addr),
470 re.MULTILINE)
471 self.assertRegex(debugout, to_addr)
472
473 def testSendMessageResent(self):
474 m = email.mime.text.MIMEText('A test message')
475 m['From'] = 'foo@bar.com'
476 m['To'] = 'John'
477 m['CC'] = 'Sally, Fred'
478 m['Bcc'] = 'John Root <root@localhost>, "Dinsdale" <warped@silly.walks.com>'
479 m['Resent-Date'] = 'Thu, 1 Jan 1970 17:42:00 +0000'
480 m['Resent-From'] = 'holy@grail.net'
481 m['Resent-To'] = 'Martha <my_mom@great.cooker.com>, Jeff'
482 m['Resent-Bcc'] = 'doe@losthope.net'
483 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
484 smtp.send_message(m)
485 # XXX (see comment in testSend)
486 time.sleep(0.01)
487 smtp.quit()
488
489 self.client_evt.set()
490 self.serv_evt.wait()
491 self.output.flush()
492 # The Resent-Bcc headers are deleted before serialization.
493 del m['Bcc']
494 del m['Resent-Bcc']
495 # Add the X-Peer header that DebuggingServer adds
496 m['X-Peer'] = socket.gethostbyname('localhost')
497 mexpect = '%s%s\n%s' % (MSG_BEGIN, m.as_string(), MSG_END)
498 self.assertEqual(self.output.getvalue(), mexpect)
499 debugout = smtpd.DEBUGSTREAM.getvalue()
500 sender = re.compile("^sender: holy@grail.net$", re.MULTILINE)
501 self.assertRegex(debugout, sender)
502 for addr in ('my_mom@great.cooker.com', 'Jeff', 'doe@losthope.net'):
503 to_addr = re.compile(r"^recips: .*'{}'.*$".format(addr),
504 re.MULTILINE)
505 self.assertRegex(debugout, to_addr)
506
507 def testSendMessageMultipleResentRaises(self):
508 m = email.mime.text.MIMEText('A test message')
509 m['From'] = 'foo@bar.com'
510 m['To'] = 'John'
511 m['CC'] = 'Sally, Fred'
512 m['Bcc'] = 'John Root <root@localhost>, "Dinsdale" <warped@silly.walks.com>'
513 m['Resent-Date'] = 'Thu, 1 Jan 1970 17:42:00 +0000'
514 m['Resent-From'] = 'holy@grail.net'
515 m['Resent-To'] = 'Martha <my_mom@great.cooker.com>, Jeff'
516 m['Resent-Bcc'] = 'doe@losthope.net'
517 m['Resent-Date'] = 'Thu, 2 Jan 1970 17:42:00 +0000'
518 m['Resent-To'] = 'holy@grail.net'
519 m['Resent-From'] = 'Martha <my_mom@great.cooker.com>, Jeff'
520 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
521 with self.assertRaises(ValueError):
522 smtp.send_message(m)
523 smtp.close()
Guido van Rossum806c2462007-08-06 23:33:07 +0000524
Victor Stinner45df8202010-04-28 22:31:17 +0000525class NonConnectingTests(unittest.TestCase):
Christian Heimes380f7f22008-02-28 11:19:05 +0000526
Richard Jones64b02de2010-08-03 06:39:33 +0000527 def setUp(self):
528 smtplib.socket = mock_socket
529
530 def tearDown(self):
531 smtplib.socket = socket
532
Christian Heimes380f7f22008-02-28 11:19:05 +0000533 def testNotConnected(self):
534 # Test various operations on an unconnected SMTP object that
535 # should raise exceptions (at present the attempt in SMTP.send
536 # to reference the nonexistent 'sock' attribute of the SMTP object
537 # causes an AttributeError)
538 smtp = smtplib.SMTP()
539 self.assertRaises(smtplib.SMTPServerDisconnected, smtp.ehlo)
540 self.assertRaises(smtplib.SMTPServerDisconnected,
541 smtp.send, 'test msg')
542
543 def testNonnumericPort(self):
544 # check that non-numeric port raises socket.error
Richard Jones64b02de2010-08-03 06:39:33 +0000545 self.assertRaises(mock_socket.error, smtplib.SMTP,
Christian Heimes380f7f22008-02-28 11:19:05 +0000546 "localhost", "bogus")
Richard Jones64b02de2010-08-03 06:39:33 +0000547 self.assertRaises(mock_socket.error, smtplib.SMTP,
Christian Heimes380f7f22008-02-28 11:19:05 +0000548 "localhost:bogus")
549
550
Guido van Rossum04110fb2007-08-24 16:32:05 +0000551# test response of client to a non-successful HELO message
Victor Stinner45df8202010-04-28 22:31:17 +0000552@unittest.skipUnless(threading, 'Threading required for this test.')
553class BadHELOServerTests(unittest.TestCase):
Guido van Rossum806c2462007-08-06 23:33:07 +0000554
555 def setUp(self):
Richard Jones64b02de2010-08-03 06:39:33 +0000556 smtplib.socket = mock_socket
557 mock_socket.reply_with(b"199 no hello for you!")
Guido van Rossum806c2462007-08-06 23:33:07 +0000558 self.old_stdout = sys.stdout
559 self.output = io.StringIO()
560 sys.stdout = self.output
Richard Jones64b02de2010-08-03 06:39:33 +0000561 self.port = 25
Guido van Rossum806c2462007-08-06 23:33:07 +0000562
563 def tearDown(self):
Richard Jones64b02de2010-08-03 06:39:33 +0000564 smtplib.socket = socket
Guido van Rossum806c2462007-08-06 23:33:07 +0000565 sys.stdout = self.old_stdout
566
567 def testFailingHELO(self):
568 self.assertRaises(smtplib.SMTPConnectError, smtplib.SMTP,
Christian Heimes5e696852008-04-09 08:37:03 +0000569 HOST, self.port, 'localhost', 3)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000570
Guido van Rossum04110fb2007-08-24 16:32:05 +0000571
572sim_users = {'Mr.A@somewhere.com':'John A',
R David Murray46346762011-07-18 21:38:54 -0400573 'Ms.B@xn--fo-fka.com':'Sally B',
Guido van Rossum04110fb2007-08-24 16:32:05 +0000574 'Mrs.C@somewhereesle.com':'Ruth C',
575 }
576
R. David Murraycaa27b72009-05-23 18:49:56 +0000577sim_auth = ('Mr.A@somewhere.com', 'somepassword')
R. David Murrayfb123912009-05-28 18:19:00 +0000578sim_cram_md5_challenge = ('PENCeUxFREJoU0NnbmhNWitOMjNGNn'
579 'dAZWx3b29kLmlubm9zb2Z0LmNvbT4=')
580sim_auth_credentials = {
581 'login': 'TXIuQUBzb21ld2hlcmUuY29t',
582 'plain': 'AE1yLkFAc29tZXdoZXJlLmNvbQBzb21lcGFzc3dvcmQ=',
583 'cram-md5': ('TXIUQUBZB21LD2HLCMUUY29TIDG4OWQ0MJ'
584 'KWZGQ4ODNMNDA4NTGXMDRLZWMYZJDMODG1'),
585 }
586sim_auth_login_password = 'C29TZXBHC3N3B3JK'
R. David Murraycaa27b72009-05-23 18:49:56 +0000587
Guido van Rossum04110fb2007-08-24 16:32:05 +0000588sim_lists = {'list-1':['Mr.A@somewhere.com','Mrs.C@somewhereesle.com'],
R David Murray46346762011-07-18 21:38:54 -0400589 'list-2':['Ms.B@xn--fo-fka.com',],
Guido van Rossum04110fb2007-08-24 16:32:05 +0000590 }
591
592# Simulated SMTP channel & server
593class SimSMTPChannel(smtpd.SMTPChannel):
R. David Murrayfb123912009-05-28 18:19:00 +0000594
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400595 quit_response = None
R David Murrayd312c742013-03-20 20:36:14 -0400596 mail_response = None
597 rcpt_response = None
598 data_response = None
599 rcpt_count = 0
600 rset_count = 0
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400601
R. David Murray23ddc0e2009-05-29 18:03:16 +0000602 def __init__(self, extra_features, *args, **kw):
603 self._extrafeatures = ''.join(
604 [ "250-{0}\r\n".format(x) for x in extra_features ])
R. David Murrayfb123912009-05-28 18:19:00 +0000605 super(SimSMTPChannel, self).__init__(*args, **kw)
606
Guido van Rossum04110fb2007-08-24 16:32:05 +0000607 def smtp_EHLO(self, arg):
R. David Murrayfb123912009-05-28 18:19:00 +0000608 resp = ('250-testhost\r\n'
609 '250-EXPN\r\n'
610 '250-SIZE 20000000\r\n'
611 '250-STARTTLS\r\n'
612 '250-DELIVERBY\r\n')
613 resp = resp + self._extrafeatures + '250 HELP'
Guido van Rossum04110fb2007-08-24 16:32:05 +0000614 self.push(resp)
R David Murrayf1a40b42013-03-20 21:12:17 -0400615 self.seen_greeting = arg
616 self.extended_smtp = True
Guido van Rossum04110fb2007-08-24 16:32:05 +0000617
618 def smtp_VRFY(self, arg):
R David Murray46346762011-07-18 21:38:54 -0400619 # For max compatibility smtplib should be sending the raw address.
620 if arg in sim_users:
621 self.push('250 %s %s' % (sim_users[arg], smtplib.quoteaddr(arg)))
Guido van Rossum04110fb2007-08-24 16:32:05 +0000622 else:
623 self.push('550 No such user: %s' % arg)
624
625 def smtp_EXPN(self, arg):
R David Murray46346762011-07-18 21:38:54 -0400626 list_name = arg.lower()
Guido van Rossum04110fb2007-08-24 16:32:05 +0000627 if list_name in sim_lists:
628 user_list = sim_lists[list_name]
629 for n, user_email in enumerate(user_list):
630 quoted_addr = smtplib.quoteaddr(user_email)
631 if n < len(user_list) - 1:
632 self.push('250-%s %s' % (sim_users[user_email], quoted_addr))
633 else:
634 self.push('250 %s %s' % (sim_users[user_email], quoted_addr))
635 else:
636 self.push('550 No access for you!')
637
R. David Murraycaa27b72009-05-23 18:49:56 +0000638 def smtp_AUTH(self, arg):
R. David Murrayfb123912009-05-28 18:19:00 +0000639 if arg.strip().lower()=='cram-md5':
640 self.push('334 {}'.format(sim_cram_md5_challenge))
641 return
R. David Murraycaa27b72009-05-23 18:49:56 +0000642 mech, auth = arg.split()
R. David Murrayfb123912009-05-28 18:19:00 +0000643 mech = mech.lower()
644 if mech not in sim_auth_credentials:
R. David Murraycaa27b72009-05-23 18:49:56 +0000645 self.push('504 auth type unimplemented')
R. David Murrayfb123912009-05-28 18:19:00 +0000646 return
647 if mech == 'plain' and auth==sim_auth_credentials['plain']:
648 self.push('235 plain auth ok')
649 elif mech=='login' and auth==sim_auth_credentials['login']:
650 self.push('334 Password:')
651 else:
652 self.push('550 No access for you!')
R. David Murraycaa27b72009-05-23 18:49:56 +0000653
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400654 def smtp_QUIT(self, arg):
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400655 if self.quit_response is None:
656 super(SimSMTPChannel, self).smtp_QUIT(arg)
657 else:
658 self.push(self.quit_response)
659 self.close_when_done()
660
R David Murrayd312c742013-03-20 20:36:14 -0400661 def smtp_MAIL(self, arg):
662 if self.mail_response is None:
663 super().smtp_MAIL(arg)
664 else:
665 self.push(self.mail_response)
666
667 def smtp_RCPT(self, arg):
668 if self.rcpt_response is None:
669 super().smtp_RCPT(arg)
670 return
R David Murrayd312c742013-03-20 20:36:14 -0400671 self.rcpt_count += 1
R David Murray03b01162013-03-20 22:11:40 -0400672 self.push(self.rcpt_response[self.rcpt_count-1])
R David Murrayd312c742013-03-20 20:36:14 -0400673
674 def smtp_RSET(self, arg):
R David Murrayd312c742013-03-20 20:36:14 -0400675 self.rset_count += 1
R David Murray03b01162013-03-20 22:11:40 -0400676 super().smtp_RSET(arg)
R David Murrayd312c742013-03-20 20:36:14 -0400677
678 def smtp_DATA(self, arg):
679 if self.data_response is None:
680 super().smtp_DATA(arg)
681 else:
682 self.push(self.data_response)
683
Giampaolo Rodolàd930b632010-05-06 20:21:57 +0000684 def handle_error(self):
685 raise
686
Guido van Rossum04110fb2007-08-24 16:32:05 +0000687
688class SimSMTPServer(smtpd.SMTPServer):
R. David Murrayfb123912009-05-28 18:19:00 +0000689
R David Murrayd312c742013-03-20 20:36:14 -0400690 channel_class = SimSMTPChannel
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400691
R. David Murray23ddc0e2009-05-29 18:03:16 +0000692 def __init__(self, *args, **kw):
693 self._extra_features = []
694 smtpd.SMTPServer.__init__(self, *args, **kw)
695
Giampaolo Rodolà977c7072010-10-04 21:08:36 +0000696 def handle_accepted(self, conn, addr):
R David Murrayf1a40b42013-03-20 21:12:17 -0400697 self._SMTPchannel = self.channel_class(
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400698 self._extra_features, self, conn, addr)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000699
700 def process_message(self, peer, mailfrom, rcpttos, data):
701 pass
702
R. David Murrayfb123912009-05-28 18:19:00 +0000703 def add_feature(self, feature):
R. David Murray23ddc0e2009-05-29 18:03:16 +0000704 self._extra_features.append(feature)
R. David Murrayfb123912009-05-28 18:19:00 +0000705
Giampaolo Rodolàd930b632010-05-06 20:21:57 +0000706 def handle_error(self):
707 raise
708
Guido van Rossum04110fb2007-08-24 16:32:05 +0000709
710# Test various SMTP & ESMTP commands/behaviors that require a simulated server
711# (i.e., something with more features than DebuggingServer)
Victor Stinner45df8202010-04-28 22:31:17 +0000712@unittest.skipUnless(threading, 'Threading required for this test.')
713class SMTPSimTests(unittest.TestCase):
Guido van Rossum04110fb2007-08-24 16:32:05 +0000714
715 def setUp(self):
Richard Jones64b02de2010-08-03 06:39:33 +0000716 self.real_getfqdn = socket.getfqdn
717 socket.getfqdn = mock_socket.getfqdn
Guido van Rossum04110fb2007-08-24 16:32:05 +0000718 self.serv_evt = threading.Event()
719 self.client_evt = threading.Event()
Antoine Pitrou043bad02010-04-30 23:20:15 +0000720 # Pick a random unused port by passing 0 for the port number
721 self.serv = SimSMTPServer((HOST, 0), ('nowhere', -1))
722 # Keep a note of what port was assigned
723 self.port = self.serv.socket.getsockname()[1]
Christian Heimes5e696852008-04-09 08:37:03 +0000724 serv_args = (self.serv, self.serv_evt, self.client_evt)
Antoine Pitrouc3d47722009-10-27 19:49:45 +0000725 self.thread = threading.Thread(target=debugging_server, args=serv_args)
726 self.thread.start()
Guido van Rossum04110fb2007-08-24 16:32:05 +0000727
728 # wait until server thread has assigned a port number
Christian Heimes380f7f22008-02-28 11:19:05 +0000729 self.serv_evt.wait()
730 self.serv_evt.clear()
Guido van Rossum04110fb2007-08-24 16:32:05 +0000731
732 def tearDown(self):
Richard Jones64b02de2010-08-03 06:39:33 +0000733 socket.getfqdn = self.real_getfqdn
Guido van Rossum04110fb2007-08-24 16:32:05 +0000734 # indicate that the client is finished
735 self.client_evt.set()
736 # wait for the server thread to terminate
737 self.serv_evt.wait()
Antoine Pitrouc3d47722009-10-27 19:49:45 +0000738 self.thread.join()
Guido van Rossum04110fb2007-08-24 16:32:05 +0000739
740 def testBasic(self):
741 # smoke test
Christian Heimes5e696852008-04-09 08:37:03 +0000742 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000743 smtp.quit()
744
745 def testEHLO(self):
Christian Heimes5e696852008-04-09 08:37:03 +0000746 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000747
748 # no features should be present before the EHLO
749 self.assertEqual(smtp.esmtp_features, {})
750
751 # features expected from the test server
752 expected_features = {'expn':'',
753 'size': '20000000',
754 'starttls': '',
755 'deliverby': '',
756 'help': '',
757 }
758
759 smtp.ehlo()
760 self.assertEqual(smtp.esmtp_features, expected_features)
761 for k in expected_features:
762 self.assertTrue(smtp.has_extn(k))
763 self.assertFalse(smtp.has_extn('unsupported-feature'))
764 smtp.quit()
765
766 def testVRFY(self):
Christian Heimes5e696852008-04-09 08:37:03 +0000767 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000768
769 for email, name in sim_users.items():
770 expected_known = (250, bytes('%s %s' %
Guido van Rossum5a23cc52007-08-30 14:02:43 +0000771 (name, smtplib.quoteaddr(email)),
772 "ascii"))
Guido van Rossum04110fb2007-08-24 16:32:05 +0000773 self.assertEqual(smtp.vrfy(email), expected_known)
774
775 u = 'nobody@nowhere.com'
R David Murray46346762011-07-18 21:38:54 -0400776 expected_unknown = (550, ('No such user: %s' % u).encode('ascii'))
Guido van Rossum04110fb2007-08-24 16:32:05 +0000777 self.assertEqual(smtp.vrfy(u), expected_unknown)
778 smtp.quit()
779
780 def testEXPN(self):
Christian Heimes5e696852008-04-09 08:37:03 +0000781 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000782
783 for listname, members in sim_lists.items():
784 users = []
785 for m in members:
786 users.append('%s %s' % (sim_users[m], smtplib.quoteaddr(m)))
Guido van Rossum5a23cc52007-08-30 14:02:43 +0000787 expected_known = (250, bytes('\n'.join(users), "ascii"))
Guido van Rossum04110fb2007-08-24 16:32:05 +0000788 self.assertEqual(smtp.expn(listname), expected_known)
789
790 u = 'PSU-Members-List'
791 expected_unknown = (550, b'No access for you!')
792 self.assertEqual(smtp.expn(u), expected_unknown)
793 smtp.quit()
794
R. David Murrayfb123912009-05-28 18:19:00 +0000795 def testAUTH_PLAIN(self):
R. David Murrayfb123912009-05-28 18:19:00 +0000796 self.serv.add_feature("AUTH PLAIN")
R. David Murray23ddc0e2009-05-29 18:03:16 +0000797 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R. David Murraycaa27b72009-05-23 18:49:56 +0000798
R. David Murrayfb123912009-05-28 18:19:00 +0000799 expected_auth_ok = (235, b'plain auth ok')
R. David Murraycaa27b72009-05-23 18:49:56 +0000800 self.assertEqual(smtp.login(sim_auth[0], sim_auth[1]), expected_auth_ok)
Benjamin Petersond094efd2010-10-31 17:15:42 +0000801 smtp.close()
Guido van Rossum04110fb2007-08-24 16:32:05 +0000802
R. David Murrayfb123912009-05-28 18:19:00 +0000803 # SimSMTPChannel doesn't fully support LOGIN or CRAM-MD5 auth because they
804 # require a synchronous read to obtain the credentials...so instead smtpd
805 # sees the credential sent by smtplib's login method as an unknown command,
806 # which results in smtplib raising an auth error. Fortunately the error
807 # message contains the encoded credential, so we can partially check that it
808 # was generated correctly (partially, because the 'word' is uppercased in
809 # the error message).
810
811 def testAUTH_LOGIN(self):
R. David Murrayfb123912009-05-28 18:19:00 +0000812 self.serv.add_feature("AUTH LOGIN")
R. David Murray23ddc0e2009-05-29 18:03:16 +0000813 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R. David Murrayfb123912009-05-28 18:19:00 +0000814 try: smtp.login(sim_auth[0], sim_auth[1])
815 except smtplib.SMTPAuthenticationError as err:
Benjamin Peterson95951662010-10-31 17:59:20 +0000816 self.assertIn(sim_auth_login_password, str(err))
Benjamin Petersond094efd2010-10-31 17:15:42 +0000817 smtp.close()
R. David Murrayfb123912009-05-28 18:19:00 +0000818
819 def testAUTH_CRAM_MD5(self):
R. David Murrayfb123912009-05-28 18:19:00 +0000820 self.serv.add_feature("AUTH CRAM-MD5")
R. David Murray23ddc0e2009-05-29 18:03:16 +0000821 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R. David Murrayfb123912009-05-28 18:19:00 +0000822
823 try: smtp.login(sim_auth[0], sim_auth[1])
824 except smtplib.SMTPAuthenticationError as err:
Benjamin Peterson95951662010-10-31 17:59:20 +0000825 self.assertIn(sim_auth_credentials['cram-md5'], str(err))
Benjamin Petersond094efd2010-10-31 17:15:42 +0000826 smtp.close()
R. David Murrayfb123912009-05-28 18:19:00 +0000827
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400828 def test_with_statement(self):
829 with smtplib.SMTP(HOST, self.port) as smtp:
830 code, message = smtp.noop()
831 self.assertEqual(code, 250)
832 self.assertRaises(smtplib.SMTPServerDisconnected, smtp.send, b'foo')
833 with smtplib.SMTP(HOST, self.port) as smtp:
834 smtp.close()
835 self.assertRaises(smtplib.SMTPServerDisconnected, smtp.send, b'foo')
836
837 def test_with_statement_QUIT_failure(self):
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400838 with self.assertRaises(smtplib.SMTPResponseException) as error:
839 with smtplib.SMTP(HOST, self.port) as smtp:
840 smtp.noop()
R David Murray6bd52022013-03-21 00:32:31 -0400841 self.serv._SMTPchannel.quit_response = '421 QUIT FAILED'
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400842 self.assertEqual(error.exception.smtp_code, 421)
843 self.assertEqual(error.exception.smtp_error, b'QUIT FAILED')
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400844
R. David Murrayfb123912009-05-28 18:19:00 +0000845 #TODO: add tests for correct AUTH method fallback now that the
846 #test infrastructure can support it.
847
R David Murrayd312c742013-03-20 20:36:14 -0400848 # Issue 5713: make sure close, not rset, is called if we get a 421 error
849 def test_421_from_mail_cmd(self):
850 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R David Murray853c0f92013-03-20 21:54:05 -0400851 smtp.noop()
R David Murrayd312c742013-03-20 20:36:14 -0400852 self.serv._SMTPchannel.mail_response = '421 closing connection'
853 with self.assertRaises(smtplib.SMTPSenderRefused):
854 smtp.sendmail('John', 'Sally', 'test message')
855 self.assertIsNone(smtp.sock)
R David Murray03b01162013-03-20 22:11:40 -0400856 self.assertEqual(self.serv._SMTPchannel.rset_count, 0)
R David Murrayd312c742013-03-20 20:36:14 -0400857
858 def test_421_from_rcpt_cmd(self):
859 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R David Murray853c0f92013-03-20 21:54:05 -0400860 smtp.noop()
R David Murrayd312c742013-03-20 20:36:14 -0400861 self.serv._SMTPchannel.rcpt_response = ['250 accepted', '421 closing']
862 with self.assertRaises(smtplib.SMTPRecipientsRefused) as r:
863 smtp.sendmail('John', ['Sally', 'Frank', 'George'], 'test message')
864 self.assertIsNone(smtp.sock)
865 self.assertEqual(self.serv._SMTPchannel.rset_count, 0)
866 self.assertDictEqual(r.exception.args[0], {'Frank': (421, b'closing')})
867
868 def test_421_from_data_cmd(self):
869 class MySimSMTPChannel(SimSMTPChannel):
870 def found_terminator(self):
871 if self.smtp_state == self.DATA:
872 self.push('421 closing')
873 else:
874 super().found_terminator()
875 self.serv.channel_class = MySimSMTPChannel
876 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R David Murray853c0f92013-03-20 21:54:05 -0400877 smtp.noop()
R David Murrayd312c742013-03-20 20:36:14 -0400878 with self.assertRaises(smtplib.SMTPDataError):
879 smtp.sendmail('John@foo.org', ['Sally@foo.org'], 'test message')
880 self.assertIsNone(smtp.sock)
881 self.assertEqual(self.serv._SMTPchannel.rcpt_count, 0)
882
Guido van Rossum04110fb2007-08-24 16:32:05 +0000883
Antoine Pitroud54fa552011-08-28 01:23:52 +0200884@support.reap_threads
Guido van Rossumd8faa362007-04-27 19:54:29 +0000885def test_main(verbose=None):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000886 support.run_unittest(GeneralTests, DebuggingServerTests,
Christian Heimes380f7f22008-02-28 11:19:05 +0000887 NonConnectingTests,
Guido van Rossum04110fb2007-08-24 16:32:05 +0000888 BadHELOServerTests, SMTPSimTests)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000889
890if __name__ == '__main__':
891 test_main()