First running test.

svn path=/plone.app.discussion/trunk/; revision=26962
This commit is contained in:
Lennart Regebro
2009-05-16 10:34:12 +00:00
parent a6fb8dd8de
commit 49c6c45453
4 changed files with 57 additions and 16 deletions
+24 -5
View File
@@ -1,5 +1,5 @@
import unittest
from datetime import datetime, timedelta
from base import TestCase
from zope.testing import doctestunit
@@ -13,7 +13,10 @@ from Products.Five import fiveconfigure
from Products.PloneTestCase import PloneTestCase as ptc
from Products.PloneTestCase.layer import PloneSite
class APITest(TestCase):
from plone.app.discussion.conversation import Conversation
from plone.app.discussion.comment import Comment
class ConversationTest(TestCase):
def afterSetUp(self):
# XXX If we make this a layer, it only get run once...
# First we need to create some content.
@@ -21,13 +24,29 @@ class APITest(TestCase):
typetool = self.portal.portal_types
typetool.constructContent('Document', self.portal, 'doc1')
def test_test(self):
raise NotImplementedError
def test_add_comment(self):
# 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 = Conversation()
# Add a comment. reply_to=0 means it's not a reply
comment = Comment(conversation=conversation, reply_to=0)
comment.title = 'Comment 1'
comment.text = 'Comment text'
conversation.addComment(comment)
# Check that the conversation methods return the correct data
self.assertEquals(comment.id, '1')
self.assertEquals(len(conversation.getComments()), 1)
self.assertEquals(len(conversation.getThreads()), 1)
self.assertEquals(conversation.total_comments, 1)
self.assert_(conversation.last_comment_date - datetime.now() < timedelta(seconds=1))
def test_suite():
return unittest.TestSuite([
unittest.makeSuite(APITest),
unittest.makeSuite(ConversationTest),
])
if __name__ == '__main__':