author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Mon, 08 Feb 2010 12:01:15 +0100 | |
changeset 4491 | a0f48c31b58a |
parent 4252 | 6c4f109c2b03 |
child 4842 | 3653e09024a1 |
permissions | -rw-r--r-- |
0 | 1 |
# -*- coding: iso-8859-1 -*- |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1902
diff
changeset
|
2 |
""" |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1902
diff
changeset
|
3 |
|
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1902
diff
changeset
|
4 |
:organization: Logilab |
4212
ab6573088b4a
update copyright: welcome 2010
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2922
diff
changeset
|
5 |
:copyright: 2001-2010 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1902
diff
changeset
|
6 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1902
diff
changeset
|
7 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1902
diff
changeset
|
8 |
""" |
0 | 9 |
import re |
10 |
||
11 |
from logilab.common.testlib import unittest_main |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
12 |
from cubicweb.devtools.testlib import CubicWebTC |
0 | 13 |
|
14 |
from cubicweb.sobjects.supervising import SendMailOp, SupervisionMailOp |
|
15 |
||
16 |
||
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
17 |
class SupervisingTC(CubicWebTC): |
0 | 18 |
|
19 |
def setup_database(self): |
|
4049
5838a4b0766d
3.5 api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2968
diff
changeset
|
20 |
req = self.request() |
5838a4b0766d
3.5 api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2968
diff
changeset
|
21 |
req.create_entity('Card', title=u"une news !", content=u"cubicweb c'est beau") |
5838a4b0766d
3.5 api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2968
diff
changeset
|
22 |
req.create_entity('Card', title=u"une autre news !", content=u"cubicweb c'est beau") |
5838a4b0766d
3.5 api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2968
diff
changeset
|
23 |
req.create_entity('Bookmark', title=u"un signet !", path=u"view?vid=index") |
5838a4b0766d
3.5 api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2968
diff
changeset
|
24 |
req.create_entity('Comment', content=u"Yo !") |
0 | 25 |
self.execute('SET C comments B WHERE B title "une autre news !", C content "Yo !"') |
26 |
self.vreg.config.global_set_option('supervising-addrs', 'test@logilab.fr') |
|
27 |
||
1723 | 28 |
|
0 | 29 |
def test_supervision(self): |
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
30 |
session = self.session |
0 | 31 |
# do some modification |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
32 |
user = self.execute('INSERT CWUser X: X login "toto", X upassword "sosafe", X in_group G ' |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
33 |
'WHERE G name "users"').get_entity(0, 0) |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
34 |
self.execute('SET X last_login_time NOW WHERE X eid %(x)s', {'x': user.eid}, 'x') |
0 | 35 |
self.execute('DELETE Card B WHERE B title "une news !"') |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
36 |
self.execute('SET X bookmarked_by U WHERE X is Bookmark, U eid %(x)s', {'x': user.eid}, 'x') |
0 | 37 |
self.execute('SET X content "duh?" WHERE X is Comment') |
38 |
self.execute('DELETE X comments Y WHERE Y is Card, Y title "une autre news !"') |
|
39 |
# check only one supervision email operation |
|
40 |
sentops = [op for op in session.pending_operations |
|
41 |
if isinstance(op, SupervisionMailOp)] |
|
42 |
self.assertEquals(len(sentops), 1) |
|
43 |
# check view content |
|
44 |
op = sentops[0] |
|
45 |
view = sentops[0]._get_view() |
|
46 |
self.assertEquals(view.recipients(), ['test@logilab.fr']) |
|
47 |
self.assertEquals(view.subject(), '[data supervision] changes summary') |
|
2102
268659907769
finish to update transaction data api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
48 |
data = view.render(changes=session.transaction_data.get('pendingchanges')).strip() |
0 | 49 |
data = re.sub('#\d+', '#EID', data) |
50 |
data = re.sub('/\d+', '/EID', data) |
|
51 |
self.assertTextEquals('''user admin has made the following change(s): |
|
52 |
||
1902
d38a46498eb9
[test] fix tests after renaming e{user,group} to cw{user,group}
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1723
diff
changeset
|
53 |
* added cwuser #EID (toto) |
d38a46498eb9
[test] fix tests after renaming e{user,group} to cw{user,group}
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1723
diff
changeset
|
54 |
http://testing.fr/cubicweb/cwuser/toto |
0 | 55 |
|
1902
d38a46498eb9
[test] fix tests after renaming e{user,group} to cw{user,group}
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1723
diff
changeset
|
56 |
* added relation in_group from cwuser #EID to cwgroup #EID |
0 | 57 |
|
58 |
* deleted card #EID (une news !) |
|
59 |
||
1902
d38a46498eb9
[test] fix tests after renaming e{user,group} to cw{user,group}
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1723
diff
changeset
|
60 |
* added relation bookmarked_by from bookmark #EID to cwuser #EID |
0 | 61 |
|
62 |
* updated comment #EID (#EID) |
|
63 |
http://testing.fr/cubicweb/comment/EID |
|
64 |
||
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
65 |
* deleted relation comments from comment #EID to card #EID''', |
0 | 66 |
data) |
67 |
# check prepared email |
|
68 |
op._prepare_email() |
|
1723 | 69 |
self.assertEquals(len(op.to_send), 1) |
0 | 70 |
self.assert_(op.to_send[0][0]) |
1723 | 71 |
self.assertEquals(op.to_send[0][1], ['test@logilab.fr']) |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
72 |
self.commit() |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
73 |
# some other changes ####### |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
74 |
user.fire_transition('deactivate') |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
75 |
sentops = [op for op in session.pending_operations |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
76 |
if isinstance(op, SupervisionMailOp)] |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
77 |
self.assertEquals(len(sentops), 1) |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
78 |
# check view content |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
79 |
op = sentops[0] |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
80 |
view = sentops[0]._get_view() |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
81 |
data = view.render(changes=session.transaction_data.get('pendingchanges')).strip() |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
82 |
data = re.sub('#\d+', '#EID', data) |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
83 |
data = re.sub('/\d+', '/EID', data) |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
84 |
self.assertTextEquals('''user admin has made the following change(s): |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
85 |
|
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
86 |
* changed state of cwuser #EID (toto) |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
87 |
from state activated to state deactivated |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
88 |
http://testing.fr/cubicweb/cwuser/toto''', |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
89 |
data) |
0 | 90 |
|
91 |
def test_nonregr1(self): |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2102
diff
changeset
|
92 |
session = self.session |
0 | 93 |
# do some unlogged modification |
94 |
self.execute('SET X last_login_time NOW WHERE X eid %(x)s', {'x': session.user.eid}, 'x') |
|
95 |
self.commit() # no crash |
|
96 |
||
1723 | 97 |
|
0 | 98 |
if __name__ == '__main__': |
99 |
unittest_main() |