2009-05-18 17:15:36 +02:00
import unittest
2009-06-02 01:17:13 +02:00
from datetime import datetime , timedelta
from DateTime import DateTime
2009-05-31 19:55:46 +02:00
from zope . component import createObject
2009-05-18 17:15:36 +02:00
from Products . PloneTestCase . ptc import PloneTestCase
from plone . app . discussion . tests . layer import DiscussionLayer
2009-05-31 19:55:46 +02:00
from plone . app . discussion . interfaces import IConversation
2009-05-31 21:07:35 +02:00
2009-05-31 19:55:46 +02:00
from plone . indexer import indexer
2009-05-31 21:07:35 +02:00
from plone . indexer . delegate import DelegatingIndexerFactory
2009-05-31 19:55:46 +02:00
from zope . component import provideAdapter
2009-06-02 01:17:13 +02:00
from plone . app . discussion import catalog
2009-05-31 19:55:46 +02:00
2009-07-01 22:57:55 +02:00
class ConversationIndexersTest ( PloneTestCase ) :
layer = DiscussionLayer
def afterSetUp ( self ) :
# First we need to create some content.
self . loginAsPortalOwner ( )
typetool = self . portal . portal_types
typetool . constructContent ( ' Document ' , self . portal , ' doc1 ' )
# Create a conversation.
conversation = IConversation ( self . portal . doc1 )
comment1 = createObject ( ' plone.Comment ' )
comment1 . title = ' Comment 1 '
comment1 . text = ' Comment Text '
comment1 . creator = " Jim "
comment1 . author_username = " Jim "
comment1 . creation_date = datetime ( 2006 , 9 , 17 , 14 , 18 , 12 )
comment1 . modification_date = datetime ( 2006 , 9 , 17 , 14 , 18 , 12 )
self . new_id1 = conversation . addComment ( comment1 )
comment2 = createObject ( ' plone.Comment ' )
comment2 . title = ' Comment 2 '
comment2 . text = ' Comment Text '
comment2 . creator = " Emma "
comment2 . author_username = " Emma "
comment2 . creation_date = datetime ( 2007 , 12 , 13 , 4 , 18 , 12 )
comment2 . modification_date = datetime ( 2007 , 12 , 13 , 4 , 18 , 12 )
self . new_id2 = conversation . addComment ( comment2 )
comment3 = createObject ( ' plone.Comment ' )
comment3 . title = ' Comment 3 '
comment3 . text = ' Comment Text '
comment3 . creator = " Lukas "
comment3 . author_username = " Lukas "
comment3 . creation_date = datetime ( 2009 , 4 , 12 , 11 , 12 , 12 )
comment3 . modification_date = datetime ( 2009 , 4 , 12 , 11 , 12 , 12 )
self . new_id3 = conversation . addComment ( comment3 )
self . conversation = conversation
def test_conversation_total_comments ( self ) :
self . assert_ ( isinstance ( catalog . total_comments , DelegatingIndexerFactory ) )
self . assertEquals ( catalog . total_comments ( self . portal . doc1 ) ( ) , 3 )
del self . conversation [ self . new_id1 ]
self . assertEquals ( catalog . total_comments ( self . portal . doc1 ) ( ) , 2 )
del self . conversation [ self . new_id2 ]
del self . conversation [ self . new_id3 ]
self . assertEquals ( catalog . total_comments ( self . portal . doc1 ) ( ) , 0 )
def test_conversation_last_comment_date ( self ) :
self . assert_ ( isinstance ( catalog . last_comment_date , DelegatingIndexerFactory ) )
self . assertEquals ( catalog . last_comment_date ( self . portal . doc1 ) ( ) , datetime ( 2009 , 4 , 12 , 11 , 12 , 12 ) )
del self . conversation [ self . new_id3 ]
self . assertEquals ( catalog . last_comment_date ( self . portal . doc1 ) ( ) , datetime ( 2007 , 12 , 13 , 4 , 18 , 12 ) )
del self . conversation [ self . new_id2 ]
del self . conversation [ self . new_id1 ]
self . assertEquals ( catalog . last_comment_date ( self . portal . doc1 ) ( ) , None )
def test_conversation_commentators ( self ) :
pass
#self.assertEquals(catalog.commentators(self.portal.doc1)(), ('Jim', 'Emma', 'Lukas'))
#self.assert_(isinstance(catalog.commentators, DelegatingIndexerFactory))
class CommentIndexersTest ( PloneTestCase ) :
2009-05-31 19:55:46 +02:00
2009-05-18 17:15:36 +02:00
layer = DiscussionLayer
2009-05-31 19:55:46 +02:00
def afterSetUp ( self ) :
# First we need to create some content.
self . loginAsPortalOwner ( )
typetool = self . portal . portal_types
typetool . constructContent ( ' Document ' , self . portal , ' doc1 ' )
# 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. Note: in real life, we always create comments via the factory
# to allow different factories to be swapped in
comment = createObject ( ' plone.Comment ' )
comment . title = ' Comment 1 '
2009-07-01 12:01:37 +02:00
comment . text = ' Lorem ipsum dolor sit amet. '
2009-06-02 01:45:49 +02:00
comment . creator = " Jim "
comment . creation_date = datetime ( 2006 , 9 , 17 , 14 , 18 , 12 )
comment . modification_date = datetime ( 2008 , 3 , 12 , 7 , 32 , 52 )
2009-05-31 19:55:46 +02:00
new_id = conversation . addComment ( comment )
2009-05-31 21:07:35 +02:00
2009-06-02 01:45:49 +02:00
self . comment_id = new_id
self . comment = comment
2009-07-01 12:01:37 +02:00
self . conversation = conversation
2009-05-31 21:07:35 +02:00
2009-06-02 01:45:49 +02:00
def test_title ( self ) :
self . assertEquals ( catalog . title ( self . comment ) ( ) , ' Comment 1 ' )
self . assert_ ( isinstance ( catalog . title , DelegatingIndexerFactory ) )
def test_description ( self ) :
2009-07-01 12:01:37 +02:00
self . assertEquals ( catalog . description ( self . comment ) ( ) , ' Lorem ipsum dolor sit amet. ' )
self . assert_ ( isinstance ( catalog . description , DelegatingIndexerFactory ) )
def test_description_long ( self ) :
2009-06-01 11:59:07 +02:00
# Create a 50 word comment and make sure the description returns
# only the first 25 words
2009-07-01 12:01:37 +02:00
comment_long = createObject ( ' plone.Comment ' )
comment_long . title = ' Long Comment '
comment_long . text = ' Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. '
new_id = self . conversation . addComment ( comment_long )
self . assertEquals ( catalog . description ( comment_long ) ( ) , ' Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At [...] ' )
2009-05-31 19:55:46 +02:00
2009-05-18 17:15:36 +02:00
def test_dates ( self ) :
2009-06-02 01:17:13 +02:00
# Test if created, modified, effective etc. are set correctly
2009-06-02 01:45:49 +02:00
self . assertEquals ( catalog . created ( self . comment ) ( ) , DateTime ( 2006 , 9 , 17 , 14 , 18 , 12 ) )
self . assertEquals ( catalog . modified ( self . comment ) ( ) , DateTime ( 2008 , 3 , 12 , 7 , 32 , 52 ) )
2009-05-18 17:15:36 +02:00
def test_searchable_text ( self ) :
2009-06-02 01:45:49 +02:00
# Test if searchable text is a concatenation of title and comment text
2009-07-01 12:01:37 +02:00
self . assertEquals ( catalog . searchable_text ( self . comment ) ( ) , ( ' Comment 1 ' , ' Lorem ipsum dolor sit amet. ' ) )
2009-06-02 01:45:49 +02:00
self . assert_ ( isinstance ( catalog . searchable_text , DelegatingIndexerFactory ) )
2009-05-18 17:15:36 +02:00
def test_creator ( self ) :
2009-06-02 01:45:49 +02:00
self . assertEquals ( catalog . creator ( self . comment ) ( ) , ( ' Jim ' ) )
2009-05-31 19:55:46 +02:00
2009-05-18 17:15:36 +02:00
def test_in_reply_to ( self ) :
pass
2009-05-31 19:55:46 +02:00
2009-05-18 17:15:36 +02:00
def test_review_state ( self ) :
pass
2009-05-31 19:55:46 +02:00
2009-05-18 17:15:36 +02:00
def test_object_provides ( self ) :
pass
2009-05-31 19:55:46 +02:00
2009-05-18 17:15:36 +02:00
def test_suite ( ) :
return unittest . defaultTestLoader . loadTestsFromName ( __name__ )