2009-06-06 10:14:10 +02:00
|
|
|
import unittest
|
|
|
|
|
2009-08-11 11:45:34 +02:00
|
|
|
from zope.component import getMultiAdapter
|
|
|
|
|
2009-06-06 10:14:10 +02:00
|
|
|
from plone.registry import Registry
|
|
|
|
|
|
|
|
from Products.CMFCore.utils import getToolByName
|
|
|
|
from Products.PloneTestCase.ptc import PloneTestCase
|
|
|
|
|
|
|
|
from plone.app.discussion.interfaces import IDiscussionSettings
|
|
|
|
from plone.app.discussion.tests.layer import DiscussionLayer
|
|
|
|
|
|
|
|
|
|
|
|
class RegistryTest(PloneTestCase):
|
|
|
|
|
|
|
|
layer = DiscussionLayer
|
|
|
|
|
|
|
|
def afterSetUp(self):
|
2010-01-23 10:02:09 +01:00
|
|
|
self.loginAsPortalOwner()
|
2009-06-06 10:14:10 +02:00
|
|
|
# Set up the registry
|
|
|
|
self.registry = Registry()
|
2009-07-13 12:22:45 +02:00
|
|
|
self.registry.registerInterface(IDiscussionSettings)
|
2009-06-06 10:14:10 +02:00
|
|
|
|
2010-01-23 10:02:09 +01:00
|
|
|
def test_discussion_controlpanel_view(self):
|
|
|
|
view = getMultiAdapter((self.portal, self.portal.REQUEST),
|
|
|
|
name="discussion-settings")
|
|
|
|
view = view.__of__(self.portal)
|
|
|
|
self.failUnless(view())
|
|
|
|
|
2009-06-06 10:14:10 +02:00
|
|
|
def test_discussion_in_controlpanel(self):
|
|
|
|
# Check if discussion is in the control panel
|
|
|
|
self.controlpanel = getToolByName(self.portal, "portal_controlpanel")
|
|
|
|
self.failUnless('discussion' in [a.getAction(self)['id']
|
|
|
|
for a in self.controlpanel.listActions()])
|
|
|
|
|
|
|
|
def test_globally_enabled(self):
|
|
|
|
# Check globally_enabled record
|
|
|
|
globally_enabled_record = self.registry.records['plone.app.discussion.interfaces.IDiscussionSettings.globally_enabled']
|
|
|
|
|
|
|
|
self.failUnless('globally_enabled' in IDiscussionSettings)
|
|
|
|
self.assertEquals(self.registry['plone.app.discussion.interfaces.IDiscussionSettings.globally_enabled'], True)
|
|
|
|
|
2009-08-11 11:45:34 +02:00
|
|
|
def test_captcha(self):
|
|
|
|
# Check globally_enabled record
|
|
|
|
globally_enabled_record = self.registry.records['plone.app.discussion.interfaces.IDiscussionSettings.captcha']
|
|
|
|
|
|
|
|
self.failUnless('captcha' in IDiscussionSettings)
|
|
|
|
self.assertEquals(self.registry['plone.app.discussion.interfaces.IDiscussionSettings.captcha'], 'disabled')
|
|
|
|
|
2009-06-06 10:14:10 +02:00
|
|
|
def test_anonymous_comments(self):
|
|
|
|
# Check anonymous_comments record
|
|
|
|
anonymous_comments_record = self.registry.records['plone.app.discussion.interfaces.IDiscussionSettings.anonymous_comments']
|
|
|
|
|
|
|
|
self.failUnless('anonymous_comments' in IDiscussionSettings)
|
|
|
|
self.assertEquals(self.registry['plone.app.discussion.interfaces.IDiscussionSettings.anonymous_comments'], False)
|
|
|
|
|
2009-06-07 10:47:14 +02:00
|
|
|
def test_show_commenter_image(self):
|
|
|
|
# Check show_commenter_image record
|
|
|
|
show_commenter_image = self.registry.records['plone.app.discussion.interfaces.IDiscussionSettings.show_commenter_image']
|
|
|
|
|
|
|
|
self.failUnless('show_commenter_image' in IDiscussionSettings)
|
|
|
|
self.assertEquals(self.registry['plone.app.discussion.interfaces.IDiscussionSettings.show_commenter_image'], True)
|
|
|
|
|
2010-02-12 11:11:01 +01:00
|
|
|
def test_moderator_notification_enabled(self):
|
|
|
|
# Check show_commenter_image record
|
|
|
|
show_commenter_image = self.registry.records['plone.app.discussion.interfaces.IDiscussionSettings.moderator_notification_enabled']
|
|
|
|
|
|
|
|
self.failUnless('moderator_notification_enabled' in IDiscussionSettings)
|
|
|
|
self.assertEquals(self.registry['plone.app.discussion.interfaces.IDiscussionSettings.moderator_notification_enabled'], False)
|
|
|
|
|
2010-02-08 19:28:03 +01:00
|
|
|
def test_notification_enabled(self):
|
|
|
|
# Check show_commenter_image record
|
|
|
|
show_commenter_image = self.registry.records['plone.app.discussion.interfaces.IDiscussionSettings.notification_enabled']
|
|
|
|
|
|
|
|
self.failUnless('notification_enabled' in IDiscussionSettings)
|
|
|
|
self.assertEquals(self.registry['plone.app.discussion.interfaces.IDiscussionSettings.notification_enabled'], False)
|
|
|
|
|
2009-06-06 10:14:10 +02:00
|
|
|
def test_suite():
|
|
|
|
return unittest.defaultTestLoader.loadTestsFromName(__name__)
|