Skip to content
Snippets Groups Projects
unittest_blog.py 1.53 KiB
Newer Older
"""Blog unit tests"""
import re

from logilab.common.testlib import unittest_main, mock_object
Sylvain Thénault's avatar
Sylvain Thénault committed
from cubicweb.devtools.testlib import CubicWebTC, MAILBOX

from email.Header import decode_header
from cubicweb.sobjects.notification import RenderAndSendNotificationView
from cubicweb.server.hookhelper import SendMailOp


Sandrine Ribeau's avatar
Sandrine Ribeau committed
class BlogTestsCubicWebTC(CubicWebTC):
    """test blog specific behaviours"""
sylvain thenault's avatar
sylvain thenault committed

    def test_notifications(self):
Sylvain Thénault's avatar
Sylvain Thénault committed
        req = self.request()
        cubicweb_blog = req.create_entity('Blog', title=u'cubicweb', description=u"cubicweb c'est beau")
        blog_entry_1 = req.create_entity('BlogEntry', title=u"hop", content=u"cubicweb hop")
        self.execute('SET E entry_of B WHERE B eid %(beid)s, E eid %(eeid)s' % {'beid' :cubicweb_blog.eid, 'eeid' : blog_entry_1.eid})
Sylvain Thénault's avatar
Sylvain Thénault committed
        blog_entry_2 = req.create_entity('BlogEntry', title=u"yes",  content=u"cubicweb yes")
        self.execute('SET E entry_of B WHERE B eid %(beid)s, E eid %(eeid)s' % {'beid' :cubicweb_blog.eid, 'eeid' : blog_entry_2.eid})
Sylvain Thénault's avatar
Sylvain Thénault committed
        self.assertEquals(len(MAILBOX), 0)
        self.commit()
        self.assertEquals(len(MAILBOX), 0)
        blog_entry_1.fire_transition('publish')
        self.commit()
        self.assertEquals(len(MAILBOX), 1)
Sylvain Thénault's avatar
Sylvain Thénault committed
        mail = MAILBOX[0]
        self.assertEquals(mail.subject, '[data] hop')
        blog_entry_2.fire_transition('publish')
        self.commit()
        self.assertEquals(len(MAILBOX), 2)
Sylvain Thénault's avatar
Sylvain Thénault committed
        mail = MAILBOX[1]
        self.assertEquals(mail.subject, '[data] yes')
sylvain thenault's avatar
sylvain thenault committed


if __name__ == '__main__':
    unittest_main()