summaryrefslogtreecommitdiff
path: root/src/mailman/app
diff options
context:
space:
mode:
authorBarry Warsaw2011-08-22 17:21:51 -0400
committerBarry Warsaw2011-08-22 17:21:51 -0400
commitd53d2278510ad2022177391659781a4b6cf1b3ab (patch)
tree48ad9ef9ffcddb5c9dbfe9c2b85ddc3543f80e76 /src/mailman/app
parent545735d6dc0efb76b88f3f0634966f97d833dc41 (diff)
downloadmailman-d53d2278510ad2022177391659781a4b6cf1b3ab.tar.gz
mailman-d53d2278510ad2022177391659781a4b6cf1b3ab.tar.zst
mailman-d53d2278510ad2022177391659781a4b6cf1b3ab.zip
* Moderating a message with Action.accept now sends the message. (LP: #827697)
Also: * Use utilities.datetime.now() so that moderation related dates are predictable during the test suite. * When a message is accepted, drop it in the pipeline queue. The above bug was caused by the message going in the incoming queue, and then being re-moderated. * Expose mailman.bin.master.Loop in __all__. * Add some helpful debug logging.
Diffstat (limited to 'src/mailman/app')
-rw-r--r--src/mailman/app/moderator.py13
-rw-r--r--src/mailman/app/tests/test_moderation.py106
2 files changed, 114 insertions, 5 deletions
diff --git a/src/mailman/app/moderator.py b/src/mailman/app/moderator.py
index 0ba6f492a..d2c6600ad 100644
--- a/src/mailman/app/moderator.py
+++ b/src/mailman/app/moderator.py
@@ -30,9 +30,10 @@ __all__ = [
'hold_unsubscription',
]
+
+import time
import logging
-from datetime import datetime
from email.utils import formataddr, formatdate, getaddresses, make_msgid
from zope.component import getUtility
@@ -49,6 +50,7 @@ from mailman.interfaces.member import (
AlreadySubscribedError, DeliveryMode, NotAMemberError)
from mailman.interfaces.messages import IMessageStore
from mailman.interfaces.requests import IRequests, RequestType
+from mailman.utilities.datetime import now
from mailman.utilities.i18n import make
@@ -96,7 +98,7 @@ def hold_message(mlist, msg, msgdata=None, reason=None):
msgdata['_mod_sender'] = msg.sender
msgdata['_mod_subject'] = msg.get('subject', _('(no subject)'))
msgdata['_mod_reason'] = reason
- msgdata['_mod_hold_date'] = datetime.now().isoformat()
+ msgdata['_mod_hold_date'] = now().isoformat()
# Now hold this request. We'll use the message_id as the key.
requestsdb = getUtility(IRequests).get_list_requests(mlist)
request_id = requestsdb.hold_request(
@@ -146,12 +148,13 @@ def handle_message(mlist, id, action,
# Queue the file for delivery. Trying to deliver the message directly
# here can lead to a huge delay in web turnaround. Log the moderation
# and add a header.
- msg['X-Mailman-Approved-At'] = formatdate(localtime=True)
+ msg['X-Mailman-Approved-At'] = formatdate(
+ time.mktime(now().timetuple()), localtime=True)
vlog.info('held message approved, message-id: %s',
msg.get('message-id', 'n/a'))
# Stick the message back in the incoming queue for further
# processing.
- config.switchboards['in'].enqueue(msg, _metadata=msgdata)
+ config.switchboards['pipeline'].enqueue(msg, _metadata=msgdata)
else:
raise AssertionError('Unexpected action: {0}'.format(action))
# Forward the message.
@@ -195,7 +198,7 @@ def handle_message(mlist, id, action,
def hold_subscription(mlist, address, realname, password, mode, language):
- data = dict(when=datetime.now().isoformat(),
+ data = dict(when=now().isoformat(),
address=address,
realname=realname,
password=password,
diff --git a/src/mailman/app/tests/test_moderation.py b/src/mailman/app/tests/test_moderation.py
new file mode 100644
index 000000000..59e9f3643
--- /dev/null
+++ b/src/mailman/app/tests/test_moderation.py
@@ -0,0 +1,106 @@
+# Copyright (C) 2011 by the Free Software Foundation, Inc.
+#
+# This file is part of GNU Mailman.
+#
+# GNU Mailman 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 3 of the License, or (at your option)
+# any later version.
+#
+# GNU Mailman 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
+# GNU Mailman. If not, see <http://www.gnu.org/licenses/>.
+
+"""Moderation tests."""
+
+from __future__ import absolute_import, unicode_literals
+
+__metaclass__ = type
+__all__ = [
+ 'test_suite',
+ ]
+
+
+import unittest
+
+from mailman.app.lifecycle import create_list
+from mailman.app.moderator import handle_message, hold_message
+from mailman.interfaces.action import Action
+from mailman.runners.incoming import IncomingRunner
+from mailman.runners.outgoing import OutgoingRunner
+from mailman.runners.pipeline import PipelineRunner
+from mailman.testing.helpers import (
+ make_testable_runner, specialized_message_from_string)
+from mailman.testing.layers import SMTPLayer
+
+
+
+class TestModeration(unittest.TestCase):
+ """Test moderation functionality."""
+
+ layer = SMTPLayer
+
+ def setUp(self):
+ self._mlist = create_list('test@example.com')
+ self._msg = specialized_message_from_string("""\
+From: anne@example.com
+To: test@example.com
+Subject: hold me
+Message-ID: <alpha>
+
+""")
+ self._in = make_testable_runner(IncomingRunner, 'in')
+ self._pipeline = make_testable_runner(PipelineRunner, 'pipeline')
+ self._out = make_testable_runner(OutgoingRunner, 'out')
+
+ def test_accepted_message_gets_posted(self):
+ # A message that is accepted by the moderator should get posted to the
+ # mailing list. LP: #827697
+ msgdata = dict(listname='test@example.com',
+ recipients=['bart@example.com'])
+ request_id = hold_message(self._mlist, self._msg, msgdata)
+ handle_message(self._mlist, request_id, Action.accept)
+ self._in.run()
+ self._pipeline.run()
+ self._out.run()
+ messages = list(SMTPLayer.smtpd.messages)
+ self.assertEqual(len(messages), 1)
+ message = messages[0]
+ # Delete variable headers which can't be compared.
+ self.assertTrue('x-mailman-version' in message)
+ del message['x-mailman-version']
+ self.assertTrue('x-peer' in message)
+ del message['x-peer']
+ self.assertEqual(message.as_string(), """\
+From: anne@example.com
+To: test@example.com
+Message-ID: <alpha>
+X-Mailman-Approved-At: Mon, 01 Aug 2005 07:49:23 -0400
+Subject: [Test] hold me
+X-BeenThere: test@example.com
+Precedence: list
+List-Id: <test.example.com>
+X-Message-ID-Hash: XZ3DGG4V37BZTTLXNUX4NABB4DNQHTCP
+List-Post: <mailto:test@example.com>
+List-Subscribe: <http://lists.example.com/listinfo/test@example.com>,
+ <mailto:test-join@example.com>
+Archived-At: http://lists.example.com/archives/XZ3DGG4V37BZTTLXNUX4NABB4DNQHTCP
+List-Unsubscribe: <http://lists.example.com/listinfo/test@example.com>,
+ <mailto:test-leave@example.com>
+List-Archive: <http://lists.example.com/archives/test@example.com>
+List-Help: <mailto:test-request@example.com?subject=help>
+X-MailFrom: test-bounces@example.com
+X-RcptTo: bart@example.com
+
+""")
+
+
+
+def test_suite():
+ suite = unittest.TestSuite()
+ suite.addTest(unittest.makeSuite(TestModeration))
+ return suite