blob: 95a9dbe91225e05df364114f05b4fb686554850e [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
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()
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200225 except OSError as e:
Senthil Kumaranb351a482011-07-31 09:14:17 +0800226 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
527 def testNotConnected(self):
528 # Test various operations on an unconnected SMTP object that
529 # should raise exceptions (at present the attempt in SMTP.send
530 # to reference the nonexistent 'sock' attribute of the SMTP object
531 # causes an AttributeError)
532 smtp = smtplib.SMTP()
533 self.assertRaises(smtplib.SMTPServerDisconnected, smtp.ehlo)
534 self.assertRaises(smtplib.SMTPServerDisconnected,
535 smtp.send, 'test msg')
536
537 def testNonnumericPort(self):
Andrew Svetlov0832af62012-12-18 23:10:48 +0200538 # check that non-numeric port raises OSError
Andrew Svetlov2ade6f22012-12-17 18:57:16 +0200539 self.assertRaises(OSError, smtplib.SMTP,
Christian Heimes380f7f22008-02-28 11:19:05 +0000540 "localhost", "bogus")
Andrew Svetlov2ade6f22012-12-17 18:57:16 +0200541 self.assertRaises(OSError, smtplib.SMTP,
Christian Heimes380f7f22008-02-28 11:19:05 +0000542 "localhost:bogus")
543
544
Guido van Rossum04110fb2007-08-24 16:32:05 +0000545# test response of client to a non-successful HELO message
Victor Stinner45df8202010-04-28 22:31:17 +0000546@unittest.skipUnless(threading, 'Threading required for this test.')
547class BadHELOServerTests(unittest.TestCase):
Guido van Rossum806c2462007-08-06 23:33:07 +0000548
549 def setUp(self):
Richard Jones64b02de2010-08-03 06:39:33 +0000550 smtplib.socket = mock_socket
551 mock_socket.reply_with(b"199 no hello for you!")
Guido van Rossum806c2462007-08-06 23:33:07 +0000552 self.old_stdout = sys.stdout
553 self.output = io.StringIO()
554 sys.stdout = self.output
Richard Jones64b02de2010-08-03 06:39:33 +0000555 self.port = 25
Guido van Rossum806c2462007-08-06 23:33:07 +0000556
557 def tearDown(self):
Richard Jones64b02de2010-08-03 06:39:33 +0000558 smtplib.socket = socket
Guido van Rossum806c2462007-08-06 23:33:07 +0000559 sys.stdout = self.old_stdout
560
561 def testFailingHELO(self):
562 self.assertRaises(smtplib.SMTPConnectError, smtplib.SMTP,
Christian Heimes5e696852008-04-09 08:37:03 +0000563 HOST, self.port, 'localhost', 3)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000564
Guido van Rossum04110fb2007-08-24 16:32:05 +0000565
Georg Brandlb38b5c42014-02-10 22:11:21 +0100566@unittest.skipUnless(threading, 'Threading required for this test.')
567class TooLongLineTests(unittest.TestCase):
568 respdata = b'250 OK' + (b'.' * smtplib._MAXLINE * 2) + b'\n'
569
570 def setUp(self):
571 self.old_stdout = sys.stdout
572 self.output = io.StringIO()
573 sys.stdout = self.output
574
575 self.evt = threading.Event()
576 self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
577 self.sock.settimeout(15)
578 self.port = support.bind_port(self.sock)
579 servargs = (self.evt, self.respdata, self.sock)
580 threading.Thread(target=server, args=servargs).start()
581 self.evt.wait()
582 self.evt.clear()
583
584 def tearDown(self):
585 self.evt.wait()
586 sys.stdout = self.old_stdout
587
588 def testLineTooLong(self):
589 self.assertRaises(smtplib.SMTPResponseException, smtplib.SMTP,
590 HOST, self.port, 'localhost', 3)
591
592
Guido van Rossum04110fb2007-08-24 16:32:05 +0000593sim_users = {'Mr.A@somewhere.com':'John A',
R David Murray46346762011-07-18 21:38:54 -0400594 'Ms.B@xn--fo-fka.com':'Sally B',
Guido van Rossum04110fb2007-08-24 16:32:05 +0000595 'Mrs.C@somewhereesle.com':'Ruth C',
596 }
597
R. David Murraycaa27b72009-05-23 18:49:56 +0000598sim_auth = ('Mr.A@somewhere.com', 'somepassword')
R. David Murrayfb123912009-05-28 18:19:00 +0000599sim_cram_md5_challenge = ('PENCeUxFREJoU0NnbmhNWitOMjNGNn'
600 'dAZWx3b29kLmlubm9zb2Z0LmNvbT4=')
601sim_auth_credentials = {
602 'login': 'TXIuQUBzb21ld2hlcmUuY29t',
603 'plain': 'AE1yLkFAc29tZXdoZXJlLmNvbQBzb21lcGFzc3dvcmQ=',
604 'cram-md5': ('TXIUQUBZB21LD2HLCMUUY29TIDG4OWQ0MJ'
605 'KWZGQ4ODNMNDA4NTGXMDRLZWMYZJDMODG1'),
606 }
607sim_auth_login_password = 'C29TZXBHC3N3B3JK'
R. David Murraycaa27b72009-05-23 18:49:56 +0000608
Guido van Rossum04110fb2007-08-24 16:32:05 +0000609sim_lists = {'list-1':['Mr.A@somewhere.com','Mrs.C@somewhereesle.com'],
R David Murray46346762011-07-18 21:38:54 -0400610 'list-2':['Ms.B@xn--fo-fka.com',],
Guido van Rossum04110fb2007-08-24 16:32:05 +0000611 }
612
613# Simulated SMTP channel & server
614class SimSMTPChannel(smtpd.SMTPChannel):
R. David Murrayfb123912009-05-28 18:19:00 +0000615
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400616 quit_response = None
R David Murrayd312c742013-03-20 20:36:14 -0400617 mail_response = None
618 rcpt_response = None
619 data_response = None
620 rcpt_count = 0
621 rset_count = 0
R David Murrayafb151a2014-04-14 18:21:38 -0400622 disconnect = 0
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400623
R. David Murray23ddc0e2009-05-29 18:03:16 +0000624 def __init__(self, extra_features, *args, **kw):
625 self._extrafeatures = ''.join(
626 [ "250-{0}\r\n".format(x) for x in extra_features ])
R. David Murrayfb123912009-05-28 18:19:00 +0000627 super(SimSMTPChannel, self).__init__(*args, **kw)
628
Guido van Rossum04110fb2007-08-24 16:32:05 +0000629 def smtp_EHLO(self, arg):
R. David Murrayfb123912009-05-28 18:19:00 +0000630 resp = ('250-testhost\r\n'
631 '250-EXPN\r\n'
632 '250-SIZE 20000000\r\n'
633 '250-STARTTLS\r\n'
634 '250-DELIVERBY\r\n')
635 resp = resp + self._extrafeatures + '250 HELP'
Guido van Rossum04110fb2007-08-24 16:32:05 +0000636 self.push(resp)
R David Murrayf1a40b42013-03-20 21:12:17 -0400637 self.seen_greeting = arg
638 self.extended_smtp = True
Guido van Rossum04110fb2007-08-24 16:32:05 +0000639
640 def smtp_VRFY(self, arg):
R David Murray46346762011-07-18 21:38:54 -0400641 # For max compatibility smtplib should be sending the raw address.
642 if arg in sim_users:
643 self.push('250 %s %s' % (sim_users[arg], smtplib.quoteaddr(arg)))
Guido van Rossum04110fb2007-08-24 16:32:05 +0000644 else:
645 self.push('550 No such user: %s' % arg)
646
647 def smtp_EXPN(self, arg):
R David Murray46346762011-07-18 21:38:54 -0400648 list_name = arg.lower()
Guido van Rossum04110fb2007-08-24 16:32:05 +0000649 if list_name in sim_lists:
650 user_list = sim_lists[list_name]
651 for n, user_email in enumerate(user_list):
652 quoted_addr = smtplib.quoteaddr(user_email)
653 if n < len(user_list) - 1:
654 self.push('250-%s %s' % (sim_users[user_email], quoted_addr))
655 else:
656 self.push('250 %s %s' % (sim_users[user_email], quoted_addr))
657 else:
658 self.push('550 No access for you!')
659
R. David Murraycaa27b72009-05-23 18:49:56 +0000660 def smtp_AUTH(self, arg):
R. David Murrayfb123912009-05-28 18:19:00 +0000661 if arg.strip().lower()=='cram-md5':
662 self.push('334 {}'.format(sim_cram_md5_challenge))
663 return
R. David Murraycaa27b72009-05-23 18:49:56 +0000664 mech, auth = arg.split()
R. David Murrayfb123912009-05-28 18:19:00 +0000665 mech = mech.lower()
666 if mech not in sim_auth_credentials:
R. David Murraycaa27b72009-05-23 18:49:56 +0000667 self.push('504 auth type unimplemented')
R. David Murrayfb123912009-05-28 18:19:00 +0000668 return
669 if mech == 'plain' and auth==sim_auth_credentials['plain']:
670 self.push('235 plain auth ok')
671 elif mech=='login' and auth==sim_auth_credentials['login']:
672 self.push('334 Password:')
673 else:
674 self.push('550 No access for you!')
R. David Murraycaa27b72009-05-23 18:49:56 +0000675
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400676 def smtp_QUIT(self, arg):
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400677 if self.quit_response is None:
678 super(SimSMTPChannel, self).smtp_QUIT(arg)
679 else:
680 self.push(self.quit_response)
681 self.close_when_done()
682
R David Murrayd312c742013-03-20 20:36:14 -0400683 def smtp_MAIL(self, arg):
684 if self.mail_response is None:
685 super().smtp_MAIL(arg)
686 else:
687 self.push(self.mail_response)
R David Murrayafb151a2014-04-14 18:21:38 -0400688 if self.disconnect:
689 self.close_when_done()
R David Murrayd312c742013-03-20 20:36:14 -0400690
691 def smtp_RCPT(self, arg):
692 if self.rcpt_response is None:
693 super().smtp_RCPT(arg)
694 return
R David Murrayd312c742013-03-20 20:36:14 -0400695 self.rcpt_count += 1
R David Murray03b01162013-03-20 22:11:40 -0400696 self.push(self.rcpt_response[self.rcpt_count-1])
R David Murrayd312c742013-03-20 20:36:14 -0400697
698 def smtp_RSET(self, arg):
R David Murrayd312c742013-03-20 20:36:14 -0400699 self.rset_count += 1
R David Murray03b01162013-03-20 22:11:40 -0400700 super().smtp_RSET(arg)
R David Murrayd312c742013-03-20 20:36:14 -0400701
702 def smtp_DATA(self, arg):
703 if self.data_response is None:
704 super().smtp_DATA(arg)
705 else:
706 self.push(self.data_response)
707
Giampaolo Rodolàd930b632010-05-06 20:21:57 +0000708 def handle_error(self):
709 raise
710
Guido van Rossum04110fb2007-08-24 16:32:05 +0000711
712class SimSMTPServer(smtpd.SMTPServer):
R. David Murrayfb123912009-05-28 18:19:00 +0000713
R David Murrayd312c742013-03-20 20:36:14 -0400714 channel_class = SimSMTPChannel
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400715
R. David Murray23ddc0e2009-05-29 18:03:16 +0000716 def __init__(self, *args, **kw):
717 self._extra_features = []
718 smtpd.SMTPServer.__init__(self, *args, **kw)
719
Giampaolo Rodolà977c7072010-10-04 21:08:36 +0000720 def handle_accepted(self, conn, addr):
R David Murrayf1a40b42013-03-20 21:12:17 -0400721 self._SMTPchannel = self.channel_class(
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400722 self._extra_features, self, conn, addr)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000723
724 def process_message(self, peer, mailfrom, rcpttos, data):
725 pass
726
R. David Murrayfb123912009-05-28 18:19:00 +0000727 def add_feature(self, feature):
R. David Murray23ddc0e2009-05-29 18:03:16 +0000728 self._extra_features.append(feature)
R. David Murrayfb123912009-05-28 18:19:00 +0000729
Giampaolo Rodolàd930b632010-05-06 20:21:57 +0000730 def handle_error(self):
731 raise
732
Guido van Rossum04110fb2007-08-24 16:32:05 +0000733
734# Test various SMTP & ESMTP commands/behaviors that require a simulated server
735# (i.e., something with more features than DebuggingServer)
Victor Stinner45df8202010-04-28 22:31:17 +0000736@unittest.skipUnless(threading, 'Threading required for this test.')
737class SMTPSimTests(unittest.TestCase):
Guido van Rossum04110fb2007-08-24 16:32:05 +0000738
739 def setUp(self):
Richard Jones64b02de2010-08-03 06:39:33 +0000740 self.real_getfqdn = socket.getfqdn
741 socket.getfqdn = mock_socket.getfqdn
Guido van Rossum04110fb2007-08-24 16:32:05 +0000742 self.serv_evt = threading.Event()
743 self.client_evt = threading.Event()
Antoine Pitrou043bad02010-04-30 23:20:15 +0000744 # Pick a random unused port by passing 0 for the port number
745 self.serv = SimSMTPServer((HOST, 0), ('nowhere', -1))
746 # Keep a note of what port was assigned
747 self.port = self.serv.socket.getsockname()[1]
Christian Heimes5e696852008-04-09 08:37:03 +0000748 serv_args = (self.serv, self.serv_evt, self.client_evt)
Antoine Pitrouc3d47722009-10-27 19:49:45 +0000749 self.thread = threading.Thread(target=debugging_server, args=serv_args)
750 self.thread.start()
Guido van Rossum04110fb2007-08-24 16:32:05 +0000751
752 # wait until server thread has assigned a port number
Christian Heimes380f7f22008-02-28 11:19:05 +0000753 self.serv_evt.wait()
754 self.serv_evt.clear()
Guido van Rossum04110fb2007-08-24 16:32:05 +0000755
756 def tearDown(self):
Richard Jones64b02de2010-08-03 06:39:33 +0000757 socket.getfqdn = self.real_getfqdn
Guido van Rossum04110fb2007-08-24 16:32:05 +0000758 # indicate that the client is finished
759 self.client_evt.set()
760 # wait for the server thread to terminate
761 self.serv_evt.wait()
Antoine Pitrouc3d47722009-10-27 19:49:45 +0000762 self.thread.join()
Guido van Rossum04110fb2007-08-24 16:32:05 +0000763
764 def testBasic(self):
765 # smoke test
Christian Heimes5e696852008-04-09 08:37:03 +0000766 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000767 smtp.quit()
768
769 def testEHLO(self):
Christian Heimes5e696852008-04-09 08:37:03 +0000770 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000771
772 # no features should be present before the EHLO
773 self.assertEqual(smtp.esmtp_features, {})
774
775 # features expected from the test server
776 expected_features = {'expn':'',
777 'size': '20000000',
778 'starttls': '',
779 'deliverby': '',
780 'help': '',
781 }
782
783 smtp.ehlo()
784 self.assertEqual(smtp.esmtp_features, expected_features)
785 for k in expected_features:
786 self.assertTrue(smtp.has_extn(k))
787 self.assertFalse(smtp.has_extn('unsupported-feature'))
788 smtp.quit()
789
790 def testVRFY(self):
Christian Heimes5e696852008-04-09 08:37:03 +0000791 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000792
793 for email, name in sim_users.items():
794 expected_known = (250, bytes('%s %s' %
Guido van Rossum5a23cc52007-08-30 14:02:43 +0000795 (name, smtplib.quoteaddr(email)),
796 "ascii"))
Guido van Rossum04110fb2007-08-24 16:32:05 +0000797 self.assertEqual(smtp.vrfy(email), expected_known)
798
799 u = 'nobody@nowhere.com'
R David Murray46346762011-07-18 21:38:54 -0400800 expected_unknown = (550, ('No such user: %s' % u).encode('ascii'))
Guido van Rossum04110fb2007-08-24 16:32:05 +0000801 self.assertEqual(smtp.vrfy(u), expected_unknown)
802 smtp.quit()
803
804 def testEXPN(self):
Christian Heimes5e696852008-04-09 08:37:03 +0000805 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000806
807 for listname, members in sim_lists.items():
808 users = []
809 for m in members:
810 users.append('%s %s' % (sim_users[m], smtplib.quoteaddr(m)))
Guido van Rossum5a23cc52007-08-30 14:02:43 +0000811 expected_known = (250, bytes('\n'.join(users), "ascii"))
Guido van Rossum04110fb2007-08-24 16:32:05 +0000812 self.assertEqual(smtp.expn(listname), expected_known)
813
814 u = 'PSU-Members-List'
815 expected_unknown = (550, b'No access for you!')
816 self.assertEqual(smtp.expn(u), expected_unknown)
817 smtp.quit()
818
R. David Murrayfb123912009-05-28 18:19:00 +0000819 def testAUTH_PLAIN(self):
R. David Murrayfb123912009-05-28 18:19:00 +0000820 self.serv.add_feature("AUTH PLAIN")
R. David Murray23ddc0e2009-05-29 18:03:16 +0000821 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R. David Murraycaa27b72009-05-23 18:49:56 +0000822
R. David Murrayfb123912009-05-28 18:19:00 +0000823 expected_auth_ok = (235, b'plain auth ok')
R. David Murraycaa27b72009-05-23 18:49:56 +0000824 self.assertEqual(smtp.login(sim_auth[0], sim_auth[1]), expected_auth_ok)
Benjamin Petersond094efd2010-10-31 17:15:42 +0000825 smtp.close()
Guido van Rossum04110fb2007-08-24 16:32:05 +0000826
R. David Murrayfb123912009-05-28 18:19:00 +0000827 # SimSMTPChannel doesn't fully support LOGIN or CRAM-MD5 auth because they
828 # require a synchronous read to obtain the credentials...so instead smtpd
829 # sees the credential sent by smtplib's login method as an unknown command,
830 # which results in smtplib raising an auth error. Fortunately the error
831 # message contains the encoded credential, so we can partially check that it
832 # was generated correctly (partially, because the 'word' is uppercased in
833 # the error message).
834
835 def testAUTH_LOGIN(self):
R. David Murrayfb123912009-05-28 18:19:00 +0000836 self.serv.add_feature("AUTH LOGIN")
R. David Murray23ddc0e2009-05-29 18:03:16 +0000837 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R. David Murrayfb123912009-05-28 18:19:00 +0000838 try: smtp.login(sim_auth[0], sim_auth[1])
839 except smtplib.SMTPAuthenticationError as err:
Benjamin Peterson95951662010-10-31 17:59:20 +0000840 self.assertIn(sim_auth_login_password, str(err))
Benjamin Petersond094efd2010-10-31 17:15:42 +0000841 smtp.close()
R. David Murrayfb123912009-05-28 18:19:00 +0000842
843 def testAUTH_CRAM_MD5(self):
R. David Murrayfb123912009-05-28 18:19:00 +0000844 self.serv.add_feature("AUTH CRAM-MD5")
R. David Murray23ddc0e2009-05-29 18:03:16 +0000845 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R. David Murrayfb123912009-05-28 18:19:00 +0000846
847 try: smtp.login(sim_auth[0], sim_auth[1])
848 except smtplib.SMTPAuthenticationError as err:
Benjamin Peterson95951662010-10-31 17:59:20 +0000849 self.assertIn(sim_auth_credentials['cram-md5'], str(err))
Benjamin Petersond094efd2010-10-31 17:15:42 +0000850 smtp.close()
R. David Murrayfb123912009-05-28 18:19:00 +0000851
Andrew Kuchling78591822013-11-11 14:03:23 -0500852 def testAUTH_multiple(self):
853 # Test that multiple authentication methods are tried.
854 self.serv.add_feature("AUTH BOGUS PLAIN LOGIN CRAM-MD5")
855 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
856 try: smtp.login(sim_auth[0], sim_auth[1])
857 except smtplib.SMTPAuthenticationError as err:
858 self.assertIn(sim_auth_login_password, str(err))
859 smtp.close()
860
R David Murray0cff49f2014-08-30 16:51:59 -0400861 def test_quit_resets_greeting(self):
862 smtp = smtplib.SMTP(HOST, self.port,
863 local_hostname='localhost',
864 timeout=15)
865 code, message = smtp.ehlo()
866 self.assertEqual(code, 250)
867 self.assertIn('size', smtp.esmtp_features)
868 smtp.quit()
869 self.assertNotIn('size', smtp.esmtp_features)
870 smtp.connect(HOST, self.port)
871 self.assertNotIn('size', smtp.esmtp_features)
872 smtp.ehlo_or_helo_if_needed()
873 self.assertIn('size', smtp.esmtp_features)
874 smtp.quit()
875
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400876 def test_with_statement(self):
877 with smtplib.SMTP(HOST, self.port) as smtp:
878 code, message = smtp.noop()
879 self.assertEqual(code, 250)
880 self.assertRaises(smtplib.SMTPServerDisconnected, smtp.send, b'foo')
881 with smtplib.SMTP(HOST, self.port) as smtp:
882 smtp.close()
883 self.assertRaises(smtplib.SMTPServerDisconnected, smtp.send, b'foo')
884
885 def test_with_statement_QUIT_failure(self):
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400886 with self.assertRaises(smtplib.SMTPResponseException) as error:
887 with smtplib.SMTP(HOST, self.port) as smtp:
888 smtp.noop()
R David Murray6bd52022013-03-21 00:32:31 -0400889 self.serv._SMTPchannel.quit_response = '421 QUIT FAILED'
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400890 self.assertEqual(error.exception.smtp_code, 421)
891 self.assertEqual(error.exception.smtp_error, b'QUIT FAILED')
Barry Warsaw1f5c9582011-03-15 15:04:44 -0400892
R. David Murrayfb123912009-05-28 18:19:00 +0000893 #TODO: add tests for correct AUTH method fallback now that the
894 #test infrastructure can support it.
895
R David Murrayafb151a2014-04-14 18:21:38 -0400896 # Issue 17498: make sure _rset does not raise SMTPServerDisconnected exception
897 def test__rest_from_mail_cmd(self):
898 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
899 smtp.noop()
900 self.serv._SMTPchannel.mail_response = '451 Requested action aborted'
901 self.serv._SMTPchannel.disconnect = True
902 with self.assertRaises(smtplib.SMTPSenderRefused):
903 smtp.sendmail('John', 'Sally', 'test message')
904 self.assertIsNone(smtp.sock)
905
R David Murrayd312c742013-03-20 20:36:14 -0400906 # Issue 5713: make sure close, not rset, is called if we get a 421 error
907 def test_421_from_mail_cmd(self):
908 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R David Murray853c0f92013-03-20 21:54:05 -0400909 smtp.noop()
R David Murrayd312c742013-03-20 20:36:14 -0400910 self.serv._SMTPchannel.mail_response = '421 closing connection'
911 with self.assertRaises(smtplib.SMTPSenderRefused):
912 smtp.sendmail('John', 'Sally', 'test message')
913 self.assertIsNone(smtp.sock)
R David Murray03b01162013-03-20 22:11:40 -0400914 self.assertEqual(self.serv._SMTPchannel.rset_count, 0)
R David Murrayd312c742013-03-20 20:36:14 -0400915
916 def test_421_from_rcpt_cmd(self):
917 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R David Murray853c0f92013-03-20 21:54:05 -0400918 smtp.noop()
R David Murrayd312c742013-03-20 20:36:14 -0400919 self.serv._SMTPchannel.rcpt_response = ['250 accepted', '421 closing']
920 with self.assertRaises(smtplib.SMTPRecipientsRefused) as r:
921 smtp.sendmail('John', ['Sally', 'Frank', 'George'], 'test message')
922 self.assertIsNone(smtp.sock)
923 self.assertEqual(self.serv._SMTPchannel.rset_count, 0)
924 self.assertDictEqual(r.exception.args[0], {'Frank': (421, b'closing')})
925
926 def test_421_from_data_cmd(self):
927 class MySimSMTPChannel(SimSMTPChannel):
928 def found_terminator(self):
929 if self.smtp_state == self.DATA:
930 self.push('421 closing')
931 else:
932 super().found_terminator()
933 self.serv.channel_class = MySimSMTPChannel
934 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
R David Murray853c0f92013-03-20 21:54:05 -0400935 smtp.noop()
R David Murrayd312c742013-03-20 20:36:14 -0400936 with self.assertRaises(smtplib.SMTPDataError):
937 smtp.sendmail('John@foo.org', ['Sally@foo.org'], 'test message')
938 self.assertIsNone(smtp.sock)
939 self.assertEqual(self.serv._SMTPchannel.rcpt_count, 0)
940
Guido van Rossum04110fb2007-08-24 16:32:05 +0000941
Antoine Pitroud54fa552011-08-28 01:23:52 +0200942@support.reap_threads
Guido van Rossumd8faa362007-04-27 19:54:29 +0000943def test_main(verbose=None):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000944 support.run_unittest(GeneralTests, DebuggingServerTests,
Christian Heimes380f7f22008-02-28 11:19:05 +0000945 NonConnectingTests,
Georg Brandlb38b5c42014-02-10 22:11:21 +0100946 BadHELOServerTests, SMTPSimTests,
947 TooLongLineTests)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000948
949if __name__ == '__main__':
950 test_main()