2010-10-02 20:16:49 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2010-09-07 14:02:55 +02:00
|
|
|
import datetime
|
|
|
|
|
|
|
|
import logging
|
|
|
|
|
2011-04-16 11:16:18 +02:00
|
|
|
import unittest2 as unittest
|
2009-05-18 17:15:36 +02:00
|
|
|
|
|
|
|
from zope.component import createObject
|
2009-05-27 19:05:12 +02:00
|
|
|
|
2010-11-28 11:00:31 +01:00
|
|
|
from zope.component import getMultiAdapter
|
2010-11-28 10:51:35 +01:00
|
|
|
|
2010-11-28 12:39:19 +01:00
|
|
|
from Products.CMFCore.utils import getToolByName
|
|
|
|
|
2011-04-16 11:16:18 +02:00
|
|
|
from plone.app.testing import TEST_USER_ID, setRoles
|
2009-06-22 19:06:37 +02:00
|
|
|
|
2012-01-09 16:43:54 +01:00
|
|
|
from plone.app.discussion.testing import \
|
|
|
|
PLONE_APP_DISCUSSION_INTEGRATION_TESTING
|
2009-05-18 17:15:36 +02:00
|
|
|
|
2009-05-25 09:02:11 +02:00
|
|
|
from plone.app.discussion.interfaces import IComment, IConversation, IReplies
|
2009-05-18 17:15:36 +02:00
|
|
|
|
2010-09-03 23:23:44 +02:00
|
|
|
from plone.app.discussion.browser.comment import View
|
|
|
|
|
2010-09-02 22:00:43 +02:00
|
|
|
|
2010-09-07 14:02:55 +02:00
|
|
|
logger = logging.getLogger('plone.app.discussion.tests')
|
|
|
|
logger.addHandler(logging.StreamHandler())
|
|
|
|
|
2012-01-09 16:43:54 +01:00
|
|
|
|
2011-04-16 11:16:18 +02:00
|
|
|
class CommentTest(unittest.TestCase):
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2011-04-16 11:16:18 +02:00
|
|
|
layer = PLONE_APP_DISCUSSION_INTEGRATION_TESTING
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2011-04-16 11:16:18 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.portal = self.layer['portal']
|
|
|
|
self.request = self.layer['request']
|
|
|
|
|
|
|
|
setRoles(self.portal, TEST_USER_ID, ['Manager'])
|
2013-01-10 18:33:46 +01:00
|
|
|
self.portal.invokeFactory(
|
|
|
|
id='doc1',
|
|
|
|
title='Document 1',
|
|
|
|
type_name='Document'
|
|
|
|
)
|
2010-11-28 12:39:19 +01:00
|
|
|
self.catalog = getToolByName(self.portal, 'portal_catalog')
|
|
|
|
self.document_brain = self.catalog.searchResults(
|
2012-01-09 16:43:54 +01:00
|
|
|
portal_type='Document')[0]
|
2010-12-16 00:52:56 +01:00
|
|
|
|
2009-05-18 17:15:36 +02:00
|
|
|
def test_factory(self):
|
2009-05-23 13:52:57 +02:00
|
|
|
comment1 = createObject('plone.Comment')
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertTrue(IComment.providedBy(comment1))
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2010-09-07 14:02:55 +02:00
|
|
|
def test_UTCDates(self):
|
2012-01-09 16:43:54 +01:00
|
|
|
utc_to_local_diff = \
|
|
|
|
datetime.datetime.now() - datetime.datetime.utcnow()
|
2010-09-07 14:02:55 +02:00
|
|
|
utc_to_local_diff = abs(utc_to_local_diff.seconds)
|
|
|
|
if utc_to_local_diff < 60:
|
|
|
|
logger.warning("Your computer is living in a timezone where local "
|
|
|
|
"time equals utc time. Some potential errors can "
|
|
|
|
"get hidden by that")
|
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
local_utc = datetime.datetime.utcnow()
|
|
|
|
for date in (comment1.creation_date, comment1.modification_date):
|
|
|
|
difference = abs(date - local_utc)
|
|
|
|
difference = difference.seconds
|
|
|
|
# We hope that between comment1 and local_utc happen less than
|
|
|
|
# 10 seconds
|
|
|
|
self.assertFalse(difference / 10)
|
|
|
|
|
2009-05-18 17:15:36 +02:00
|
|
|
def test_id(self):
|
2009-05-23 13:52:57 +02:00
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
comment1.comment_id = 123
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertEqual('123', comment1.id)
|
|
|
|
self.assertEqual('123', comment1.getId())
|
|
|
|
self.assertEqual(u'123', comment1.__name__)
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2010-11-28 12:39:19 +01:00
|
|
|
def test_uid(self):
|
|
|
|
conversation = IConversation(self.portal.doc1)
|
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
conversation.addComment(comment1)
|
|
|
|
comment_brain = self.catalog.searchResults(
|
2013-01-10 18:33:46 +01:00
|
|
|
portal_type='Discussion Item'
|
|
|
|
)[0]
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertTrue(comment_brain.UID)
|
2010-12-16 00:52:56 +01:00
|
|
|
|
2010-11-28 12:39:19 +01:00
|
|
|
def test_uid_is_unique(self):
|
2010-12-15 21:39:55 +01:00
|
|
|
conversation = IConversation(self.portal.doc1)
|
2010-11-28 12:39:19 +01:00
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
conversation.addComment(comment1)
|
|
|
|
comment2 = createObject('plone.Comment')
|
|
|
|
conversation.addComment(comment2)
|
|
|
|
brains = self.catalog.searchResults(
|
2013-01-10 18:33:46 +01:00
|
|
|
portal_type='Discussion Item'
|
|
|
|
)
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertNotEqual(brains[0].UID, brains[1].UID)
|
2010-12-16 00:52:56 +01:00
|
|
|
|
2010-11-28 12:39:19 +01:00
|
|
|
def test_comment_uid_differs_from_content_uid(self):
|
2010-12-15 21:39:55 +01:00
|
|
|
conversation = IConversation(self.portal.doc1)
|
2010-11-28 12:39:19 +01:00
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
conversation.addComment(comment1)
|
|
|
|
comment_brain = self.catalog.searchResults(
|
2013-01-10 18:33:46 +01:00
|
|
|
portal_type='Discussion Item'
|
|
|
|
)[0]
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertNotEqual(self.document_brain.UID, comment_brain.UID)
|
2010-11-28 12:39:19 +01:00
|
|
|
|
2009-05-18 17:15:36 +02:00
|
|
|
def test_title(self):
|
2010-10-22 11:57:55 +02:00
|
|
|
conversation = IConversation(self.portal.doc1)
|
2009-05-23 13:52:57 +02:00
|
|
|
comment1 = createObject('plone.Comment')
|
2012-01-30 13:30:46 +01:00
|
|
|
comment1.author_name = "Jim Fulton"
|
2010-09-29 09:56:36 +02:00
|
|
|
conversation.addComment(comment1)
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertEqual("Jim Fulton on Document 1", comment1.Title())
|
2010-09-29 12:52:11 +02:00
|
|
|
|
|
|
|
def test_no_name_title(self):
|
2010-10-22 11:57:55 +02:00
|
|
|
conversation = IConversation(self.portal.doc1)
|
2010-09-29 12:52:11 +02:00
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
conversation.addComment(comment1)
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertEqual("Anonymous on Document 1", comment1.Title())
|
2010-09-29 12:52:11 +02:00
|
|
|
|
2010-10-02 20:16:49 +02:00
|
|
|
def test_title_special_characters(self):
|
2013-01-10 18:40:04 +01:00
|
|
|
self.portal.invokeFactory(
|
|
|
|
id='doc_sp_chars',
|
|
|
|
title=u'Document äüö',
|
|
|
|
type_name='Document'
|
|
|
|
)
|
2010-10-22 11:57:55 +02:00
|
|
|
conversation = IConversation(self.portal.doc_sp_chars)
|
2010-10-02 20:16:49 +02:00
|
|
|
comment1 = createObject('plone.Comment')
|
2012-01-30 13:30:46 +01:00
|
|
|
comment1.author_name = u"Tarek Ziadé"
|
2010-10-02 20:16:49 +02:00
|
|
|
conversation.addComment(comment1)
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertEqual(u"Tarek Ziadé on Document äüö", comment1.Title())
|
2010-10-22 11:57:55 +02:00
|
|
|
|
2009-05-18 17:15:36 +02:00
|
|
|
def test_creator(self):
|
2009-05-23 13:52:57 +02:00
|
|
|
comment1 = createObject('plone.Comment')
|
2012-01-30 13:30:46 +01:00
|
|
|
comment1.creator = "jim"
|
|
|
|
self.assertEqual("jim", comment1.Creator())
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2009-06-22 14:23:19 +02:00
|
|
|
def test_type(self):
|
|
|
|
comment1 = createObject('plone.Comment')
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertEqual(comment1.Type(), 'Comment')
|
2009-06-22 14:23:19 +02:00
|
|
|
|
2012-06-17 12:09:25 +02:00
|
|
|
def test_mime_type(self):
|
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
self.assertEqual(comment1.mime_type, 'text/plain')
|
|
|
|
|
2011-04-02 21:51:37 +02:00
|
|
|
def test_getText(self):
|
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
comment1.text = """First paragraph
|
|
|
|
|
|
|
|
Second paragraph"""
|
2013-01-10 18:40:04 +01:00
|
|
|
self.assertEqual(
|
|
|
|
comment1.getText(),
|
|
|
|
"<p>First paragraph<br /><br /> Second paragraph</p>"
|
|
|
|
)
|
2012-01-09 16:43:54 +01:00
|
|
|
|
2011-04-02 21:51:37 +02:00
|
|
|
def test_getText_escapes_HTML(self):
|
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
comment1.text = """<b>Got HTML?</b>"""
|
2013-01-10 18:40:04 +01:00
|
|
|
self.assertEqual(
|
|
|
|
comment1.getText(),
|
|
|
|
"<p><b>Got HTML?</b></p>"
|
|
|
|
)
|
2012-01-09 16:43:54 +01:00
|
|
|
|
2011-04-02 21:51:37 +02:00
|
|
|
def test_getText_with_non_ascii_characters(self):
|
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
comment1.text = u"""Umlaute sind ä, ö und ü."""
|
2013-01-10 18:40:04 +01:00
|
|
|
self.assertEqual(
|
|
|
|
comment1.getText(),
|
|
|
|
'<p>Umlaute sind \xc3\xa4, \xc3\xb6 und \xc3\xbc.</p>'
|
|
|
|
)
|
2011-04-02 21:51:37 +02:00
|
|
|
|
|
|
|
def test_getText_doesnt_link(self):
|
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
comment1.text = "Go to http://www.plone.org"
|
2013-01-10 18:40:04 +01:00
|
|
|
self.assertEqual(
|
|
|
|
comment1.getText(),
|
|
|
|
"<p>Go to http://www.plone.org</p>"
|
|
|
|
)
|
2012-01-09 16:43:54 +01:00
|
|
|
|
2011-04-02 21:51:37 +02:00
|
|
|
def test_getText_uses_comment_mime_type(self):
|
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
comment1.text = "Go to http://www.plone.org"
|
|
|
|
comment1.mime_type = 'text/x-web-intelligent'
|
2013-01-10 18:40:04 +01:00
|
|
|
self.assertEqual(
|
|
|
|
comment1.getText(),
|
2012-01-14 07:13:39 +01:00
|
|
|
'Go to <a href="http://www.plone.org" ' +
|
2013-01-10 18:40:04 +01:00
|
|
|
'rel="nofollow">http://www.plone.org</a>'
|
|
|
|
)
|
2011-04-02 21:51:37 +02:00
|
|
|
|
2012-06-15 21:15:02 +02:00
|
|
|
def test_getText_uses_comment_mime_type_html(self):
|
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
comment1.text = 'Go to <a href="http://www.plone.org">plone.org</a>'
|
|
|
|
comment1.mime_type = 'text/html'
|
2013-01-10 18:40:04 +01:00
|
|
|
self.assertEqual(
|
|
|
|
comment1.getText(),
|
|
|
|
'Go to <a href="http://www.plone.org">plone.org</a>'
|
|
|
|
)
|
2012-06-15 21:15:02 +02:00
|
|
|
|
2011-04-02 21:51:37 +02:00
|
|
|
def test_getText_w_custom_targetMimetype(self):
|
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
comment1.text = 'para'
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertEqual(comment1.getText(targetMimetype='text/plain'), 'para')
|
2011-04-02 21:51:37 +02:00
|
|
|
|
2012-07-12 10:26:39 +02:00
|
|
|
def test_getText_invalid_transformation_raises_error(self):
|
|
|
|
conversation = IConversation(self.portal.doc1)
|
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
comment1.mime_type = 'text/x-html-safe'
|
|
|
|
comment1.text = 'para'
|
|
|
|
conversation.addComment(comment1)
|
|
|
|
self.assertEqual(
|
|
|
|
comment1.getText(targetMimetype='text/html'),
|
|
|
|
'para')
|
|
|
|
|
2009-05-18 17:15:36 +02:00
|
|
|
def test_traversal(self):
|
2010-10-22 11:57:55 +02:00
|
|
|
# make sure comments are traversable, have an id, absolute_url and
|
2010-08-28 19:06:53 +02:00
|
|
|
# physical path
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2009-06-18 22:57:47 +02:00
|
|
|
conversation = IConversation(self.portal.doc1)
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2009-05-23 13:52:57 +02:00
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
comment1.text = 'Comment text'
|
|
|
|
|
|
|
|
new_comment1_id = conversation.addComment(comment1)
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2010-08-28 19:06:53 +02:00
|
|
|
comment = self.portal.doc1.restrictedTraverse(
|
|
|
|
'++conversation++default/%s' % new_comment1_id)
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertTrue(IComment.providedBy(comment))
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2013-01-10 18:40:04 +01:00
|
|
|
self.assertEqual(
|
|
|
|
(
|
|
|
|
'', 'plone', 'doc1', '++conversation++default',
|
|
|
|
str(new_comment1_id)
|
|
|
|
),
|
|
|
|
comment.getPhysicalPath()
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
'http://nohost/plone/doc1/++conversation++default/' +
|
|
|
|
str(new_comment1_id), comment.absolute_url()
|
|
|
|
)
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2012-03-14 23:01:17 +01:00
|
|
|
def test_view_blob_types(self):
|
|
|
|
"""
|
|
|
|
Make sure that traversal to images/files redirects to the
|
|
|
|
version of the url with a /view in it.
|
|
|
|
"""
|
2013-01-10 18:40:04 +01:00
|
|
|
self.portal.invokeFactory(
|
|
|
|
id='image1',
|
|
|
|
title='Image',
|
|
|
|
type_name='Image'
|
|
|
|
)
|
2012-03-14 23:01:17 +01:00
|
|
|
conversation = IConversation(self.portal.image1)
|
|
|
|
|
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
comment1.text = 'Comment text'
|
|
|
|
new_comment1_id = conversation.addComment(comment1)
|
|
|
|
comment = self.portal.image1.restrictedTraverse(
|
|
|
|
'++conversation++default/%s' % new_comment1_id)
|
|
|
|
|
|
|
|
view = View(comment, self.request)
|
|
|
|
View.__call__(view)
|
|
|
|
response = self.request.response
|
|
|
|
self.assertIn("/view", response.headers['location'])
|
|
|
|
|
2009-05-18 17:15:36 +02:00
|
|
|
def test_workflow(self):
|
2010-10-08 13:03:14 +02:00
|
|
|
"""Basic test for the 'comment_review_workflow'
|
|
|
|
"""
|
2010-08-28 19:06:53 +02:00
|
|
|
self.portal.portal_workflow.setChainForPortalTypes(
|
2010-10-22 11:57:55 +02:00
|
|
|
('Discussion Item',),
|
2010-10-08 13:03:14 +02:00
|
|
|
('comment_review_workflow,'))
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2009-06-18 22:57:47 +02:00
|
|
|
conversation = IConversation(self.portal.doc1)
|
2009-05-23 18:37:10 +02:00
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
new_comment1_id = conversation.addComment(comment1)
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2009-05-23 18:37:10 +02:00
|
|
|
comment = conversation[new_comment1_id]
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2010-10-08 13:03:14 +02:00
|
|
|
# Make sure comments use the 'comment_review_workflow'
|
2009-05-23 18:37:10 +02:00
|
|
|
chain = self.portal.portal_workflow.getChainFor(comment)
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertEqual(('comment_review_workflow',), chain)
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2010-10-08 13:03:14 +02:00
|
|
|
# Ensure the initial state was entered and recorded
|
2013-01-10 18:40:04 +01:00
|
|
|
self.assertEqual(
|
|
|
|
1,
|
|
|
|
len(comment.workflow_history['comment_review_workflow'])
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
None,
|
|
|
|
comment.workflow_history['comment_review_workflow'][0]['action']
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
'pending',
|
|
|
|
self.portal.portal_workflow.getInfoFor(comment, 'review_state')
|
|
|
|
)
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2009-05-18 17:15:36 +02:00
|
|
|
def test_fti(self):
|
|
|
|
# test that we can look up an FTI for Discussion Item
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2013-01-10 18:40:04 +01:00
|
|
|
self.assertTrue(
|
|
|
|
"Discussion Item" in
|
|
|
|
self.portal.portal_types.objectIds()
|
|
|
|
)
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2009-05-23 18:12:45 +02:00
|
|
|
comment1 = createObject('plone.Comment')
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2009-05-23 18:12:45 +02:00
|
|
|
fti = self.portal.portal_types.getTypeInfo(comment1)
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertEqual('Discussion Item', fti.getTypeInfo(comment1).getId())
|
2009-05-18 17:15:36 +02:00
|
|
|
|
2009-05-27 19:05:12 +02:00
|
|
|
def test_view(self):
|
2010-10-22 11:57:55 +02:00
|
|
|
# make sure that the comment view is there and redirects to the right
|
2010-08-28 19:06:53 +02:00
|
|
|
# URL
|
2009-05-27 19:05:12 +02:00
|
|
|
|
|
|
|
# Create a conversation. In this case we doesn't assign it to an
|
|
|
|
# object, as we just want to check the Conversation object API.
|
|
|
|
conversation = IConversation(self.portal.doc1)
|
|
|
|
|
|
|
|
# Create a comment
|
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
comment1.text = 'Comment text'
|
|
|
|
|
|
|
|
# Add comment to the conversation
|
|
|
|
new_comment1_id = conversation.addComment(comment1)
|
|
|
|
|
2010-08-28 19:06:53 +02:00
|
|
|
comment = self.portal.doc1.restrictedTraverse(
|
|
|
|
'++conversation++default/%s' % new_comment1_id)
|
2009-05-27 19:05:12 +02:00
|
|
|
|
|
|
|
# make sure the view is there
|
2011-04-16 11:16:18 +02:00
|
|
|
self.assertTrue(getMultiAdapter((comment, self.request),
|
2010-08-28 19:06:53 +02:00
|
|
|
name='view'))
|
2009-05-27 19:05:12 +02:00
|
|
|
|
2010-09-03 23:23:44 +02:00
|
|
|
# make sure the HTTP redirect (status code 302) works when a comment
|
|
|
|
# is called directly
|
2011-04-16 11:16:18 +02:00
|
|
|
view = View(comment, self.request)
|
2010-09-03 23:23:44 +02:00
|
|
|
View.__call__(view)
|
2011-04-16 11:16:18 +02:00
|
|
|
self.assertEqual(self.request.response.status, 302)
|
2009-05-27 19:05:12 +02:00
|
|
|
|
2010-09-02 22:00:43 +02:00
|
|
|
|
2011-04-16 11:16:18 +02:00
|
|
|
class RepliesTest(unittest.TestCase):
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2009-05-18 17:15:36 +02:00
|
|
|
# test the IReplies adapter on a comment
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2011-04-16 11:16:18 +02:00
|
|
|
layer = PLONE_APP_DISCUSSION_INTEGRATION_TESTING
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2011-04-16 11:16:18 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.portal = self.layer['portal']
|
|
|
|
setRoles(self.portal, TEST_USER_ID, ['Manager'])
|
2013-01-10 18:40:04 +01:00
|
|
|
self.portal.invokeFactory(
|
|
|
|
id='doc1',
|
|
|
|
title='Document 1',
|
|
|
|
type_name='Document'
|
|
|
|
)
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2009-05-18 17:15:36 +02:00
|
|
|
def test_add_comment(self):
|
2009-05-25 09:02:11 +02:00
|
|
|
# Add comments to a CommentReplies adapter
|
|
|
|
|
|
|
|
# Create a conversation. In this case we doesn't assign it to an
|
|
|
|
# object, as we just want to check the Conversation object API.
|
|
|
|
conversation = IConversation(self.portal.doc1)
|
|
|
|
|
|
|
|
# Add a comment to the conversation
|
|
|
|
replies = IReplies(conversation)
|
|
|
|
|
|
|
|
comment = createObject('plone.Comment')
|
|
|
|
comment.text = 'Comment text'
|
|
|
|
new_id = replies.addComment(comment)
|
2010-08-28 19:06:53 +02:00
|
|
|
comment = self.portal.doc1.restrictedTraverse(
|
|
|
|
'++conversation++default/%s' % new_id)
|
2009-05-25 09:02:11 +02:00
|
|
|
|
|
|
|
# Add a reply to the CommentReplies adapter of the first comment
|
|
|
|
re_comment = createObject('plone.Comment')
|
|
|
|
re_comment.text = 'Comment text'
|
|
|
|
|
|
|
|
replies = IReplies(comment)
|
|
|
|
|
|
|
|
new_re_id = replies.addComment(re_comment)
|
|
|
|
|
|
|
|
# check that replies provides the IReplies interface
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertTrue(IReplies.providedBy(replies))
|
2009-05-25 09:02:11 +02:00
|
|
|
|
|
|
|
# Make sure our comment was added
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertTrue(new_re_id in replies)
|
2009-05-25 09:02:11 +02:00
|
|
|
|
|
|
|
# Make sure it is also reflected in the conversation
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertTrue(new_re_id in conversation)
|
2009-05-25 09:02:11 +02:00
|
|
|
|
|
|
|
# Make sure the conversation has the correct comment id
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertEqual(conversation[new_re_id].comment_id, new_re_id)
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2009-05-18 17:15:36 +02:00
|
|
|
def test_delete_comment(self):
|
2009-05-25 09:08:26 +02:00
|
|
|
# Add and remove a comment to a CommentReplies adapter
|
|
|
|
|
|
|
|
# Create a conversation. In this case we doesn't assign it to an
|
|
|
|
# object, as we just want to check the Conversation object API.
|
|
|
|
conversation = IConversation(self.portal.doc1)
|
|
|
|
|
|
|
|
# Add a comment to the conversation
|
|
|
|
replies = IReplies(conversation)
|
|
|
|
|
|
|
|
comment = createObject('plone.Comment')
|
|
|
|
comment.text = 'Comment text'
|
|
|
|
new_id = replies.addComment(comment)
|
2010-08-28 19:06:53 +02:00
|
|
|
comment = self.portal.doc1.restrictedTraverse(
|
|
|
|
'++conversation++default/%s' % new_id)
|
2009-05-25 09:08:26 +02:00
|
|
|
|
|
|
|
# Add a reply to the CommentReplies adapter of the first comment
|
|
|
|
re_comment = createObject('plone.Comment')
|
|
|
|
re_comment.text = 'Comment text'
|
|
|
|
|
|
|
|
replies = IReplies(comment)
|
|
|
|
|
|
|
|
new_re_id = replies.addComment(re_comment)
|
|
|
|
|
|
|
|
# Remove the reply to the CommentReplies adapter
|
|
|
|
del replies[new_re_id]
|
|
|
|
|
|
|
|
# Make sure there is no comment left in CommentReplies
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertEqual(len(replies), 0)
|
2009-05-25 09:08:26 +02:00
|
|
|
|
|
|
|
# Make sure the first comment is still in the conversation
|
2011-04-15 18:23:38 +02:00
|
|
|
self.assertEqual(conversation.total_comments, 1)
|
2009-05-25 09:02:11 +02:00
|
|
|
|
2009-06-15 11:06:47 +02:00
|
|
|
def test_traversal(self):
|
|
|
|
# Create a nested structure of comment replies and check the traversal
|
|
|
|
|
2010-10-22 11:57:55 +02:00
|
|
|
# make sure comments are traversable, have an id, absolute_url and
|
2010-08-28 19:06:53 +02:00
|
|
|
# physical path
|
2009-06-18 22:57:47 +02:00
|
|
|
conversation = IConversation(self.portal.doc1)
|
2009-06-15 11:06:47 +02:00
|
|
|
|
|
|
|
comment1 = createObject('plone.Comment')
|
|
|
|
comment1.text = 'Comment text'
|
|
|
|
|
2010-07-13 12:45:53 +02:00
|
|
|
conversation.addComment(comment1)
|
2009-06-15 11:06:47 +02:00
|
|
|
|
|
|
|
comment = createObject('plone.Comment')
|
|
|
|
comment.text = 'Comment text'
|
|
|
|
new_id = conversation.addComment(comment)
|
2010-08-28 19:06:53 +02:00
|
|
|
comment = self.portal.doc1.restrictedTraverse(
|
|
|
|
'++conversation++default/%s' % new_id)
|
2009-06-15 11:06:47 +02:00
|
|
|
|
|
|
|
# Add a reply to the CommentReplies adapter of the first comment
|
|
|
|
re_comment = createObject('plone.Comment')
|
|
|
|
re_comment.text = 'Comment text'
|
|
|
|
replies = IReplies(comment)
|
|
|
|
new_re_id = replies.addComment(re_comment)
|
2010-08-28 19:06:53 +02:00
|
|
|
re_comment = self.portal.doc1.restrictedTraverse(
|
2013-01-10 18:40:04 +01:00
|
|
|
'++conversation++default/%s' % new_re_id
|
|
|
|
)
|
2009-06-15 11:06:47 +02:00
|
|
|
|
|
|
|
# Add a reply to the reply
|
|
|
|
re_re_comment = createObject('plone.Comment')
|
|
|
|
re_re_comment.text = 'Comment text'
|
|
|
|
replies = IReplies(re_comment)
|
|
|
|
new_re_re_id = replies.addComment(re_re_comment)
|
2010-08-28 19:06:53 +02:00
|
|
|
re_re_comment = self.portal.doc1.restrictedTraverse(
|
2013-01-10 18:40:04 +01:00
|
|
|
'++conversation++default/%s' % new_re_re_id
|
|
|
|
)
|
2009-06-15 11:06:47 +02:00
|
|
|
|
|
|
|
# Add a reply to the replies reply
|
|
|
|
re_re_re_comment = createObject('plone.Comment')
|
|
|
|
re_re_re_comment.text = 'Comment text'
|
|
|
|
replies = IReplies(re_re_comment)
|
|
|
|
new_re_re_re_id = replies.addComment(re_re_re_comment)
|
2010-08-28 19:06:53 +02:00
|
|
|
re_re_re_comment = self.portal.doc1.restrictedTraverse(
|
|
|
|
'++conversation++default/%s' % new_re_re_re_id)
|
|
|
|
|
2013-01-10 18:40:04 +01:00
|
|
|
self.assertEqual(
|
|
|
|
('', 'plone', 'doc1', '++conversation++default', str(new_id)),
|
|
|
|
comment.getPhysicalPath()
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
'http://nohost/plone/doc1/++conversation++default/' +
|
|
|
|
str(new_id), comment.absolute_url()
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
('', 'plone', 'doc1', '++conversation++default', str(new_re_id)),
|
|
|
|
re_comment.getPhysicalPath()
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
'http://nohost/plone/doc1/++conversation++default/' +
|
|
|
|
str(new_re_id),
|
|
|
|
re_comment.absolute_url()
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
(
|
|
|
|
'', 'plone', 'doc1', '++conversation++default',
|
|
|
|
str(new_re_re_id)
|
|
|
|
),
|
|
|
|
re_re_comment.getPhysicalPath()
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
'http://nohost/plone/doc1/++conversation++default/' +
|
|
|
|
str(new_re_re_id),
|
|
|
|
re_re_comment.absolute_url()
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
(
|
|
|
|
'', 'plone', 'doc1', '++conversation++default',
|
|
|
|
str(new_re_re_re_id)
|
|
|
|
),
|
|
|
|
re_re_re_comment.getPhysicalPath()
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
'http://nohost/plone/doc1/++conversation++default/' +
|
|
|
|
str(new_re_re_re_id),
|
|
|
|
re_re_re_comment.absolute_url()
|
|
|
|
)
|
2009-06-15 11:06:47 +02:00
|
|
|
|
2012-01-14 07:13:39 +01:00
|
|
|
|
2009-05-18 17:15:36 +02:00
|
|
|
def test_suite():
|
2010-03-18 15:42:52 +01:00
|
|
|
return unittest.defaultTestLoader.loadTestsFromName(__name__)
|