1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605
|
"""Test the SMTP protocol."""
import time
import socket
import asyncio
import unittest
from aiosmtpd.controller import Controller
from aiosmtpd.handlers import Sink
from aiosmtpd.smtp import MISSING, SMTP as Server, __ident__ as GREETING
from aiosmtpd.testing.helpers import (
SUPPORTED_COMMANDS_NOTLS,
assert_auth_invalid,
assert_auth_required,
assert_auth_success,
reset_connection,
)
from base64 import b64encode
from contextlib import ExitStack
from smtplib import (
SMTP, SMTPDataError, SMTPResponseException, SMTPServerDisconnected)
from unittest.mock import Mock, PropertyMock, patch
CRLF = '\r\n'
BCRLF = b'\r\n'
def authenticator(mechanism, login, password):
if login and login.decode() == 'goodlogin':
return True
else:
return False
class DecodingController(Controller):
def factory(self):
return Server(self.handler, decode_data=True, enable_SMTPUTF8=True,
auth_require_tls=False, auth_callback=authenticator)
class PeekerHandler:
def __init__(self):
self.session = None
async def handle_MAIL(
self, server, session, envelope, address, mail_options
):
self.session = session
return "250 OK"
async def auth_NULL(
self, server, args
):
return "NULL_login"
async def auth_DONT(
self, server, args
):
return MISSING
class PeekerAuth:
def __init__(self):
self.login = None
self.password = None
def authenticate(
self, mechanism: str, login: bytes, password: bytes
) -> bool:
self.login = login
self.password = password
return True
auth_peeker = PeekerAuth()
class DecodingControllerPeekAuth(Controller):
def factory(self):
return Server(self.handler, decode_data=True, enable_SMTPUTF8=True,
auth_require_tls=False,
auth_callback=auth_peeker.authenticate,
**self.server_kwargs)
class NoDecodeController(Controller):
def factory(self):
return Server(self.handler, decode_data=False)
class TimeoutController(Controller):
Delay: float = 2.0
def factory(self):
return Server(self.handler, timeout=self.Delay)
class RequiredAuthDecodingController(Controller):
def factory(self):
return Server(self.handler, decode_data=True, enable_SMTPUTF8=True,
auth_require_tls=False, auth_callback=authenticator,
auth_required=True)
class ReceivingHandler:
box = None
def __init__(self):
self.box = []
async def handle_DATA(self, server, session, envelope):
self.box.append(envelope)
return '250 OK'
class StoreEnvelopeOnVRFYHandler:
"""Saves envelope for later inspection when handling VRFY."""
envelope = None
async def handle_VRFY(self, server, session, envelope, addr):
self.envelope = envelope
return '250 OK'
class SizedController(Controller):
def __init__(self, handler, size):
self.size = size
super().__init__(handler)
def factory(self):
return Server(self.handler, data_size_limit=self.size)
class StrictASCIIController(Controller):
def factory(self):
return Server(self.handler, enable_SMTPUTF8=False, decode_data=True)
class CustomHostnameController(Controller):
def factory(self):
return Server(self.handler, hostname='custom.localhost')
class CustomIdentController(Controller):
def factory(self):
server = Server(self.handler, ident='Identifying SMTP v2112')
return server
class ErroringHandler:
error = None
async def handle_DATA(self, server, session, envelope):
return '499 Could not accept the message'
async def handle_exception(self, error):
self.error = error
return '500 ErroringHandler handling error'
class ErroringHandlerCustomResponse:
error = None
async def handle_exception(self, error):
self.error = error
return '451 Temporary error: ({}) {}'.format(
error.__class__.__name__, str(error))
class ErroringErrorHandler:
error = None
async def handle_exception(self, error):
self.error = error
raise ValueError('ErroringErrorHandler test')
class UndescribableError(Exception):
def __str__(self):
raise Exception()
class UndescribableErrorHandler:
error = None
async def handle_exception(self, error):
self.error = error
raise UndescribableError()
class ErrorSMTP(Server):
async def smtp_HELO(self, hostname):
raise ValueError('test')
class ErrorController(Controller):
def factory(self):
return ErrorSMTP(self.handler)
class SleepingHeloHandler:
async def handle_HELO(self, server, session, envelope, hostname):
await asyncio.sleep(0.01)
session.host_name = hostname
return '250 {}'.format(server.hostname)
class TestProtocol(unittest.TestCase):
def setUp(self):
self.transport = Mock()
self.transport.write = self._write
self.responses = []
self._old_loop = asyncio.get_event_loop()
self.loop = asyncio.new_event_loop()
asyncio.set_event_loop(self.loop)
def tearDown(self):
self.loop.close()
asyncio.set_event_loop(self._old_loop)
def _write(self, data):
self.responses.append(data)
def _get_protocol(self, *args, **kwargs):
protocol = Server(*args, loop=self.loop, **kwargs)
protocol.connection_made(self.transport)
return protocol
def test_honors_mail_delimeters(self):
handler = ReceivingHandler()
data = b'test\r\nmail\rdelimeters\nsaved\r\n'
protocol = self._get_protocol(handler)
protocol.data_received(BCRLF.join([
b'HELO example.org',
b'MAIL FROM: <anne@example.com>',
b'RCPT TO: <anne@example.com>',
b'DATA',
data + b'.',
b'QUIT\r\n'
]))
try:
self.loop.run_until_complete(protocol._handler_coroutine)
except asyncio.CancelledError:
pass
self.assertEqual(len(handler.box), 1)
self.assertEqual(handler.box[0].content, data)
def test_empty_email(self):
handler = ReceivingHandler()
protocol = self._get_protocol(handler)
protocol.data_received(BCRLF.join([
b'HELO example.org',
b'MAIL FROM: <anne@example.com>',
b'RCPT TO: <anne@example.com>',
b'DATA',
b'.',
b'QUIT\r\n'
]))
try:
self.loop.run_until_complete(protocol._handler_coroutine)
except asyncio.CancelledError:
pass
self.assertEqual(self.responses[5], b'250 OK\r\n')
self.assertEqual(len(handler.box), 1)
self.assertEqual(handler.box[0].content, b'')
class TestSMTP(unittest.TestCase):
def setUp(self):
controller = DecodingController(Sink)
controller.start()
self.addCleanup(controller.stop)
self.address = (controller.hostname, controller.port)
def test_binary(self):
with SMTP(*self.address) as client:
client.sock.send(b"\x80FAIL\r\n")
code, response = client.getreply()
self.assertEqual(code, 500)
self.assertEqual(response, b'Error: bad syntax')
def test_binary_space(self):
with SMTP(*self.address) as client:
client.sock.send(b"\x80 FAIL\r\n")
code, response = client.getreply()
self.assertEqual(code, 500)
self.assertEqual(response, b'Error: bad syntax')
def test_helo(self):
with SMTP(*self.address) as client:
code, response = client.helo('example.com')
self.assertEqual(code, 250)
self.assertEqual(response, bytes(socket.getfqdn(), 'utf-8'))
def test_helo_no_hostname(self):
with SMTP(*self.address) as client:
# smtplib substitutes .local_hostname if the argument is falsey.
client.local_hostname = ''
code, response = client.helo('')
self.assertEqual(code, 501)
self.assertEqual(response, b'Syntax: HELO hostname')
def test_helo_duplicate(self):
with SMTP(*self.address) as client:
code, response = client.helo('example.com')
self.assertEqual(code, 250)
code, response = client.helo('example.org')
self.assertEqual(code, 250)
def test_ehlo(self):
with SMTP(*self.address) as client:
code, response = client.ehlo('example.com')
self.assertEqual(code, 250)
lines = response.splitlines()
expecteds = (
bytes(socket.getfqdn(), 'utf-8'),
b'SIZE 33554432',
b'SMTPUTF8',
b'AUTH LOGIN PLAIN',
b'HELP',
)
for actual, expected in zip(lines, expecteds):
self.assertEqual(actual, expected)
def test_ehlo_duplicate(self):
with SMTP(*self.address) as client:
code, response = client.ehlo('example.com')
self.assertEqual(code, 250)
code, response = client.ehlo('example.org')
self.assertEqual(code, 250)
def test_ehlo_no_hostname(self):
with SMTP(*self.address) as client:
# smtplib substitutes .local_hostname if the argument is falsey.
client.local_hostname = ''
code, response = client.ehlo('')
self.assertEqual(code, 501)
self.assertEqual(response, b'Syntax: EHLO hostname')
def test_helo_then_ehlo(self):
with SMTP(*self.address) as client:
code, response = client.helo('example.com')
self.assertEqual(code, 250)
code, response = client.ehlo('example.org')
self.assertEqual(code, 250)
def test_ehlo_then_helo(self):
with SMTP(*self.address) as client:
code, response = client.ehlo('example.com')
self.assertEqual(code, 250)
code, response = client.helo('example.org')
self.assertEqual(code, 250)
def test_noop(self):
with SMTP(*self.address) as client:
code, response = client.noop()
self.assertEqual(code, 250)
def test_noop_with_arg(self):
with SMTP(*self.address) as client:
# .noop() doesn't accept arguments.
code, response = client.docmd('NOOP', 'ok')
self.assertEqual(code, 250)
def test_quit(self):
client = SMTP(*self.address)
code, response = client.quit()
self.assertEqual(code, 221)
self.assertEqual(response, b'Bye')
def test_quit_with_arg(self):
client = SMTP(*self.address)
code, response = client.docmd('QUIT', 'oops')
self.assertEqual(code, 501)
self.assertEqual(response, b'Syntax: QUIT')
def test_help(self):
with SMTP(*self.address) as client:
# Don't get tricked by smtplib processing of the response.
code, response = client.docmd('HELP')
self.assertEqual(code, 250)
self.assertEqual(response, SUPPORTED_COMMANDS_NOTLS)
def test_help_helo(self):
with SMTP(*self.address) as client:
# Don't get tricked by smtplib processing of the response.
code, response = client.docmd('HELP', 'HELO')
self.assertEqual(code, 250)
self.assertEqual(response, b'Syntax: HELO hostname')
def test_help_ehlo(self):
with SMTP(*self.address) as client:
# Don't get tricked by smtplib processing of the response.
code, response = client.docmd('HELP', 'EHLO')
self.assertEqual(code, 250)
self.assertEqual(response, b'Syntax: EHLO hostname')
def test_help_mail(self):
with SMTP(*self.address) as client:
# Don't get tricked by smtplib processing of the response.
code, response = client.docmd('HELP', 'MAIL')
self.assertEqual(code, 250)
self.assertEqual(response, b'Syntax: MAIL FROM: <address>')
def test_help_mail_esmtp(self):
with SMTP(*self.address) as client:
code, response = client.ehlo('example.com')
self.assertEqual(code, 250)
code, response = client.docmd('HELP', 'MAIL')
self.assertEqual(code, 250)
self.assertEqual(
response,
b'Syntax: MAIL FROM: <address> [SP <mail-parameters>]')
def test_help_rcpt(self):
with SMTP(*self.address) as client:
# Don't get tricked by smtplib processing of the response.
code, response = client.docmd('HELP', 'RCPT')
self.assertEqual(code, 250)
self.assertEqual(response, b'Syntax: RCPT TO: <address>')
def test_help_rcpt_esmtp(self):
with SMTP(*self.address) as client:
code, response = client.ehlo('example.com')
self.assertEqual(code, 250)
code, response = client.docmd('HELP', 'RCPT')
self.assertEqual(code, 250)
self.assertEqual(
response,
b'Syntax: RCPT TO: <address> [SP <mail-parameters>]')
def test_help_data(self):
with SMTP(*self.address) as client:
code, response = client.docmd('HELP', 'DATA')
self.assertEqual(code, 250)
self.assertEqual(response, b'Syntax: DATA')
def test_help_rset(self):
with SMTP(*self.address) as client:
code, response = client.docmd('HELP', 'RSET')
self.assertEqual(code, 250)
self.assertEqual(response, b'Syntax: RSET')
def test_help_noop(self):
with SMTP(*self.address) as client:
code, response = client.docmd('HELP', 'NOOP')
self.assertEqual(code, 250)
self.assertEqual(response, b'Syntax: NOOP [ignored]')
def test_help_quit(self):
with SMTP(*self.address) as client:
code, response = client.docmd('HELP', 'QUIT')
self.assertEqual(code, 250)
self.assertEqual(response, b'Syntax: QUIT')
def test_help_vrfy(self):
with SMTP(*self.address) as client:
code, response = client.docmd('HELP', 'VRFY')
self.assertEqual(code, 250)
self.assertEqual(response, b'Syntax: VRFY <address>')
def test_help_auth(self):
with SMTP(*self.address) as client:
code, response = client.docmd('HELP', 'AUTH')
self.assertEqual(code, 250)
self.assertEqual(response, b'Syntax: AUTH <mechanism>')
def test_help_bad_arg(self):
with SMTP(*self.address) as client:
# Don't get tricked by smtplib processing of the response.
code, response = client.docmd('HELP me!')
self.assertEqual(code, 501)
self.assertEqual(response, SUPPORTED_COMMANDS_NOTLS)
def test_expn(self):
with SMTP(*self.address) as client:
code, response = client.expn('anne@example.com')
self.assertEqual(code, 502)
self.assertEqual(response, b'EXPN not implemented')
def test_mail_no_helo(self):
with SMTP(*self.address) as client:
code, response = client.docmd('MAIL FROM: <anne@example.com>')
self.assertEqual(code, 503)
self.assertEqual(response, b'Error: send HELO first')
def test_mail_no_arg(self):
with SMTP(*self.address) as client:
client.helo('example.com')
code, response = client.docmd('MAIL')
self.assertEqual(code, 501)
self.assertEqual(response, b'Syntax: MAIL FROM: <address>')
def test_mail_no_from(self):
with SMTP(*self.address) as client:
client.helo('example.com')
code, response = client.docmd('MAIL <anne@example.com>')
self.assertEqual(code, 501)
self.assertEqual(response, b'Syntax: MAIL FROM: <address>')
def test_mail_params_no_esmtp(self):
with SMTP(*self.address) as client:
client.helo('example.com')
code, response = client.docmd(
'MAIL FROM: <anne@example.com> SIZE=10000')
self.assertEqual(code, 501)
self.assertEqual(response, b'Syntax: MAIL FROM: <address>')
def test_mail_params_esmtp(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd(
'MAIL FROM: <anne@example.com> SIZE=10000')
self.assertEqual(code, 250)
self.assertEqual(response, b'OK')
def test_mail_from_twice(self):
with SMTP(*self.address) as client:
client.helo('example.com')
code, response = client.docmd('MAIL FROM: <anne@example.com>')
self.assertEqual(code, 250)
self.assertEqual(response, b'OK')
code, response = client.docmd('MAIL FROM: <anne@example.com>')
self.assertEqual(code, 503)
self.assertEqual(response, b'Error: nested MAIL command')
def test_mail_from_malformed(self):
with SMTP(*self.address) as client:
client.helo('example.com')
code, response = client.docmd('MAIL FROM: Anne <anne@example.com>')
self.assertEqual(code, 501)
self.assertEqual(response, b'Syntax: MAIL FROM: <address>')
def test_mail_malformed_params_esmtp(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd(
'MAIL FROM: <anne@example.com> SIZE 10000')
self.assertEqual(code, 501)
self.assertEqual(
response,
b'Syntax: MAIL FROM: <address> [SP <mail-parameters>]')
def test_mail_missing_params_esmtp(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd('MAIL FROM: <anne@example.com> SIZE')
self.assertEqual(code, 501)
self.assertEqual(
response,
b'Syntax: MAIL FROM: <address> [SP <mail-parameters>]')
def test_mail_unrecognized_params_esmtp(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd(
'MAIL FROM: <anne@example.com> FOO=BAR')
self.assertEqual(code, 555)
self.assertEqual(
response,
b'MAIL FROM parameters not recognized or not implemented')
def test_mail_params_bad_syntax_esmtp(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd(
'MAIL FROM: <anne@example.com> #$%=!@#')
self.assertEqual(code, 501)
self.assertEqual(
response,
b'Syntax: MAIL FROM: <address> [SP <mail-parameters>]')
# Test the workaround http://bugs.python.org/issue27931
@patch('email._header_value_parser.AngleAddr.addr_spec',
side_effect=IndexError, new_callable=PropertyMock)
def test_mail_fail_parse_email(self, addr_spec):
with SMTP(*self.address) as client:
client.helo('example.com')
code, response = client.docmd('MAIL FROM: <""@example.com>')
self.assertEqual(code, 501)
self.assertEqual(response, b'Syntax: MAIL FROM: <address>')
def test_rcpt_no_helo(self):
with SMTP(*self.address) as client:
code, response = client.docmd('RCPT TO: <anne@example.com>')
self.assertEqual(code, 503)
self.assertEqual(response, b'Error: send HELO first')
def test_rcpt_no_mail(self):
with SMTP(*self.address) as client:
code, response = client.helo('example.com')
self.assertEqual(code, 250)
code, response = client.docmd('RCPT TO: <anne@example.com>')
self.assertEqual(code, 503)
self.assertEqual(response, b'Error: need MAIL command')
def test_rcpt_no_arg(self):
with SMTP(*self.address) as client:
code, response = client.helo('example.com')
self.assertEqual(code, 250)
code, response = client.docmd('MAIL FROM: <anne@example.com>')
self.assertEqual(code, 250)
code, response = client.docmd('RCPT')
self.assertEqual(code, 501)
self.assertEqual(response, b'Syntax: RCPT TO: <address>')
def test_rcpt_no_to(self):
with SMTP(*self.address) as client:
code, response = client.helo('example.com')
self.assertEqual(code, 250)
code, response = client.docmd('MAIL FROM: <anne@example.com>')
self.assertEqual(code, 250)
code, response = client.docmd('RCPT <anne@example.com')
self.assertEqual(code, 501)
self.assertEqual(response, b'Syntax: RCPT TO: <address>')
def test_rcpt_no_arg_esmtp(self):
with SMTP(*self.address) as client:
code, response = client.ehlo('example.com')
self.assertEqual(code, 250)
code, response = client.docmd('MAIL FROM: <anne@example.com>')
self.assertEqual(code, 250)
code, response = client.docmd('RCPT')
self.assertEqual(code, 501)
self.assertEqual(
response,
b'Syntax: RCPT TO: <address> [SP <mail-parameters>]')
def test_rcpt_no_address(self):
with SMTP(*self.address) as client:
code, response = client.ehlo('example.com')
self.assertEqual(code, 250)
code, response = client.docmd('MAIL FROM: <anne@example.com>')
self.assertEqual(code, 250)
code, response = client.docmd('RCPT TO:')
self.assertEqual(code, 501)
self.assertEqual(
response,
b'Syntax: RCPT TO: <address> [SP <mail-parameters>]')
def test_rcpt_with_params_no_esmtp(self):
with SMTP(*self.address) as client:
code, response = client.helo('example.com')
self.assertEqual(code, 250)
code, response = client.docmd('MAIL FROM: <anne@example.com>')
self.assertEqual(code, 250)
code, response = client.docmd(
'RCPT TO: <bart@example.com> SIZE=1000')
self.assertEqual(code, 501)
self.assertEqual(response, b'Syntax: RCPT TO: <address>')
def test_rcpt_with_bad_params(self):
with SMTP(*self.address) as client:
code, response = client.ehlo('example.com')
self.assertEqual(code, 250)
code, response = client.docmd('MAIL FROM: <anne@example.com>')
self.assertEqual(code, 250)
code, response = client.docmd(
'RCPT TO: <bart@example.com> #$%=!@#')
self.assertEqual(code, 501)
self.assertEqual(
response,
b'Syntax: RCPT TO: <address> [SP <mail-parameters>]')
def test_rcpt_with_unknown_params(self):
with SMTP(*self.address) as client:
code, response = client.ehlo('example.com')
self.assertEqual(code, 250)
code, response = client.docmd('MAIL FROM: <anne@example.com>')
self.assertEqual(code, 250)
code, response = client.docmd(
'RCPT TO: <bart@example.com> FOOBAR')
self.assertEqual(code, 555)
self.assertEqual(
response,
b'RCPT TO parameters not recognized or not implemented')
# Test the workaround http://bugs.python.org/issue27931
@patch('email._header_value_parser.AngleAddr.addr_spec',
new_callable=PropertyMock)
def test_rcpt_fail_parse_email(self, addr_spec):
with SMTP(*self.address) as client:
code, response = client.ehlo('example.com')
self.assertEqual(code, 250)
code, response = client.docmd('MAIL FROM: <anne@example.com>')
self.assertEqual(code, 250)
addr_spec.side_effect = IndexError
code, response = client.docmd('RCPT TO: <""@example.com>')
self.assertEqual(code, 501)
self.assertEqual(
response,
b'Syntax: RCPT TO: <address> [SP <mail-parameters>]')
def test_rset(self):
with SMTP(*self.address) as client:
code, response = client.rset()
self.assertEqual(code, 250)
self.assertEqual(response, b'OK')
def test_rset_with_arg(self):
with SMTP(*self.address) as client:
code, response = client.docmd('RSET FOO')
self.assertEqual(code, 501)
self.assertEqual(response, b'Syntax: RSET')
def test_vrfy(self):
with SMTP(*self.address) as client:
code, response = client.docmd('VRFY <anne@example.com>')
self.assertEqual(code, 252)
self.assertEqual(
response,
b'Cannot VRFY user, but will accept message and '
b'attempt delivery'
)
def test_vrfy_no_arg(self):
with SMTP(*self.address) as client:
code, response = client.docmd('VRFY')
self.assertEqual(code, 501)
self.assertEqual(response, b'Syntax: VRFY <address>')
def test_vrfy_not_an_address(self):
with SMTP(*self.address) as client:
code, response = client.docmd('VRFY @@')
self.assertEqual(code, 502)
self.assertEqual(response, b'Could not VRFY @@')
def test_data_no_helo(self):
with SMTP(*self.address) as client:
code, response = client.docmd('DATA')
self.assertEqual(code, 503)
self.assertEqual(response, b'Error: send HELO first')
def test_data_no_rcpt(self):
with SMTP(*self.address) as client:
code, response = client.helo('example.com')
self.assertEqual(code, 250)
code, response = client.docmd('DATA')
self.assertEqual(code, 503)
self.assertEqual(response, b'Error: need RCPT command')
def test_data_invalid_params(self):
with SMTP(*self.address) as client:
code, response = client.helo('example.com')
self.assertEqual(code, 250)
code, response = client.docmd('MAIL FROM: <anne@example.com>')
self.assertEqual(code, 250)
code, response = client.docmd('RCPT TO: <anne@example.com>')
self.assertEqual(code, 250)
code, response = client.docmd('DATA FOOBAR')
self.assertEqual(code, 501)
self.assertEqual(response, b'Syntax: DATA')
def test_empty_command(self):
with SMTP(*self.address) as client:
code, response = client.docmd('')
self.assertEqual(code, 500)
self.assertEqual(response, b'Error: bad syntax')
def test_too_long_command(self):
with SMTP(*self.address) as client:
code, response = client.docmd('a' * 513)
self.assertEqual(code, 500)
self.assertEqual(response, b'Error: line too long')
def test_unknown_command(self):
with SMTP(*self.address) as client:
code, response = client.docmd('FOOBAR')
self.assertEqual(code, 500)
self.assertEqual(
response,
b'Error: command "FOOBAR" not recognized')
def test_auth_no_ehlo(self):
with SMTP(*self.address) as client:
code, response = client.docmd('AUTH')
self.assertEqual(code, 503)
self.assertEqual(response, b'Error: send EHLO first')
def test_auth_helo(self):
with SMTP(*self.address) as client:
client.helo('example.com')
code, response = client.docmd('AUTH')
self.assertEqual(code, 500)
self.assertEqual(response, b"Error: command 'AUTH' not recognized")
def test_auth_too_many_values(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd('AUTH PLAIN NONE NONE')
self.assertEqual(code, 501)
self.assertEqual(response, b'Too many values')
def test_auth_not_enough_values(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd('AUTH')
self.assertEqual(code, 501)
self.assertEqual(response, b'Not enough value')
def test_auth_not_supported_methods(self):
for method in ('GSSAPI', 'DIGEST-MD5', 'MD5', 'CRAM-MD5'):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd('AUTH ' + method)
self.assertEqual(code, 504)
self.assertEqual(
response, b'5.5.4 Unrecognized authentication type')
def test_auth_already_authenticated(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd(
'AUTH PLAIN ' +
b64encode(b'\0goodlogin\0goodpasswd').decode()
)
assert_auth_success(self, code, response)
code, response = client.docmd('AUTH')
self.assertEqual(code, 503)
self.assertEqual(response, b'Already authenticated')
def test_auth_bad_base64_encoding(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd('AUTH PLAIN not-b64')
self.assertEqual(code, 501)
self.assertEqual(response, b"5.5.2 Can't decode base64")
def test_auth_bad_base64_length(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd(
'AUTH PLAIN ' + b64encode(b'\0onlylogin').decode())
self.assertEqual(code, 501)
self.assertEqual(response, b"5.5.2 Can't split auth value")
def test_auth_bad_credentials(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd(
'AUTH PLAIN ' +
b64encode(b'\0badlogin\0badpasswd').decode()
)
assert_auth_invalid(self, code, response)
def test_auth_two_steps_good_credentials(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd('AUTH PLAIN')
self.assertEqual(code, 334)
self.assertEqual(response, b'')
code, response = client.docmd(
b64encode(b'\0goodlogin\0goodpasswd').decode()
)
assert_auth_success(self, code, response)
def test_auth_two_steps_bad_credentials(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd('AUTH PLAIN')
self.assertEqual(code, 334)
self.assertEqual(response, b'')
code, response = client.docmd(
b64encode(b'\0badlogin\0badpasswd').decode()
)
assert_auth_invalid(self, code, response)
def test_auth_two_steps_abort(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd('AUTH PLAIN')
self.assertEqual(code, 334)
self.assertEqual(response, b'')
code, response = client.docmd('*')
self.assertEqual(code, 501)
self.assertEqual(response, b'Auth aborted')
def test_auth_two_steps_bad_base64_encoding(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd('AUTH PLAIN')
self.assertEqual(code, 334)
code, response = client.docmd("ab@%")
self.assertEqual(code, 501)
self.assertEqual(response, b"5.5.2 Can't decode base64")
def test_auth_good_credentials(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd(
'AUTH PLAIN ' +
b64encode(b'\0goodlogin\0goodpasswd').decode()
)
assert_auth_success(self, code, response)
def test_auth_no_credentials(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd('AUTH PLAIN =')
assert_auth_invalid(self, code, response)
def test_auth_two_steps_no_credentials(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd('AUTH PLAIN')
self.assertEqual(code, 334)
self.assertEqual(response, b'')
code, response = client.docmd('=')
assert_auth_invalid(self, code, response)
def test_auth_login_multisteps_no_credentials(self):
with SMTP(*self.address) as client:
client.ehlo("example.com")
code, response = client.docmd("AUTH LOGIN")
self.assertEqual(code, 334)
self.assertEqual(response, b"VXNlciBOYW1lAA==")
code, response = client.docmd('=')
self.assertEqual(code, 334)
self.assertEqual(response, b"UGFzc3dvcmQA")
code, response = client.docmd('=')
assert_auth_invalid(self, code, response)
class TestSMTPAuth(unittest.TestCase):
def setUp(self):
self.handler = PeekerHandler()
controller = DecodingControllerPeekAuth(
self.handler, server_kwargs={"auth_exclude_mechanism": ["DONT"]}
)
controller.start()
self.addCleanup(controller.stop)
self.address = (controller.hostname, controller.port)
def test_ehlo(self):
with SMTP(*self.address) as client:
code, response = client.ehlo('example.com')
self.assertEqual(code, 250)
lines = response.splitlines()
expecteds = (
bytes(socket.getfqdn(), 'utf-8'),
b'SIZE 33554432',
b'SMTPUTF8',
b'AUTH LOGIN NULL PLAIN',
b'HELP',
)
for actual, expected in zip(lines, expecteds):
self.assertEqual(actual, expected)
def test_auth_plain_null_credential(self):
with SMTP(*self.address) as client:
client.ehlo("example.com")
code, response = client.docmd("AUTH PLAIN")
self.assertEqual(code, 334)
self.assertEqual(response, b"")
code, response = client.docmd('=')
assert_auth_success(self, code, response)
self.assertEqual(auth_peeker.login, None)
self.assertEqual(auth_peeker.password, None)
code, response = client.mail("alice@example.com")
self.assertEqual(self.handler.session.login_data, b"")
def test_auth_login_null_credential(self):
with SMTP(*self.address) as client:
client.ehlo("example.com")
code, response = client.docmd("AUTH LOGIN")
self.assertEqual(code, 334)
self.assertEqual(response, b"VXNlciBOYW1lAA==")
code, response = client.docmd('=')
self.assertEqual(code, 334)
self.assertEqual(response, b"UGFzc3dvcmQA")
code, response = client.docmd('=')
assert_auth_success(self, code, response)
self.assertEqual(auth_peeker.login, None)
self.assertEqual(auth_peeker.password, None)
code, response = client.mail("alice@example.com")
self.assertEqual(self.handler.session.login_data, b"")
def test_auth_login_abort_login(self):
with SMTP(*self.address) as client:
client.ehlo("example.com")
code, response = client.docmd("AUTH LOGIN")
self.assertEqual(code, 334)
self.assertEqual(response, b"VXNlciBOYW1lAA==")
code, response = client.docmd('*')
self.assertEqual(code, 501)
self.assertEqual(response, b"Auth aborted")
def test_auth_login_abort_password(self):
auth_peeker.return_val = False
with SMTP(*self.address) as client:
client.ehlo("example.com")
code, response = client.docmd("AUTH LOGIN")
self.assertEqual(code, 334)
self.assertEqual(response, b"VXNlciBOYW1lAA==")
code, response = client.docmd('=')
self.assertEqual(code, 334)
self.assertEqual(response, b"UGFzc3dvcmQA")
code, response = client.docmd('*')
self.assertEqual(code, 501)
self.assertEqual(response, b"Auth aborted")
def test_auth_custom_mechanism(self):
auth_peeker.return_val = False
with SMTP(*self.address) as client:
client.ehlo("example.com")
code, response = client.docmd("AUTH NULL")
assert_auth_success(self, code, response)
def test_auth_disabled_mechanism(self):
with SMTP(*self.address) as client:
client.ehlo("example.com")
code, response = client.docmd("AUTH DONT")
self.assertEqual(code, 504)
self.assertEqual(response,
b"5.5.4 Unrecognized authentication type")
class TestRequiredAuthentication(unittest.TestCase):
def setUp(self):
controller = RequiredAuthDecodingController(Sink)
controller.start()
self.addCleanup(controller.stop)
self.address = (controller.hostname, controller.port)
def test_help_unauthenticated(self):
with SMTP(*self.address) as client:
code, response = client.docmd('HELP')
assert_auth_required(self, code, response)
def test_vrfy_unauthenticated(self):
with SMTP(*self.address) as client:
code, response = client.docmd('VRFY <anne@example.com>')
assert_auth_required(self, code, response)
def test_mail_unauthenticated(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd('MAIL FROM: <anne@example.com>')
assert_auth_required(self, code, response)
def test_rcpt_unauthenticated(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd('RCPT TO: <anne@example.com>')
assert_auth_required(self, code, response)
def test_data_unauthenticated(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd('DATA')
assert_auth_required(self, code, response)
def test_help_authenticated(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd(
'AUTH PLAIN ' +
b64encode(b'\0goodlogin\0goodpasswd').decode()
)
assert_auth_success(self, code, response)
code, response = client.docmd('HELP')
self.assertEqual(code, 250)
self.assertEqual(response, SUPPORTED_COMMANDS_NOTLS)
def test_vrfy_authenticated(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd(
'AUTH PLAIN ' +
b64encode(b'\0goodlogin\0goodpasswd').decode()
)
assert_auth_success(self, 235, response)
code, response = client.docmd('VRFY <anne@example.com>')
self.assertEqual(code, 252)
self.assertEqual(
response,
b'Cannot VRFY user, but will accept message and '
b'attempt delivery'
)
def test_mail_authenticated(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd(
'AUTH PLAIN ' +
b64encode(b'\0goodlogin\0goodpasswd').decode()
)
assert_auth_success(self, code, response)
code, response = client.docmd('MAIL FROM: <anne@example.com>')
self.assertEqual(code, 250)
self.assertEqual(response, b'OK')
def test_rcpt_authenticated(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd(
'AUTH PLAIN ' +
b64encode(b'\0goodlogin\0goodpasswd').decode()
)
assert_auth_success(self, code, response)
code, response = client.docmd('RCPT TO: <anne@example.com>')
self.assertEqual(code, 503)
self.assertEqual(response, b'Error: need MAIL command')
def test_data_authenticated(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd('DATA')
assert_auth_required(self, code, response)
class TestResetCommands(unittest.TestCase):
"""Test that sender and recipients are reset on RSET, HELO, and EHLO.
The tests below issue each command twice with different addresses and
verify that mail_from and rcpt_tos have been replacecd.
"""
expected_envelope_data = [
# Pre-RSET/HELO/EHLO envelope data.
dict(
mail_from='anne@example.com',
rcpt_tos=['bart@example.com', 'cate@example.com'],
),
dict(
mail_from='dave@example.com',
rcpt_tos=['elle@example.com', 'fred@example.com'],
),
]
def setUp(self):
self._handler = StoreEnvelopeOnVRFYHandler()
self._controller = DecodingController(self._handler)
self._controller.start()
self._address = (self._controller.hostname, self._controller.port)
self.addCleanup(self._controller.stop)
def _send_envelope_data(self, client, mail_from, rcpt_tos):
client.mail(mail_from)
for rcpt in rcpt_tos:
client.rcpt(rcpt)
def test_helo(self):
with SMTP(*self._address) as client:
# Each time through the loop, the HELO will reset the envelope.
for data in self.expected_envelope_data:
client.helo('example.com')
# Save the envelope in the handler.
client.vrfy('zuzu@example.com')
self.assertIsNone(self._handler.envelope.mail_from)
self.assertEqual(len(self._handler.envelope.rcpt_tos), 0)
self._send_envelope_data(client, **data)
client.vrfy('zuzu@example.com')
self.assertEqual(
self._handler.envelope.mail_from, data['mail_from'])
self.assertEqual(
self._handler.envelope.rcpt_tos, data['rcpt_tos'])
def test_ehlo(self):
with SMTP(*self._address) as client:
# Each time through the loop, the EHLO will reset the envelope.
for data in self.expected_envelope_data:
client.ehlo('example.com')
# Save the envelope in the handler.
client.vrfy('zuzu@example.com')
self.assertIsNone(self._handler.envelope.mail_from)
self.assertEqual(len(self._handler.envelope.rcpt_tos), 0)
self._send_envelope_data(client, **data)
client.vrfy('zuzu@example.com')
self.assertEqual(
self._handler.envelope.mail_from, data['mail_from'])
self.assertEqual(
self._handler.envelope.rcpt_tos, data['rcpt_tos'])
def test_rset(self):
with SMTP(*self._address) as client:
client.helo('example.com')
# Each time through the loop, the RSET will reset the envelope.
for data in self.expected_envelope_data:
self._send_envelope_data(client, **data)
# Save the envelope in the handler.
client.vrfy('zuzu@example.com')
self.assertEqual(
self._handler.envelope.mail_from, data['mail_from'])
self.assertEqual(
self._handler.envelope.rcpt_tos, data['rcpt_tos'])
# Reset the envelope explicitly.
client.rset()
client.vrfy('zuzu@example.com')
self.assertIsNone(self._handler.envelope.mail_from)
self.assertEqual(len(self._handler.envelope.rcpt_tos), 0)
class TestSMTPWithController(unittest.TestCase):
def test_mail_with_size_too_large(self):
controller = SizedController(Sink(), 9999)
controller.start()
self.addCleanup(controller.stop)
with SMTP(controller.hostname, controller.port) as client:
client.ehlo('example.com')
code, response = client.docmd(
'MAIL FROM: <anne@example.com> SIZE=10000')
self.assertEqual(code, 552)
self.assertEqual(
response,
b'Error: message size exceeds fixed maximum message size')
def test_mail_with_compatible_smtputf8(self):
handler = ReceivingHandler()
controller = Controller(handler)
controller.start()
self.addCleanup(controller.stop)
recipient = 'bart\xCB@example.com'
sender = 'anne\xCB@example.com'
with SMTP(controller.hostname, controller.port) as client:
client.ehlo('example.com')
client.send(bytes(
'MAIL FROM: <' + sender + '> SMTPUTF8\r\n',
encoding='utf-8'))
code, response = client.getreply()
self.assertEqual(code, 250)
self.assertEqual(response, b'OK')
client.send(bytes(
'RCPT TO: <' + recipient + '>\r\n',
encoding='utf-8'))
code, response = client.getreply()
self.assertEqual(code, 250)
self.assertEqual(response, b'OK')
code, response = client.data('')
self.assertEqual(code, 250)
self.assertEqual(response, b'OK')
self.assertEqual(handler.box[0].rcpt_tos[0], recipient)
self.assertEqual(handler.box[0].mail_from, sender)
def test_mail_with_unrequited_smtputf8(self):
controller = Controller(Sink())
controller.start()
self.addCleanup(controller.stop)
with SMTP(controller.hostname, controller.port) as client:
client.ehlo('example.com')
code, response = client.docmd('MAIL FROM: <anne@example.com>')
self.assertEqual(code, 250)
self.assertEqual(response, b'OK')
def test_mail_with_incompatible_smtputf8(self):
controller = Controller(Sink())
controller.start()
self.addCleanup(controller.stop)
with SMTP(controller.hostname, controller.port) as client:
client.ehlo('example.com')
code, response = client.docmd(
'MAIL FROM: <anne@example.com> SMTPUTF8=YES')
self.assertEqual(code, 501)
self.assertEqual(response, b'Error: SMTPUTF8 takes no arguments')
def test_mail_invalid_body(self):
controller = Controller(Sink())
controller.start()
self.addCleanup(controller.stop)
with SMTP(controller.hostname, controller.port) as client:
client.ehlo('example.com')
code, response = client.docmd(
'MAIL FROM: <anne@example.com> BODY 9BIT')
self.assertEqual(code, 501)
self.assertEqual(response,
b'Error: BODY can only be one of 7BIT, 8BITMIME')
def test_esmtp_no_size_limit(self):
controller = SizedController(Sink(), size=None)
controller.start()
self.addCleanup(controller.stop)
with SMTP(controller.hostname, controller.port) as client:
code, response = client.ehlo('example.com')
self.assertEqual(code, 250)
for line in response.splitlines():
self.assertNotEqual(line[:4], b'SIZE')
def test_process_message_error(self):
controller = Controller(ErroringHandler())
controller.start()
self.addCleanup(controller.stop)
with SMTP(controller.hostname, controller.port) as client:
code, response = client.ehlo('example.com')
self.assertEqual(code, 250)
with self.assertRaises(SMTPDataError) as cm:
client.sendmail('anne@example.com', ['bart@example.com'], """\
From: anne@example.com
To: bart@example.com
Subject: A test
Testing
""")
self.assertEqual(cm.exception.smtp_code, 499)
self.assertEqual(cm.exception.smtp_error,
b'Could not accept the message')
def test_too_long_message_body(self):
controller = SizedController(Sink(), size=100)
controller.start()
self.addCleanup(controller.stop)
with SMTP(controller.hostname, controller.port) as client:
client.helo('example.com')
mail = '\r\n'.join(['z' * 20] * 10)
with self.assertRaises(SMTPResponseException) as cm:
client.sendmail('anne@example.com', ['bart@example.com'], mail)
self.assertEqual(cm.exception.smtp_code, 552)
self.assertEqual(cm.exception.smtp_error,
b'Error: Too much mail data')
def test_dots_escaped(self):
handler = ReceivingHandler()
controller = DecodingController(handler)
controller.start()
self.addCleanup(controller.stop)
with SMTP(controller.hostname, controller.port) as client:
client.helo('example.com')
mail = CRLF.join(['Test', '.', 'mail'])
client.sendmail('anne@example.com', ['bart@example.com'], mail)
self.assertEqual(len(handler.box), 1)
self.assertEqual(handler.box[0].content, 'Test\r\n.\r\nmail\r\n')
def test_unexpected_errors(self):
handler = ErroringHandler()
controller = ErrorController(handler)
controller.start()
self.addCleanup(controller.stop)
with ExitStack() as resources:
# Suppress logging to the console during the tests. Depending on
# timing, the exception may or may not be logged.
resources.enter_context(patch('aiosmtpd.smtp.log.exception'))
client = resources.enter_context(
SMTP(controller.hostname, controller.port))
code, response = client.helo('example.com')
self.assertEqual(code, 500)
self.assertEqual(response, b'ErroringHandler handling error')
self.assertIsInstance(handler.error, ValueError)
def test_unexpected_errors_unhandled(self):
handler = Sink()
handler.error = None
controller = ErrorController(handler)
controller.start()
self.addCleanup(controller.stop)
with ExitStack() as resources:
# Suppress logging to the console during the tests. Depending on
# timing, the exception may or may not be logged.
resources.enter_context(patch('aiosmtpd.smtp.log.exception'))
client = resources.enter_context(
SMTP(controller.hostname, controller.port))
code, response = client.helo('example.com')
self.assertEqual(code, 500)
self.assertEqual(response, b'Error: (ValueError) test')
# handler.error did not change because the handler does not have a
# handle_exception() method.
self.assertIsNone(handler.error)
def test_unexpected_errors_custom_response(self):
handler = ErroringHandlerCustomResponse()
controller = ErrorController(handler)
controller.start()
self.addCleanup(controller.stop)
with ExitStack() as resources:
# Suppress logging to the console during the tests. Depending on
# timing, the exception may or may not be logged.
resources.enter_context(patch('aiosmtpd.smtp.log.exception'))
client = resources.enter_context(
SMTP(controller.hostname, controller.port))
code, response = client.helo('example.com')
self.assertEqual(code, 451)
self.assertEqual(response, b'Temporary error: (ValueError) test')
self.assertIsInstance(handler.error, ValueError)
def test_exception_handler_exception(self):
handler = ErroringErrorHandler()
controller = ErrorController(handler)
controller.start()
self.addCleanup(controller.stop)
with ExitStack() as resources:
# Suppress logging to the console during the tests. Depending on
# timing, the exception may or may not be logged.
resources.enter_context(patch('aiosmtpd.smtp.log.exception'))
client = resources.enter_context(
SMTP(controller.hostname, controller.port))
code, response = client.helo('example.com')
self.assertEqual(code, 500)
self.assertEqual(response,
b'Error: (ValueError) ErroringErrorHandler test')
self.assertIsInstance(handler.error, ValueError)
def test_exception_handler_undescribable(self):
handler = UndescribableErrorHandler()
controller = ErrorController(handler)
controller.start()
self.addCleanup(controller.stop)
with ExitStack() as resources:
# Suppress logging to the console during the tests. Depending on
# timing, the exception may or may not be logged.
resources.enter_context(patch('aiosmtpd.smtp.log.exception'))
client = resources.enter_context(
SMTP(controller.hostname, controller.port))
code, response = client.helo('example.com')
self.assertEqual(code, 500)
self.assertEqual(response, b'Error: Cannot describe error')
self.assertIsInstance(handler.error, ValueError)
def test_bad_encodings(self):
handler = ReceivingHandler()
controller = DecodingController(handler)
controller.start()
self.addCleanup(controller.stop)
with SMTP(controller.hostname, controller.port) as client:
client.helo('example.com')
mail_from = b'anne\xFF@example.com'
mail_to = b'bart\xFF@example.com'
client.ehlo('test')
client.send(b'MAIL FROM:' + mail_from + b'\r\n')
code, response = client.getreply()
self.assertEqual(code, 250)
client.send(b'RCPT TO:' + mail_to + b'\r\n')
code, response = client.getreply()
self.assertEqual(code, 250)
client.data('Test mail')
self.assertEqual(len(handler.box), 1)
envelope = handler.box[0]
mail_from2 = envelope.mail_from.encode(
'utf-8', errors='surrogateescape')
self.assertEqual(mail_from2, mail_from)
mail_to2 = envelope.rcpt_tos[0].encode(
'utf-8', errors='surrogateescape')
self.assertEqual(mail_to2, mail_to)
class TestCustomizations(unittest.TestCase):
def test_custom_hostname(self):
controller = CustomHostnameController(Sink())
controller.start()
self.addCleanup(controller.stop)
with SMTP(controller.hostname, controller.port) as client:
code, response = client.helo('example.com')
self.assertEqual(code, 250)
self.assertEqual(response, bytes('custom.localhost', 'utf-8'))
def test_custom_greeting(self):
controller = CustomIdentController(Sink())
controller.start()
self.addCleanup(controller.stop)
with SMTP() as client:
code, msg = client.connect(controller.hostname, controller.port)
self.assertEqual(code, 220)
# The hostname prefix is unpredictable.
self.assertEqual(msg[-22:], b'Identifying SMTP v2112')
def test_default_greeting(self):
controller = Controller(Sink())
controller.start()
self.addCleanup(controller.stop)
with SMTP() as client:
code, msg = client.connect(controller.hostname, controller.port)
self.assertEqual(code, 220)
# The hostname prefix is unpredictable.
self.assertEqual(msg[-len(GREETING):], bytes(GREETING, 'utf-8'))
def test_mail_invalid_body_param(self):
controller = NoDecodeController(Sink())
controller.start()
self.addCleanup(controller.stop)
with SMTP() as client:
code, msg = client.connect(controller.hostname, controller.port)
client.ehlo('example.com')
code, response = client.docmd(
'MAIL FROM: <anne@example.com> BODY=FOOBAR')
self.assertEqual(code, 501)
self.assertEqual(
response,
b'Error: BODY can only be one of 7BIT, 8BITMIME')
class TestClientCrash(unittest.TestCase):
# GH#62 - if the client crashes during the SMTP dialog we want to make
# sure we don't get tracebacks where we call readline().
def setUp(self):
controller = Controller(Sink)
controller.start()
self.addCleanup(controller.stop)
self.address = (controller.hostname, controller.port)
def test_connection_reset_during_DATA(self):
with SMTP(*self.address) as client:
client.helo('example.com')
client.docmd('MAIL FROM: <anne@example.com>')
client.docmd('RCPT TO: <bart@example.com>')
client.docmd('DATA')
# Start sending the DATA but reset the connection before that
# completes, i.e. before the .\r\n
client.send(b'From: <anne@example.com>')
reset_connection(client)
# The connection should be disconnected, so trying to do another
# command from here will give us an exception. In GH#62, the
# server just hung.
self.assertRaises(SMTPServerDisconnected, client.noop)
def test_connection_reset_during_command(self):
with SMTP(*self.address) as client:
client.helo('example.com')
# Start sending a command but reset the connection before that
# completes, i.e. before the \r\n
client.send('MAIL FROM: <anne')
reset_connection(client)
# The connection should be disconnected, so trying to do another
# command from here will give us an exception. In GH#62, the
# server just hung.
self.assertRaises(SMTPServerDisconnected, client.noop)
def test_close_in_command(self):
with SMTP(*self.address) as client:
# Don't include the CRLF.
client.send('FOO')
client.close()
def test_close_in_data(self):
with SMTP(*self.address) as client:
code, response = client.helo('example.com')
self.assertEqual(code, 250)
code, response = client.docmd('MAIL FROM: <anne@example.com>')
self.assertEqual(code, 250)
code, response = client.docmd('RCPT TO: <bart@example.com>')
self.assertEqual(code, 250)
code, response = client.docmd('DATA')
self.assertEqual(code, 354)
# Don't include the CRLF.
client.send('FOO')
client.close()
class TestStrictASCII(unittest.TestCase):
def setUp(self):
controller = StrictASCIIController(Sink())
controller.start()
self.addCleanup(controller.stop)
self.address = (controller.hostname, controller.port)
def test_ehlo(self):
with SMTP(*self.address) as client:
code, response = client.ehlo('example.com')
self.assertEqual(code, 250)
lines = response.splitlines()
self.assertNotIn(b'SMTPUTF8', lines)
def test_bad_encoded_param(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
client.send(b'MAIL FROM: <anne\xFF@example.com>\r\n')
code, response = client.getreply()
self.assertEqual(code, 500)
self.assertIn(b'Error: strict ASCII mode', response)
def test_mail_param(self):
with SMTP(*self.address) as client:
client.ehlo('example.com')
code, response = client.docmd(
'MAIL FROM: <anne@example.com> SMTPUTF8')
self.assertEqual(code, 501)
self.assertEqual(response, b'Error: SMTPUTF8 disabled')
def test_data(self):
with SMTP(*self.address) as client:
code, response = client.ehlo('example.com')
self.assertEqual(code, 250)
with self.assertRaises(SMTPDataError) as cm:
client.sendmail('anne@example.com', ['bart@example.com'], b"""\
From: anne@example.com
To: bart@example.com
Subject: A test
Testing\xFF
""")
self.assertEqual(cm.exception.smtp_code, 500)
self.assertIn(b'Error: strict ASCII mode', cm.exception.smtp_error)
class TestSleepingHandler(unittest.TestCase):
def setUp(self):
controller = NoDecodeController(SleepingHeloHandler())
controller.start()
self.addCleanup(controller.stop)
self.address = (controller.hostname, controller.port)
def test_close_after_helo(self):
with SMTP(*self.address) as client:
client.send('HELO example.com\r\n')
client.sock.shutdown(socket.SHUT_WR)
self.assertRaises(SMTPServerDisconnected, client.getreply)
class TestTimeout(unittest.TestCase):
def setUp(self):
controller = TimeoutController(Sink)
controller.start()
self.addCleanup(controller.stop)
self.address = (controller.hostname, controller.port)
def test_timeout(self):
with SMTP(*self.address) as client:
code, response = client.ehlo('example.com')
time.sleep(0.1 + TimeoutController.Delay)
self.assertRaises(SMTPServerDisconnected, client.getreply)
|