summaryrefslogtreecommitdiff
path: root/Mailman/testing/emailbase.py
diff options
context:
space:
mode:
authorbwarsaw2006-05-18 13:04:26 +0000
committerbwarsaw2006-05-18 13:04:26 +0000
commitcc6f8eab8283680546216564cfffbb5ded5d52fd (patch)
tree19f685b4ac1e9a4fa4e1b4258d351fa55978e2d8 /Mailman/testing/emailbase.py
parentfaa8b0fa87ab3bf276154f9a932055a3af3321ff (diff)
downloadmailman-cc6f8eab8283680546216564cfffbb5ded5d52fd.tar.gz
mailman-cc6f8eab8283680546216564cfffbb5ded5d52fd.tar.zst
mailman-cc6f8eab8283680546216564cfffbb5ded5d52fd.zip
Diffstat (limited to 'Mailman/testing/emailbase.py')
-rw-r--r--Mailman/testing/emailbase.py77
1 files changed, 77 insertions, 0 deletions
diff --git a/Mailman/testing/emailbase.py b/Mailman/testing/emailbase.py
new file mode 100644
index 000000000..115ea6839
--- /dev/null
+++ b/Mailman/testing/emailbase.py
@@ -0,0 +1,77 @@
+# Copyright (C) 2001-2006 by the Free Software Foundation, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+# USA.
+
+"""Base class for tests that email things."""
+
+import smtpd
+import socket
+import asyncore
+import subprocess
+
+from Mailman import mm_cfg
+from Mailman.testing.base import TestBase
+
+
+
+MSGTEXT = None
+
+class OneShotChannel(smtpd.SMTPChannel):
+ def smtp_QUIT(self, arg):
+ smtpd.SMTPChannel.smtp_QUIT(self, arg)
+ raise asyncore.ExitNow
+
+
+class SinkServer(smtpd.SMTPServer):
+ def handle_accept(self):
+ conn, addr = self.accept()
+ channel = OneShotChannel(self, conn, addr)
+
+ def process_message(self, peer, mailfrom, rcpttos, data):
+ global MSGTEXT
+ MSGTEXT = data
+
+
+
+class EmailBase(TestBase):
+ def setUp(self):
+ TestBase.setUp(self)
+ # Find an unused non-root requiring port to listen on
+ oldport = mm_cfg.SMTPPORT
+ mm_cfg.SMTPPORT = port = 10825
+ # Second argument is ignored.
+ self._server = SinkServer(('localhost', port), None)
+
+ def tearDown(self):
+ self._server.close()
+ TestBase.tearDown(self)
+
+ def _readmsg(self):
+ global MSGTEXT
+ # Save and unlock the list so that the qrunner process can open it and
+ # lock it if necessary. We'll re-lock the list in our finally clause
+ # since that if an invariant of the test harness.
+ self._mlist.Unlock()
+ try:
+ try:
+ # timeout is in milliseconds, see asyncore.py poll3()
+ asyncore.loop(timeout=30.0)
+ MSGTEXT = None
+ except asyncore.ExitNow:
+ pass
+ return MSGTEXT
+ finally:
+ self._mlist.Lock()