sobjects/test/unittest_supervising.py
changeset 0 b97547f5f1fa
child 1016 26387b836099
equal deleted inserted replaced
-1:000000000000 0:b97547f5f1fa
       
     1 # -*- coding: iso-8859-1 -*-
       
     2 import re
       
     3 
       
     4 from logilab.common.testlib import unittest_main
       
     5 from cubicweb.devtools.apptest import EnvBasedTC
       
     6 
       
     7 from mx.DateTime import now
       
     8 
       
     9 from cubicweb.sobjects.supervising import SendMailOp, SupervisionMailOp
       
    10 
       
    11 
       
    12 class SupervisingTC(EnvBasedTC):
       
    13 
       
    14     def setup_database(self):
       
    15         self.add_entity('Card', title=u"une news !", content=u"cubicweb c'est beau")
       
    16         self.add_entity('Card', title=u"une autre news !", content=u"cubicweb c'est beau")
       
    17         self.add_entity('Bookmark', title=u"un signet !", path=u"view?vid=index")
       
    18         self.add_entity('Comment', content=u"Yo !")
       
    19         self.execute('SET C comments B WHERE B title "une autre news !", C content "Yo !"')
       
    20         self.vreg.config.global_set_option('supervising-addrs', 'test@logilab.fr')
       
    21 
       
    22         
       
    23     def test_supervision(self):
       
    24         session = self.session()
       
    25         # do some modification
       
    26         ueid = self.execute('INSERT EUser X: X login "toto", X upassword "sosafe", X in_group G, X in_state S '
       
    27                             'WHERE G name "users", S name "activated"')[0][0]        
       
    28         self.execute('SET X last_login_time NOW WHERE X eid %(x)s', {'x': ueid}, 'x')
       
    29         self.execute('SET X in_state S WHERE X login "anon", S name "deactivated"')
       
    30         self.execute('DELETE Card B WHERE B title "une news !"')
       
    31         self.execute('SET X bookmarked_by U WHERE X is Bookmark, U eid %(x)s', {'x': ueid}, 'x')
       
    32         self.execute('SET X content "duh?" WHERE X is Comment')
       
    33         self.execute('DELETE X comments Y WHERE Y is Card, Y title "une autre news !"')
       
    34         # check only one supervision email operation
       
    35         sentops = [op for op in session.pending_operations
       
    36                    if isinstance(op, SupervisionMailOp)]
       
    37         self.assertEquals(len(sentops), 1)
       
    38         # check view content
       
    39         op = sentops[0]
       
    40         view = sentops[0]._get_view()
       
    41         self.assertEquals(view.recipients(), ['test@logilab.fr'])
       
    42         self.assertEquals(view.subject(), '[data supervision] changes summary')
       
    43         data = view.dispatch(changes=session.query_data('pendingchanges')).strip()
       
    44         data = re.sub('#\d+', '#EID', data)
       
    45         data = re.sub('/\d+', '/EID', data)
       
    46         self.assertTextEquals('''user admin has made the following change(s):
       
    47 
       
    48 * added euser #EID (toto)
       
    49   http://testing.fr/cubicweb/euser/toto
       
    50 
       
    51 * added relation in_group from euser #EID to egroup #EID
       
    52 
       
    53 * deleted card #EID (une news !)
       
    54 
       
    55 * added relation bookmarked_by from bookmark #EID to euser #EID
       
    56 
       
    57 * updated comment #EID (#EID)
       
    58   http://testing.fr/cubicweb/comment/EID
       
    59 
       
    60 * deleted relation comments from comment #EID to card #EID
       
    61 
       
    62 * changed state of euser #EID (anon)
       
    63   from state activated to state deactivated
       
    64   http://testing.fr/cubicweb/euser/anon''',
       
    65                               data)
       
    66         # check prepared email
       
    67         op._prepare_email()
       
    68         self.assertEquals(len(op.to_send), 1) 
       
    69         self.assert_(op.to_send[0][0])
       
    70         self.assertEquals(op.to_send[0][1], ['test@logilab.fr']) 
       
    71 
       
    72     def test_nonregr1(self):
       
    73         session = self.session()
       
    74         # do some unlogged modification
       
    75         self.execute('SET X last_login_time NOW WHERE X eid %(x)s', {'x': session.user.eid}, 'x')
       
    76         self.commit() # no crash
       
    77 
       
    78         
       
    79 if __name__ == '__main__':
       
    80     unittest_main()