cubicweb/hooks/test/unittest_notificationhooks.py
changeset 11478 1817f8946c22
parent 11129 97095348b3ee
equal deleted inserted replaced
11477:3b4d41566de3 11478:1817f8946c22
       
     1 # copyright 2015 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
       
     2 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
       
     3 #
       
     4 # This file is part of CubicWeb.
       
     5 #
       
     6 # CubicWeb is free software: you can redistribute it and/or modify it under the
       
     7 # terms of the GNU Lesser General Public License as published by the Free
       
     8 # Software Foundation, either version 2.1 of the License, or (at your option)
       
     9 # any later version.
       
    10 #
       
    11 # CubicWeb is distributed in the hope that it will be useful, but WITHOUT
       
    12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
       
    13 # FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
       
    14 # details.
       
    15 #
       
    16 # You should have received a copy of the GNU Lesser General Public License along
       
    17 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
       
    18 """tests for notification hooks"""
       
    19 
       
    20 from cubicweb.devtools.testlib import CubicWebTC
       
    21 
       
    22 
       
    23 class NotificationHooksTC(CubicWebTC):
       
    24 
       
    25     def test_entity_update(self):
       
    26         """Check transaction_data['changes'] filled by "notifentityupdated" hook.
       
    27         """
       
    28         with self.admin_access.repo_cnx() as cnx:
       
    29             root = cnx.create_entity('Folder', name=u'a')
       
    30             cnx.commit()
       
    31             root.cw_set(name=u'b')
       
    32             self.assertIn('changes', cnx.transaction_data)
       
    33             self.assertEqual(cnx.transaction_data['changes'],
       
    34                              {root.eid: set([('name', u'a', u'b')])})
       
    35 
       
    36 
       
    37 if __name__ == '__main__':
       
    38     from logilab.common.testlib import unittest_main
       
    39     unittest_main()