blob: 5bff25bafd5be7de90f7bf7e610b46d3f7d767be [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")
Serhiy Storchaka578c6772014-02-08 15:06:08 +020099 self.assertIsNone(mock_socket.getdefaulttimeout())
Richard Jones64b02de2010-08-03 06:39:33 +0000100 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")
Serhiy Storchaka578c6772014-02-08 15:06:08 +0200111 self.assertIsNone(socket.getdefaulttimeout())
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)
Serhiy Storchaka578c6772014-02-08 15:06:08 +0200117 self.assertIsNone(smtp.sock.gettimeout())
Georg Brandlf78e02b2008-06-10 17:40:04 +0000118 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
R David Murray1144da52014-06-11 12:27:40 -0400187 self.serv = smtpd.DebuggingServer((HOST, 0), ('nowhere', -1),
188 decode_data=True)
Antoine Pitrou043bad02010-04-30 23:20:15 +0000189 # Keep a note of what port was assigned
190 self.port = self.serv.socket.getsockname()[1]
Christian Heimes5e696852008-04-09 08:37:03 +0000191 serv_args = (self.serv, self.serv_evt, self.client_evt)
Antoine Pitrouc3d47722009-10-27 19:49:45 +0000192 self.thread = threading.Thread(target=debugging_server, args=serv_args)
193 self.thread.start()
Guido van Rossum806c2462007-08-06 23:33:07 +0000194
195 # wait until server thread has assigned a port number
Christian Heimes380f7f22008-02-28 11:19:05 +0000196 self.serv_evt.wait()
197 self.serv_evt.clear()
Guido van Rossum806c2462007-08-06 23:33:07 +0000198
199 def tearDown(self):
Richard Jones64b02de2010-08-03 06:39:33 +0000200 socket.getfqdn = self.real_getfqdn
Guido van Rossum806c2462007-08-06 23:33:07 +0000201 # indicate that the client is finished
202 self.client_evt.set()
203 # wait for the server thread to terminate
204 self.serv_evt.wait()
Antoine Pitrouc3d47722009-10-27 19:49:45 +0000205 self.thread.join()
Guido van Rossum806c2462007-08-06 23:33:07 +0000206 # restore sys.stdout
207 sys.stdout = self.old_stdout
R. David Murray7dff9e02010-11-08 17:15:13 +0000208 # restore DEBUGSTREAM
209 smtpd.DEBUGSTREAM.close()
210 smtpd.DEBUGSTREAM = self.old_DEBUGSTREAM
Guido van Rossum806c2462007-08-06 23:33:07 +0000211
212 def testBasic(self):
213 # connect
Christian Heimes5e696852008-04-09 08:37:03 +0000214 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
Guido van Rossum806c2462007-08-06 23:33:07 +0000215 smtp.quit()
216
Senthil Kumaran3d23fd62011-07-30 10:56:50 +0800217 def testSourceAddress(self):
218 # connect
Senthil Kumaranb351a482011-07-31 09:14:17 +0800219 port = support.find_unused_port()
220 try:
221 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost',
222 timeout=3, source_address=('127.0.0.1', port))
223 self.assertEqual(smtp.source_address, ('127.0.0.1', port))
224 self.assertEqual(smtp.local_hostname, 'localhost')
225 smtp.quit()
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200226 except OSError as e:
Senthil Kumaranb351a482011-07-31 09:14:17 +0800227 if e.errno == errno.EADDRINUSE:
228 self.skipTest("couldn't bind to port %d" % port)
229 raise
Senthil Kumaran3d23fd62011-07-30 10:56:50 +0800230
Guido van Rossum04110fb2007-08-24 16:32:05 +0000231 def testNOOP(self):
Christian Heimes5e696852008-04-09 08:37:03 +0000232 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
R David Murrayd1a30c92012-05-26 14:33:59 -0400233 expected = (250, b'OK')
Guido van Rossum04110fb2007-08-24 16:32:05 +0000234 self.assertEqual(smtp.noop(), expected)
235 smtp.quit()
236
237 def testRSET(self):
Christian Heimes5e696852008-04-09 08:37:03 +0000238 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
R David Murrayd1a30c92012-05-26 14:33:59 -0400239 expected = (250, b'OK')
Guido van Rossum04110fb2007-08-24 16:32:05 +0000240 self.assertEqual(smtp.rset(), expected)
241 smtp.quit()
242
Benjamin Peterson1eca0622013-09-29 10:46:31 -0400243 def testELHO(self):
Guido van Rossum04110fb2007-08-24 16:32:05 +0000244 # EHLO isn't implemented in DebuggingServer
Christian Heimes5e696852008-04-09 08:37:03 +0000245 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
Benjamin Peterson1eca0622013-09-29 10:46:31 -0400246 expected = (250, b'\nSIZE 33554432\nHELP')
Guido van Rossum806c2462007-08-06 23:33:07 +0000247 self.assertEqual(smtp.ehlo(), expected)
248 smtp.quit()
249
Benjamin Peterson1eca0622013-09-29 10:46:31 -0400250 def testEXPNNotImplemented(self):
R David Murrayd1a30c92012-05-26 14:33:59 -0400251 # EXPN isn't implemented in DebuggingServer
Christian Heimes5e696852008-04-09 08:37:03 +0000252 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
R David Murrayd1a30c92012-05-26 14:33:59 -0400253 expected = (502, b'EXPN not implemented')
254 smtp.putcmd('EXPN')
255 self.assertEqual(smtp.getreply(), expected)
256 smtp.quit()
257
258 def testVRFY(self):
259 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
260 expected = (252, b'Cannot VRFY user, but will accept message ' + \
261 b'and attempt delivery')
Guido van Rossum04110fb2007-08-24 16:32:05 +0000262 self.assertEqual(smtp.vrfy('nobody@nowhere.com'), expected)
263 self.assertEqual(smtp.verify('nobody@nowhere.com'), expected)
264 smtp.quit()
265
266 def testSecondHELO(self):
267 # check that a second HELO returns a message that it's a duplicate
268 # (this behavior is specific to smtpd.SMTPChannel)
Christian Heimes5e696852008-04-09 08:37:03 +0000269 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000270 smtp.helo()
271 expected = (503, b'Duplicate HELO/EHLO')
272 self.assertEqual(smtp.helo(), expected)
273 smtp.quit()
274
Guido van Rossum806c2462007-08-06 23:33:07 +0000275 def testHELP(self):
Christian Heimes5e696852008-04-09 08:37:03 +0000276 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
R David Murrayd1a30c92012-05-26 14:33:59 -0400277 self.assertEqual(smtp.help(), b'Supported commands: EHLO HELO MAIL ' + \
278 b'RCPT DATA RSET NOOP QUIT VRFY')
Guido van Rossum806c2462007-08-06 23:33:07 +0000279 smtp.quit()
280
281 def testSend(self):
282 # connect and send mail
283 m = 'A test message'
Christian Heimes5e696852008-04-09 08:37:03 +0000284 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
Guido van Rossum806c2462007-08-06 23:33:07 +0000285 smtp.sendmail('John', 'Sally', m)
Neal Norwitz25329672008-08-25 03:55:03 +0000286 # XXX(nnorwitz): this test is flaky and dies with a bad file descriptor
287 # in asyncore. This sleep might help, but should really be fixed
288 # properly by using an Event variable.
289 time.sleep(0.01)
Guido van Rossum806c2462007-08-06 23:33:07 +0000290 smtp.quit()
291
292 self.client_evt.set()
293 self.serv_evt.wait()
294 self.output.flush()
295 mexpect = '%s%s\n%s' % (MSG_BEGIN, m, MSG_END)
296 self.assertEqual(self.output.getvalue(), mexpect)
297
R. David Murray7dff9e02010-11-08 17:15:13 +0000298 def testSendBinary(self):
299 m = b'A test message'
300 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
301 smtp.sendmail('John', 'Sally', m)
302 # XXX (see comment in testSend)
303 time.sleep(0.01)
304 smtp.quit()
305
306 self.client_evt.set()
307 self.serv_evt.wait()
308 self.output.flush()
309 mexpect = '%s%s\n%s' % (MSG_BEGIN, m.decode('ascii'), MSG_END)
310 self.assertEqual(self.output.getvalue(), mexpect)
311
R David Murray0f663d02011-06-09 15:05:57 -0400312 def testSendNeedingDotQuote(self):
313 # Issue 12283
314 m = '.A test\n.mes.sage.'
315 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
316 smtp.sendmail('John', 'Sally', m)
317 # XXX (see comment in testSend)
318 time.sleep(0.01)
319 smtp.quit()
320
321 self.client_evt.set()
322 self.serv_evt.wait()
323 self.output.flush()
324 mexpect = '%s%s\n%s' % (MSG_BEGIN, m, MSG_END)
325 self.assertEqual(self.output.getvalue(), mexpect)
326
R David Murray46346762011-07-18 21:38:54 -0400327 def testSendNullSender(self):
328 m = 'A test message'
329 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
330 smtp.sendmail('<>', 'Sally', m)
331 # XXX (see comment in testSend)
332 time.sleep(0.01)
333 smtp.quit()
334
335 self.client_evt.set()
336 self.serv_evt.wait()
337 self.output.flush()
338 mexpect = '%s%s\n%s' % (MSG_BEGIN, m, MSG_END)
339 self.assertEqual(self.output.getvalue(), mexpect)
340 debugout = smtpd.DEBUGSTREAM.getvalue()
341 sender = re.compile("^sender: <>$", re.MULTILINE)
342 self.assertRegex(debugout, sender)
343
R. David Murray7dff9e02010-11-08 17:15:13 +0000344 def testSendMessage(self):
345 m = email.mime.text.MIMEText('A test message')
346 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
347 smtp.send_message(m, from_addr='John', to_addrs='Sally')
348 # XXX (see comment in testSend)
349 time.sleep(0.01)
350 smtp.quit()
351
352 self.client_evt.set()
353 self.serv_evt.wait()
354 self.output.flush()
355 # Add the X-Peer header that DebuggingServer adds
R David Murrayb912c5a2011-05-02 08:47:24 -0400356 m['X-Peer'] = socket.gethostbyname('localhost')
R. David Murray7dff9e02010-11-08 17:15:13 +0000357 mexpect = '%s%s\n%s' % (MSG_BEGIN, m.as_string(), MSG_END)
358 self.assertEqual(self.output.getvalue(), mexpect)
359
360 def testSendMessageWithAddresses(self):
361 m = email.mime.text.MIMEText('A test message')
362 m['From'] = 'foo@bar.com'
363 m['To'] = 'John'
364 m['CC'] = 'Sally, Fred'
365 m['Bcc'] = 'John Root <root@localhost>, "Dinsdale" <warped@silly.walks.com>'
366 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
367 smtp.send_message(m)
368 # XXX (see comment in testSend)
369 time.sleep(0.01)
370 smtp.quit()
R David Murrayac4e5ab2011-07-02 21:03:19 -0400371 # make sure the Bcc header is still in the message.
372 self.assertEqual(m['Bcc'], 'John Root <root@localhost>, "Dinsdale" '
373 '<warped@silly.walks.com>')
R. David Murray7dff9e02010-11-08 17:15:13 +0000374
375 self.client_evt.set()
376 self.serv_evt.wait()
377 self.output.flush()
378 # Add the X-Peer header that DebuggingServer adds
R David Murrayb912c5a2011-05-02 08:47:24 -0400379 m['X-Peer'] = socket.gethostbyname('localhost')
R David Murrayac4e5ab2011-07-02 21:03:19 -0400380 # The Bcc header should not be transmitted.
R. David Murray7dff9e02010-11-08 17:15:13 +0000381 del m['Bcc']
382 mexpect = '%s%s\n%s' % (MSG_BEGIN, m.as_string(), MSG_END)
383 self.assertEqual(self.output.getvalue(), mexpect)
384 debugout = smtpd.DEBUGSTREAM.getvalue()
385 sender = re.compile("^sender: foo@bar.com$", re.MULTILINE)
Ezio Melottied3a7d22010-12-01 02:32:32 +0000386 self.assertRegex(debugout, sender)
R. David Murray7dff9e02010-11-08 17:15:13 +0000387 for addr in ('John', 'Sally', 'Fred', 'root@localhost',
388 'warped@silly.walks.com'):
389 to_addr = re.compile(r"^recips: .*'{}'.*$".format(addr),
390 re.MULTILINE)
Ezio Melottied3a7d22010-12-01 02:32:32 +0000391 self.assertRegex(debugout, to_addr)
R. David Murray7dff9e02010-11-08 17:15:13 +0000392
393 def testSendMessageWithSomeAddresses(self):
394 # Make sure nothing breaks if not all of the three 'to' headers exist
395 m = email.mime.text.MIMEText('A test message')
396 m['From'] = 'foo@bar.com'
397 m['To'] = 'John, Dinsdale'
398 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
399 smtp.send_message(m)
400 # XXX (see comment in testSend)
401 time.sleep(0.01)
402 smtp.quit()
403
404 self.client_evt.set()
405 self.serv_evt.wait()
406 self.output.flush()
407 # Add the X-Peer header that DebuggingServer adds
R David Murrayb912c5a2011-05-02 08:47:24 -0400408 m['X-Peer'] = socket.gethostbyname('localhost')
R. David Murray7dff9e02010-11-08 17:15:13 +0000409 mexpect = '%s%s\n%s' % (MSG_BEGIN, m.as_string(), MSG_END)
410 self.assertEqual(self.output.getvalue(), mexpect)
411 debugout = smtpd.DEBUGSTREAM.getvalue()
412 sender = re.compile("^sender: foo@bar.com$", re.MULTILINE)
Ezio Melottied3a7d22010-12-01 02:32:32 +0000413 self.assertRegex(debugout, sender)
R. David Murray7dff9e02010-11-08 17:15:13 +0000414 for addr in ('John', 'Dinsdale'):
415 to_addr = re.compile(r"^recips: .*'{}'.*$".format(addr),
416 re.MULTILINE)
Ezio Melottied3a7d22010-12-01 02:32:32 +0000417 self.assertRegex(debugout, to_addr)
R. David Murray7dff9e02010-11-08 17:15:13 +0000418
R David Murrayac4e5ab2011-07-02 21:03:19 -0400419 def testSendMessageWithSpecifiedAddresses(self):
420 # Make sure addresses specified in call override those in message.
421 m = email.mime.text.MIMEText('A test message')
422 m['From'] = 'foo@bar.com'
423 m['To'] = 'John, Dinsdale'
424 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
425 smtp.send_message(m, from_addr='joe@example.com', to_addrs='foo@example.net')
426 # XXX (see comment in testSend)
427 time.sleep(0.01)
428 smtp.quit()
429
430 self.client_evt.set()
431 self.serv_evt.wait()
432 self.output.flush()
433 # Add the X-Peer header that DebuggingServer adds
434 m['X-Peer'] = socket.gethostbyname('localhost')
435 mexpect = '%s%s\n%s' % (MSG_BEGIN, m.as_string(), MSG_END)
436 self.assertEqual(self.output.getvalue(), mexpect)
437 debugout = smtpd.DEBUGSTREAM.getvalue()
438 sender = re.compile("^sender: joe@example.com$", re.MULTILINE)
439 self.assertRegex(debugout, sender)
440 for addr in ('John', 'Dinsdale'):
441 to_addr = re.compile(r"^recips: .*'{}'.*$".format(addr),
442 re.MULTILINE)
443 self.assertNotRegex(debugout, to_addr)
444 recip = re.compile(r"^recips: .*'foo@example.net'.*$", re.MULTILINE)
445 self.assertRegex(debugout, recip)
446
447 def testSendMessageWithMultipleFrom(self):
448 # Sender overrides To
449 m = email.mime.text.MIMEText('A test message')
450 m['From'] = 'Bernard, Bianca'
451 m['Sender'] = 'the_rescuers@Rescue-Aid-Society.com'
452 m['To'] = 'John, Dinsdale'
453 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
454 smtp.send_message(m)
455 # XXX (see comment in testSend)
456 time.sleep(0.01)
457 smtp.quit()
458
459 self.client_evt.set()
460 self.serv_evt.wait()
461 self.output.flush()
462 # Add the X-Peer header that DebuggingServer adds
463 m['X-Peer'] = socket.gethostbyname('localhost')
464 mexpect = '%s%s\n%s' % (MSG_BEGIN, m.as_string(), MSG_END)
465 self.assertEqual(self.output.getvalue(), mexpect)
466 debugout = smtpd.DEBUGSTREAM.getvalue()
467 sender = re.compile("^sender: the_rescuers@Rescue-Aid-Society.com$", re.MULTILINE)
468 self.assertRegex(debugout, sender)
469 for addr in ('John', 'Dinsdale'):
470 to_addr = re.compile(r"^recips: .*'{}'.*$".format(addr),
471 re.MULTILINE)
472 self.assertRegex(debugout, to_addr)
473
474 def testSendMessageResent(self):
475 m = email.mime.text.MIMEText('A test message')
476 m['From'] = 'foo@bar.com'
477 m['To'] = 'John'
478 m['CC'] = 'Sally, Fred'
479 m['Bcc'] = 'John Root <root@localhost>, "Dinsdale" <warped@silly.walks.com>'
480 m['Resent-Date'] = 'Thu, 1 Jan 1970 17:42:00 +0000'
481 m['Resent-From'] = 'holy@grail.net'
482 m['Resent-To'] = 'Martha <my_mom@great.cooker.com>, Jeff'
483 m['Resent-Bcc'] = 'doe@losthope.net'
484 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
485 smtp.send_message(m)
486 # XXX (see comment in testSend)
487 time.sleep(0.01)
488 smtp.quit()
489
490 self.client_evt.set()
491 self.serv_evt.wait()
492 self.output.flush()
493 # The Resent-Bcc headers are deleted before serialization.
494 del m['Bcc']
495 del m['Resent-Bcc']
496 # Add the X-Peer header that DebuggingServer adds
497 m['X-Peer'] = socket.gethostbyname('localhost')
498 mexpect = '%s%s\n%s' % (MSG_BEGIN, m.as_string(), MSG_END)
499 self.assertEqual(self.output.getvalue(), mexpect)
500 debugout = smtpd.DEBUGSTREAM.getvalue()
501 sender = re.compile("^sender: holy@grail.net$", re.MULTILINE)
502 self.assertRegex(debugout, sender)
503 for addr in ('my_mom@great.cooker.com', 'Jeff', 'doe@losthope.net'):
504 to_addr = re.compile(r"^recips: .*'{}'.*$".format(addr),
505 re.MULTILINE)
506 self.assertRegex(debugout, to_addr)
507
508 def testSendMessageMultipleResentRaises(self):
509 m = email.mime.text.MIMEText('A test message')
510 m['From'] = 'foo@bar.com'
511 m['To'] = 'John'
512 m['CC'] = 'Sally, Fred'
513 m['Bcc'] = 'John Root <root@localhost>, "Dinsdale" <warped@silly.walks.com>'
514 m['Resent-Date'] = 'Thu, 1 Jan 1970 17:42:00 +0000'
515 m['Resent-From'] = 'holy@grail.net'
516 m['Resent-To'] = 'Martha <my_mom@great.cooker.com>, Jeff'
517 m['Resent-Bcc'] = 'doe@losthope.net'
518 m['Resent-Date'] = 'Thu, 2 Jan 1970 17:42:00 +0000'
519 m['Resent-To'] = 'holy@grail.net'
520 m['Resent-From'] = 'Martha <my_mom@great.cooker.com>, Jeff'
521 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
522 with self.assertRaises(ValueError):
523 smtp.send_message(m)
524 smtp.close()
Guido van Rossum806c2462007-08-06 23:33:07 +0000525
Victor Stinner45df8202010-04-28 22:31:17 +0000526class NonConnectingTests(unittest.TestCase):
Christian Heimes380f7f22008-02-28 11:19:05 +0000527
528 def testNotConnected(self):
529 # Test various operations on an unconnected SMTP object that
530 # should raise exceptions (at present the attempt in SMTP.send
531 # to reference the nonexistent 'sock' attribute of the SMTP object
532 # causes an AttributeError)
533 smtp = smtplib.SMTP()
534 self.assertRaises(smtplib.SMTPServerDisconnected, smtp.ehlo)
535 self.assertRaises(smtplib.SMTPServerDisconnected,
536 smtp.send, 'test msg')
537
538 def testNonnumericPort(self):
Andrew Svetlov0832af62012-12-18 23:10:48 +0200539 # check that non-numeric port raises OSError
Andrew Svetlov2ade6f22012-12-17 18:57:16 +0200540 self.assertRaises(OSError, smtplib.SMTP,
Christian Heimes380f7f22008-02-28 11:19:05 +0000541 "localhost", "bogus")
Andrew Svetlov2ade6f22012-12-17 18:57:16 +0200542 self.assertRaises(OSError, smtplib.SMTP,
Christian Heimes380f7f22008-02-28 11:19:05 +0000543 "localhost:bogus")
544
545
Guido van Rossum04110fb2007-08-24 16:32:05 +0000546# test response of client to a non-successful HELO message
Victor Stinner45df8202010-04-28 22:31:17 +0000547@unittest.skipUnless(threading, 'Threading required for this test.')
548class BadHELOServerTests(unittest.TestCase):
Guido van Rossum806c2462007-08-06 23:33:07 +0000549
550 def setUp(self):
Richard Jones64b02de2010-08-03 06:39:33 +0000551 smtplib.socket = mock_socket
552 mock_socket.reply_with(b"199 no hello for you!")
Guido van Rossum806c2462007-08-06 23:33:07 +0000553 self.old_stdout = sys.stdout
554 self.output = io.StringIO()
555 sys.stdout = self.output
Richard Jones64b02de2010-08-03 06:39:33 +0000556 self.port = 25
Guido van Rossum806c2462007-08-06 23:33:07 +0000557
558 def tearDown(self):
Richard Jones64b02de2010-08-03 06:39:33 +0000559 smtplib.socket = socket
Guido van Rossum806c2462007-08-06 23:33:07 +0000560 sys.stdout = self.old_stdout
561
562 def testFailingHELO(self):
563 self.assertRaises(smtplib.SMTPConnectError, smtplib.SMTP,
Christian Heimes5e696852008-04-09 08:37:03 +0000564 HOST, self.port, 'localhost', 3)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000565
Guido van Rossum04110fb2007-08-24 16:32:05 +0000566
Georg Brandlb38b5c42014-02-10 22:11:21 +0100567@unittest.skipUnless(threading, 'Threading required for this test.')
568class TooLongLineTests(unittest.TestCase):
569 respdata = b'250 OK' + (b'.' * smtplib._MAXLINE * 2) + b'\n'
570
571 def setUp(self):
572 self.old_stdout = sys.stdout
573 self.output = io.StringIO()
574 sys.stdout = self.output
575
576 self.evt = threading.Event()
577 self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
578 self.sock.settimeout(15)
579 self.port = support.bind_port(self.sock)
580 servargs = (self.evt, self.respdata, self.sock)
581 threading.Thread(target=server, args=servargs).start()
582 self.evt.wait()
583 self.evt.clear()
584
585 def tearDown(self):
586 self.evt.wait()
587 sys.stdout = self.old_stdout
588
589 def testLineTooLong(self):
590 self.assertRaises(smtplib.SMTPResponseException, smtplib.SMTP,
591 HOST, self.port, 'localhost', 3)
592
593
Guido van Rossum04110fb2007-08-24 16:32:05 +0000594sim_users = {'Mr.A@somewhere.com':'John A',
R David Murray46346762011-07-18 21:38:54 -0400595 'Ms.B@xn--fo-fka.com':'Sally B',
Guido van Rossum04110fb2007-08-24 16:32:05 +0000596 'Mrs.C@somewhereesle.com':'Ruth C',
597 }
598
R. David Murraycaa27b72009-05-23 18:49:56 +0000599sim_auth = ('Mr.A@somewhere.com', 'somepassword')
R. David Murrayfb123912009-05-28 18:19:00 +0000600sim_cram_md5_challenge = ('PENCeUxFREJoU0NnbmhNWitOMjNGNn'
601 'dAZWx3b29kLmlubm9zb2Z0LmNvbT4=')
602sim_auth_credentials = {
603 'login': 'TXIuQUBzb21ld2hlcmUuY29t',
604 'plain': 'AE1yLkFAc29tZXdoZXJlLmNvbQBzb21lcGFzc3dvcmQ=',
605 'cram-md5': ('TXIUQUBZB21LD2HLCMUUY29TIDG4OWQ0MJ'
606 'KWZGQ4ODNMNDA4NTGXMDRLZWMYZJDMODG1'),
607 }
608sim_auth_login_password = 'C29TZXBHC3N3B3JK'
R. David Murraycaa27b72009-05-23 18:49:56 +0000609
Guido van Rossum04110fb2007-08-24 16:32:05 +0000610sim_lists = {'list-1':['Mr.A@somewhere.com','Mrs.C@somewhereesle.com'],
R David Murray46346762011-07-18 21:38:54 -0400611 'list-2':['Ms.B@xn--fo-fka.com',],
Guido van Rossum04110fb2007-08-24 16:32:05 +0000612 }
613
614# Simulated SMTP channel & server
615class SimSMTPChannel(smtpd.SMTPChannel):
R. David Murrayfb123912009-05-28 18:19:00 +0000616
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400617 quit_response = None
R David Murrayd312c742013-03-20 20:36:14 -0400618 mail_response = None
619 rcpt_response = None
620 data_response = None
621 rcpt_count = 0
622 rset_count = 0
R David Murrayafb151a2014-04-14 18:21:38 -0400623 disconnect = 0
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400624
R. David Murray23ddc0e2009-05-29 18:03:16 +0000625 def __init__(self, extra_features, *args, **kw):
626 self._extrafeatures = ''.join(
627 [ "250-{0}\r\n".format(x) for x in extra_features ])
R. David Murrayfb123912009-05-28 18:19:00 +0000628 super(SimSMTPChannel, self).__init__(*args, **kw)
629
Guido van Rossum04110fb2007-08-24 16:32:05 +0000630 def smtp_EHLO(self, arg):
R. David Murrayfb123912009-05-28 18:19:00 +0000631 resp = ('250-testhost\r\n'
632 '250-EXPN\r\n'
633 '250-SIZE 20000000\r\n'
634 '250-STARTTLS\r\n'
635 '250-DELIVERBY\r\n')
636 resp = resp + self._extrafeatures + '250 HELP'
Guido van Rossum04110fb2007-08-24 16:32:05 +0000637 self.push(resp)
R David Murrayf1a40b42013-03-20 21:12:17 -0400638 self.seen_greeting = arg
639 self.extended_smtp = True
Guido van Rossum04110fb2007-08-24 16:32:05 +0000640
641 def smtp_VRFY(self, arg):
R David Murray46346762011-07-18 21:38:54 -0400642 # For max compatibility smtplib should be sending the raw address.
643 if arg in sim_users:
644 self.push('250 %s %s' % (sim_users[arg], smtplib.quoteaddr(arg)))
Guido van Rossum04110fb2007-08-24 16:32:05 +0000645 else:
646 self.push('550 No such user: %s' % arg)
647
648 def smtp_EXPN(self, arg):
R David Murray46346762011-07-18 21:38:54 -0400649 list_name = arg.lower()
Guido van Rossum04110fb2007-08-24 16:32:05 +0000650 if list_name in sim_lists:
651 user_list = sim_lists[list_name]
652 for n, user_email in enumerate(user_list):
653 quoted_addr = smtplib.quoteaddr(user_email)
654 if n < len(user_list) - 1:
655 self.push('250-%s %s' % (sim_users[user_email], quoted_addr))
656 else:
657 self.push('250 %s %s' % (sim_users[user_email], quoted_addr))
658 else:
659 self.push('550 No access for you!')
660
R. David Murraycaa27b72009-05-23 18:49:56 +0000661 def smtp_AUTH(self, arg):
R. David Murrayfb123912009-05-28 18:19:00 +0000662 if arg.strip().lower()=='cram-md5':
663 self.push('334 {}'.format(sim_cram_md5_challenge))
664 return
R. David Murraycaa27b72009-05-23 18:49:56 +0000665 mech, auth = arg.split()
R. David Murrayfb123912009-05-28 18:19:00 +0000666 mech = mech.lower()
667 if mech not in sim_auth_credentials:
R. David Murraycaa27b72009-05-23 18:49:56 +0000668 self.push('504 auth type unimplemented')
R. David Murrayfb123912009-05-28 18:19:00 +0000669 return
670 if mech == 'plain' and auth==sim_auth_credentials['plain']:
671 self.push('235 plain auth ok')
672 elif mech=='login' and auth==sim_auth_credentials['login']:
673 self.push('334 Password:')
674 else:
675 self.push('550 No access for you!')
R. David Murraycaa27b72009-05-23 18:49:56 +0000676
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400677 def smtp_QUIT(self, arg):
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400678 if self.quit_response is None:
679 super(SimSMTPChannel, self).smtp_QUIT(arg)
680 else:
681 self.push(self.quit_response)
682 self.close_when_done()
683
R David Murrayd312c742013-03-20 20:36:14 -0400684 def smtp_MAIL(self, arg):
685 if self.mail_response is None:
686 super().smtp_MAIL(arg)
687 else:
688 self.push(self.mail_response)
R David Murrayafb151a2014-04-14 18:21:38 -0400689 if self.disconnect:
690 self.close_when_done()
R David Murrayd312c742013-03-20 20:36:14 -0400691
692 def smtp_RCPT(self, arg):
693 if self.rcpt_response is None:
694 super().smtp_RCPT(arg)
695 return
R David Murrayd312c742013-03-20 20:36:14 -0400696 self.rcpt_count += 1
R David Murray03b01162013-03-20 22:11:40 -0400697 self.push(self.rcpt_response[self.rcpt_count-1])
R David Murrayd312c742013-03-20 20:36:14 -0400698
699 def smtp_RSET(self, arg):
R David Murrayd312c742013-03-20 20:36:14 -0400700 self.rset_count += 1
R David Murray03b01162013-03-20 22:11:40 -0400701 super().smtp_RSET(arg)
R David Murrayd312c742013-03-20 20:36:14 -0400702
703 def smtp_DATA(self, arg):
704 if self.data_response is None:
705 super().smtp_DATA(arg)
706 else:
707 self.push(self.data_response)
708
Giampaolo Rodolàd930b632010-05-06 20:21:57 +0000709 def handle_error(self):
710 raise
711
Guido van Rossum04110fb2007-08-24 16:32:05 +0000712
713class SimSMTPServer(smtpd.SMTPServer):
R. David Murrayfb123912009-05-28 18:19:00 +0000714
R David Murrayd312c742013-03-20 20:36:14 -0400715 channel_class = SimSMTPChannel
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400716
R. David Murray23ddc0e2009-05-29 18:03:16 +0000717 def __init__(self, *args, **kw):
718 self._extra_features = []
719 smtpd.SMTPServer.__init__(self, *args, **kw)
720
Giampaolo Rodolà977c7072010-10-04 21:08:36 +0000721 def handle_accepted(self, conn, addr):
R David Murrayf1a40b42013-03-20 21:12:17 -0400722 self._SMTPchannel = self.channel_class(
R David Murray1144da52014-06-11 12:27:40 -0400723 self._extra_features, self, conn, addr,
724 decode_data=self._decode_data)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000725
726 def process_message(self, peer, mailfrom, rcpttos, data):
727 pass
728
R. David Murrayfb123912009-05-28 18:19:00 +0000729 def add_feature(self, feature):
R. David Murray23ddc0e2009-05-29 18:03:16 +0000730 self._extra_features.append(feature)
R. David Murrayfb123912009-05-28 18:19:00 +0000731
Giampaolo Rodolàd930b632010-05-06 20:21:57 +0000732 def handle_error(self):
733 raise
734
Guido van Rossum04110fb2007-08-24 16:32:05 +0000735
736# Test various SMTP & ESMTP commands/behaviors that require a simulated server
737# (i.e., something with more features than DebuggingServer)
Victor Stinner45df8202010-04-28 22:31:17 +0000738@unittest.skipUnless(threading, 'Threading required for this test.')
739class SMTPSimTests(unittest.TestCase):
Guido van Rossum04110fb2007-08-24 16:32:05 +0000740
741 def setUp(self):
Richard Jones64b02de2010-08-03 06:39:33 +0000742 self.real_getfqdn = socket.getfqdn
743 socket.getfqdn = mock_socket.getfqdn
Guido van Rossum04110fb2007-08-24 16:32:05 +0000744 self.serv_evt = threading.Event()
745 self.client_evt = threading.Event()
Antoine Pitrou043bad02010-04-30 23:20:15 +0000746 # Pick a random unused port by passing 0 for the port number
R David Murray1144da52014-06-11 12:27:40 -0400747 self.serv = SimSMTPServer((HOST, 0), ('nowhere', -1), decode_data=True)
Antoine Pitrou043bad02010-04-30 23:20:15 +0000748 # Keep a note of what port was assigned
749 self.port = self.serv.socket.getsockname()[1]
Christian Heimes5e696852008-04-09 08:37:03 +0000750 serv_args = (self.serv, self.serv_evt, self.client_evt)
Antoine Pitrouc3d47722009-10-27 19:49:45 +0000751 self.thread = threading.Thread(target=debugging_server, args=serv_args)
752 self.thread.start()
Guido van Rossum04110fb2007-08-24 16:32:05 +0000753
754 # wait until server thread has assigned a port number
Christian Heimes380f7f22008-02-28 11:19:05 +0000755 self.serv_evt.wait()
756 self.serv_evt.clear()
Guido van Rossum04110fb2007-08-24 16:32:05 +0000757
758 def tearDown(self):
Richard Jones64b02de2010-08-03 06:39:33 +0000759 socket.getfqdn = self.real_getfqdn
Guido van Rossum04110fb2007-08-24 16:32:05 +0000760 # indicate that the client is finished
761 self.client_evt.set()
762 # wait for the server thread to terminate
763 self.serv_evt.wait()
Antoine Pitrouc3d47722009-10-27 19:49:45 +0000764 self.thread.join()
Guido van Rossum04110fb2007-08-24 16:32:05 +0000765
766 def testBasic(self):
767 # smoke test
Christian Heimes5e696852008-04-09 08:37:03 +0000768 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000769 smtp.quit()
770
771 def testEHLO(self):
Christian Heimes5e696852008-04-09 08:37:03 +0000772 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000773
774 # no features should be present before the EHLO
775 self.assertEqual(smtp.esmtp_features, {})
776
777 # features expected from the test server
778 expected_features = {'expn':'',
779 'size': '20000000',
780 'starttls': '',
781 'deliverby': '',
782 'help': '',
783 }
784
785 smtp.ehlo()
786 self.assertEqual(smtp.esmtp_features, expected_features)
787 for k in expected_features:
788 self.assertTrue(smtp.has_extn(k))
789 self.assertFalse(smtp.has_extn('unsupported-feature'))
790 smtp.quit()
791
792 def testVRFY(self):
Christian Heimes5e696852008-04-09 08:37:03 +0000793 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000794
795 for email, name in sim_users.items():
796 expected_known = (250, bytes('%s %s' %
Guido van Rossum5a23cc52007-08-30 14:02:43 +0000797 (name, smtplib.quoteaddr(email)),
798 "ascii"))
Guido van Rossum04110fb2007-08-24 16:32:05 +0000799 self.assertEqual(smtp.vrfy(email), expected_known)
800
801 u = 'nobody@nowhere.com'
R David Murray46346762011-07-18 21:38:54 -0400802 expected_unknown = (550, ('No such user: %s' % u).encode('ascii'))
Guido van Rossum04110fb2007-08-24 16:32:05 +0000803 self.assertEqual(smtp.vrfy(u), expected_unknown)
804 smtp.quit()
805
806 def testEXPN(self):
Christian Heimes5e696852008-04-09 08:37:03 +0000807 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000808
809 for listname, members in sim_lists.items():
810 users = []
811 for m in members:
812 users.append('%s %s' % (sim_users[m], smtplib.quoteaddr(m)))
Guido van Rossum5a23cc52007-08-30 14:02:43 +0000813 expected_known = (250, bytes('\n'.join(users), "ascii"))
Guido van Rossum04110fb2007-08-24 16:32:05 +0000814 self.assertEqual(smtp.expn(listname), expected_known)
815
816 u = 'PSU-Members-List'
817 expected_unknown = (550, b'No access for you!')
818 self.assertEqual(smtp.expn(u), expected_unknown)
819 smtp.quit()
820
R. David Murrayfb123912009-05-28 18:19:00 +0000821 def testAUTH_PLAIN(self):
R. David Murrayfb123912009-05-28 18:19:00 +0000822 self.serv.add_feature("AUTH PLAIN")
R. David Murray23ddc0e2009-05-29 18:03:16 +0000823 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R. David Murraycaa27b72009-05-23 18:49:56 +0000824
R. David Murrayfb123912009-05-28 18:19:00 +0000825 expected_auth_ok = (235, b'plain auth ok')
R. David Murraycaa27b72009-05-23 18:49:56 +0000826 self.assertEqual(smtp.login(sim_auth[0], sim_auth[1]), expected_auth_ok)
Benjamin Petersond094efd2010-10-31 17:15:42 +0000827 smtp.close()
Guido van Rossum04110fb2007-08-24 16:32:05 +0000828
R. David Murrayfb123912009-05-28 18:19:00 +0000829 # SimSMTPChannel doesn't fully support LOGIN or CRAM-MD5 auth because they
830 # require a synchronous read to obtain the credentials...so instead smtpd
831 # sees the credential sent by smtplib's login method as an unknown command,
832 # which results in smtplib raising an auth error. Fortunately the error
833 # message contains the encoded credential, so we can partially check that it
834 # was generated correctly (partially, because the 'word' is uppercased in
835 # the error message).
836
837 def testAUTH_LOGIN(self):
R. David Murrayfb123912009-05-28 18:19:00 +0000838 self.serv.add_feature("AUTH LOGIN")
R. David Murray23ddc0e2009-05-29 18:03:16 +0000839 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R. David Murrayfb123912009-05-28 18:19:00 +0000840 try: smtp.login(sim_auth[0], sim_auth[1])
841 except smtplib.SMTPAuthenticationError as err:
Benjamin Peterson95951662010-10-31 17:59:20 +0000842 self.assertIn(sim_auth_login_password, str(err))
Benjamin Petersond094efd2010-10-31 17:15:42 +0000843 smtp.close()
R. David Murrayfb123912009-05-28 18:19:00 +0000844
845 def testAUTH_CRAM_MD5(self):
R. David Murrayfb123912009-05-28 18:19:00 +0000846 self.serv.add_feature("AUTH CRAM-MD5")
R. David Murray23ddc0e2009-05-29 18:03:16 +0000847 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R. David Murrayfb123912009-05-28 18:19:00 +0000848
849 try: smtp.login(sim_auth[0], sim_auth[1])
850 except smtplib.SMTPAuthenticationError as err:
Benjamin Peterson95951662010-10-31 17:59:20 +0000851 self.assertIn(sim_auth_credentials['cram-md5'], str(err))
Benjamin Petersond094efd2010-10-31 17:15:42 +0000852 smtp.close()
R. David Murrayfb123912009-05-28 18:19:00 +0000853
Andrew Kuchling78591822013-11-11 14:03:23 -0500854 def testAUTH_multiple(self):
855 # Test that multiple authentication methods are tried.
856 self.serv.add_feature("AUTH BOGUS PLAIN LOGIN CRAM-MD5")
857 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
858 try: smtp.login(sim_auth[0], sim_auth[1])
859 except smtplib.SMTPAuthenticationError as err:
860 self.assertIn(sim_auth_login_password, str(err))
861 smtp.close()
862
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400863 def test_with_statement(self):
864 with smtplib.SMTP(HOST, self.port) as smtp:
865 code, message = smtp.noop()
866 self.assertEqual(code, 250)
867 self.assertRaises(smtplib.SMTPServerDisconnected, smtp.send, b'foo')
868 with smtplib.SMTP(HOST, self.port) as smtp:
869 smtp.close()
870 self.assertRaises(smtplib.SMTPServerDisconnected, smtp.send, b'foo')
871
872 def test_with_statement_QUIT_failure(self):
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400873 with self.assertRaises(smtplib.SMTPResponseException) as error:
874 with smtplib.SMTP(HOST, self.port) as smtp:
875 smtp.noop()
R David Murray6bd52022013-03-21 00:32:31 -0400876 self.serv._SMTPchannel.quit_response = '421 QUIT FAILED'
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400877 self.assertEqual(error.exception.smtp_code, 421)
878 self.assertEqual(error.exception.smtp_error, b'QUIT FAILED')
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400879
R. David Murrayfb123912009-05-28 18:19:00 +0000880 #TODO: add tests for correct AUTH method fallback now that the
881 #test infrastructure can support it.
882
R David Murrayafb151a2014-04-14 18:21:38 -0400883 # Issue 17498: make sure _rset does not raise SMTPServerDisconnected exception
884 def test__rest_from_mail_cmd(self):
885 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
886 smtp.noop()
887 self.serv._SMTPchannel.mail_response = '451 Requested action aborted'
888 self.serv._SMTPchannel.disconnect = True
889 with self.assertRaises(smtplib.SMTPSenderRefused):
890 smtp.sendmail('John', 'Sally', 'test message')
891 self.assertIsNone(smtp.sock)
892
R David Murrayd312c742013-03-20 20:36:14 -0400893 # Issue 5713: make sure close, not rset, is called if we get a 421 error
894 def test_421_from_mail_cmd(self):
895 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R David Murray853c0f92013-03-20 21:54:05 -0400896 smtp.noop()
R David Murrayd312c742013-03-20 20:36:14 -0400897 self.serv._SMTPchannel.mail_response = '421 closing connection'
898 with self.assertRaises(smtplib.SMTPSenderRefused):
899 smtp.sendmail('John', 'Sally', 'test message')
900 self.assertIsNone(smtp.sock)
R David Murray03b01162013-03-20 22:11:40 -0400901 self.assertEqual(self.serv._SMTPchannel.rset_count, 0)
R David Murrayd312c742013-03-20 20:36:14 -0400902
903 def test_421_from_rcpt_cmd(self):
904 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R David Murray853c0f92013-03-20 21:54:05 -0400905 smtp.noop()
R David Murrayd312c742013-03-20 20:36:14 -0400906 self.serv._SMTPchannel.rcpt_response = ['250 accepted', '421 closing']
907 with self.assertRaises(smtplib.SMTPRecipientsRefused) as r:
908 smtp.sendmail('John', ['Sally', 'Frank', 'George'], 'test message')
909 self.assertIsNone(smtp.sock)
910 self.assertEqual(self.serv._SMTPchannel.rset_count, 0)
911 self.assertDictEqual(r.exception.args[0], {'Frank': (421, b'closing')})
912
913 def test_421_from_data_cmd(self):
914 class MySimSMTPChannel(SimSMTPChannel):
915 def found_terminator(self):
916 if self.smtp_state == self.DATA:
917 self.push('421 closing')
918 else:
919 super().found_terminator()
920 self.serv.channel_class = MySimSMTPChannel
921 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R David Murray853c0f92013-03-20 21:54:05 -0400922 smtp.noop()
R David Murrayd312c742013-03-20 20:36:14 -0400923 with self.assertRaises(smtplib.SMTPDataError):
924 smtp.sendmail('John@foo.org', ['Sally@foo.org'], 'test message')
925 self.assertIsNone(smtp.sock)
926 self.assertEqual(self.serv._SMTPchannel.rcpt_count, 0)
927
Guido van Rossum04110fb2007-08-24 16:32:05 +0000928
Antoine Pitroud54fa552011-08-28 01:23:52 +0200929@support.reap_threads
Guido van Rossumd8faa362007-04-27 19:54:29 +0000930def test_main(verbose=None):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000931 support.run_unittest(GeneralTests, DebuggingServerTests,
Christian Heimes380f7f22008-02-28 11:19:05 +0000932 NonConnectingTests,
Georg Brandlb38b5c42014-02-10 22:11:21 +0100933 BadHELOServerTests, SMTPSimTests,
934 TooLongLineTests)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000935
936if __name__ == '__main__':
937 test_main()