summaryrefslogtreecommitdiff
path: root/objectapp/tests/moderator.py
diff options
context:
space:
mode:
Diffstat (limited to 'objectapp/tests/moderator.py')
-rw-r--r--objectapp/tests/moderator.py186
1 files changed, 186 insertions, 0 deletions
diff --git a/objectapp/tests/moderator.py b/objectapp/tests/moderator.py
new file mode 100644
index 0000000..57dac52
--- /dev/null
+++ b/objectapp/tests/moderator.py
@@ -0,0 +1,186 @@
+
+# Copyright (c) 2011, 2012 Free Software Foundation
+
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
+
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+
+# Copyright (c) 2011, 2012 Free Software Foundation
+
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
+
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+
+# This project incorporates work covered by the following copyright and permission notice:
+
+# Copyright (c) 2009, Julien Fache
+# All rights reserved.
+
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+
+# * Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+# * Redistributions in binary form must reproduce the above copyright
+# notice, this list of conditions and the following disclaimer in
+# the documentation and/or other materials provided with the
+# distribution.
+# * Neither the name of the author nor the names of other
+# contributors may be used to endorse or promote products derived
+# from this software without specific prior written permission.
+
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+# OF THE POSSIBILITY OF SUCH DAMAGE.
+"""Test cases for Objectapp's moderator"""
+from django.core import mail
+from django.test import TestCase
+from django.contrib import comments
+from django.contrib.auth.models import User
+from django.contrib.sites.models import Site
+from django.contrib.contenttypes.models import ContentType
+
+from objectapp.models import Gbobject
+from objectapp.managers import PUBLISHED
+from objectapp.moderator import GbobjectCommentModerator
+
+
+class GbobjectCommentModeratorTestCase(TestCase):
+ """Test cases for the moderator"""
+
+ def setUp(self):
+ self.site = Site.objects.get_current()
+ self.author = User.objects.create(username='admin',
+ email='admin@example.com')
+ self.gbobject_ct_id = ContentType.objects.get_for_model(Gbobject).pk
+
+ params = {'title': 'My test gbobject',
+ 'content': 'My test gbobject',
+ 'slug': 'my-test-gbobject',
+ 'status': PUBLISHED}
+ self.gbobject = Gbobject.objects.create(**params)
+ self.gbobject.sites.add(self.site)
+ self.gbobject.authors.add(self.author)
+
+ def test_email(self):
+ comment = comments.get_model().objects.create(
+ comment='My Comment', user=self.author, is_public=True,
+ content_object=self.gbobject, site=self.site)
+ self.assertEquals(len(mail.outbox), 0)
+ moderator = GbobjectCommentModerator(Gbobject)
+ moderator.email_reply = False
+ moderator.email_authors = False
+ moderator.mail_comment_notification_recipients = []
+ moderator.email(comment, self.gbobject, 'request')
+ self.assertEquals(len(mail.outbox), 0)
+ moderator.email_reply = True
+ moderator.email_authors = True
+ moderator.mail_comment_notification_recipients = ['admin@example.com']
+ moderator.email(comment, self.gbobject, 'request')
+ self.assertEquals(len(mail.outbox), 1)
+
+ def test_do_email_notification(self):
+ comment = comments.get_model().objects.create(
+ comment='My Comment', user=self.author, is_public=True,
+ content_object=self.gbobject, site=self.site)
+ self.assertEquals(len(mail.outbox), 0)
+ moderator = GbobjectCommentModerator(Gbobject)
+ moderator.mail_comment_notification_recipients = ['admin@example.com']
+ moderator.do_email_notification(comment, self.gbobject, 'request')
+ self.assertEquals(len(mail.outbox), 1)
+
+ def test_do_email_authors(self):
+ comment = comments.get_model().objects.create(
+ comment='My Comment', user=self.author, is_public=True,
+ content_object=self.gbobject, site=self.site)
+ self.assertEquals(len(mail.outbox), 0)
+ moderator = GbobjectCommentModerator(Gbobject)
+ moderator.email_authors = True
+ moderator.mail_comment_notification_recipients = ['admin@example.com']
+ moderator.do_email_authors(comment, self.gbobject, 'request')
+ self.assertEquals(len(mail.outbox), 0)
+ moderator.mail_comment_notification_recipients = []
+ moderator.do_email_authors(comment, self.gbobject, 'request')
+ self.assertEquals(len(mail.outbox), 1)
+
+ def test_do_email_reply(self):
+ comment = comments.get_model().objects.create(
+ comment='My Comment 1', user=self.author, is_public=True,
+ content_object=self.gbobject, site=self.site)
+ moderator = GbobjectCommentModerator(Gbobject)
+ moderator.email_notification_reply = True
+ moderator.mail_comment_notification_recipients = ['admin@example.com']
+ moderator.do_email_reply(comment, self.gbobject, 'request')
+ self.assertEquals(len(mail.outbox), 0)
+
+ comment = comments.get_model().objects.create(
+ comment='My Comment 2', user_email='user_1@example.com',
+ content_object=self.gbobject, is_public=True, site=self.site)
+ moderator.do_email_reply(comment, self.gbobject, 'request')
+ self.assertEquals(len(mail.outbox), 0)
+
+ comment = comments.get_model().objects.create(
+ comment='My Comment 3', user_email='user_2@example.com',
+ content_object=self.gbobject, is_public=True, site=self.site)
+ moderator.do_email_reply(comment, self.gbobject, 'request')
+ self.assertEquals(len(mail.outbox), 1)
+ self.assertEquals(mail.outbox[0].bcc, [u'user_1@example.com'])
+
+ comment = comments.get_model().objects.create(
+ comment='My Comment 4', user=self.author, is_public=True,
+ content_object=self.gbobject, site=self.site)
+ moderator.do_email_reply(comment, self.gbobject, 'request')
+ self.assertEquals(len(mail.outbox), 2)
+ self.assertEquals(mail.outbox[1].bcc, [u'user_1@example.com',
+ u'user_2@example.com'])
+
+ def test_moderate(self):
+ comment = comments.get_model().objects.create(
+ comment='My Comment', user=self.author, is_public=True,
+ content_object=self.gbobject, site=self.site)
+ moderator = GbobjectCommentModerator(Gbobject)
+ moderator.auto_moderate_comments = True
+ moderator.spam_checker_backends = ()
+ self.assertEquals(moderator.moderate(comment, self.gbobject, 'request'),
+ True)
+ moderator.auto_moderate_comments = False
+ self.assertEquals(moderator.moderate(comment, self.gbobject, 'request'),
+ False)
+ self.assertEquals(comments.get_model().objects.filter(
+ flags__flag='spam').count(), 0)
+ moderator.spam_checker_backends = (
+ 'objectapp.spam_checker.backends.all_is_spam',)
+ self.assertEquals(moderator.moderate(comment, self.gbobject, 'request'),
+ True)
+ self.assertEquals(comments.get_model().objects.filter(
+ flags__flag='spam').count(), 1)