क्यों नहीं अपने खुद के सरल SMTP सर्वर को इनहेरिट से शुरू करें smtpd.SMTPServer
और 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()
जब भी आपके SMTP सर्वर को एक मेल रिक्वेस्ट मिलती है, आपको process_message कहा जाता है, आप जो चाहें कर सकते हैं।
परीक्षण कोड में, कुछ इस तरह से करें:
smtp_server = TestingSMTPServer()
smtp_server.start()
do_thing_that_would_send_a_mail()
smtp_server.close()
self.assertIn(b'hello', smtp_server.received_data)
बस याद फोन करके asyncore पाश (सुनने से सर्वर बंद) समाप्त करने के लिए।close()
asyncore.dispatcher
smtp_server.close()