Perché non avviare il tuo server SMTP davvero semplice ereditando da smtpd.SMTPServer
e 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()
process_message viene chiamato ogni volta che il tuo server SMTP riceve una richiesta di posta, puoi fare quello che vuoi lì.
Nel codice di test, fai qualcosa del genere:
smtp_server = TestingSMTPServer()
smtp_server.start()
do_thing_that_would_send_a_mail()
smtp_server.close()
self.assertIn(b'hello', smtp_server.received_data)
Basta ricordarsi close()
della asyncore.dispatcher
chiamando smtp_server.close()
per terminare il ciclo asyncore (arrestare il server da ascolto).