Dlaczego nie uruchomić własnego, naprawdę prostego serwera SMTP, dziedzicząc po smtpd.SMTPServer
i threading.Thread
:
class TestingSMTPServer(smtpd.SMTPServer, threading.Thread):
def __init__(self, port=25):
smtpd.SMTPServer.__init__(
self,
('localhost', port),
('localhost', port),
decode_data=False
)
threading.Thread.__init__(self)
def process_message(self, peer, mailfrom, rcpttos, data, **kwargs):
self.received_peer = peer
self.received_mailfrom = mailfrom
self.received_rcpttos = rcpttos
self.received_data = data
def run(self):
asyncore.loop()
komunikat_procesu jest wywoływany za każdym razem, gdy serwer SMTP otrzyma żądanie poczty, możesz tam robić, co chcesz.
W kodzie testowym zrób coś takiego:
smtp_server = TestingSMTPServer()
smtp_server.start()
do_thing_that_would_send_a_mail()
smtp_server.close()
self.assertIn(b'hello', smtp_server.received_data)
Wystarczy pamiętać, aby dzwoniąc do końca pętli asyncore (zatrzymać serwer ze słuchania).close()
asyncore.dispatcher
smtp_server.close()