author | Nicolas Chauvat <nicolas.chauvat@logilab.fr> |
Fri, 22 May 2009 01:05:08 +0200 | |
branch | stable |
changeset 1902 | d38a46498eb9 |
parent 1723 | 30c3a713ab61 |
child 1977 | 606923dff11b |
permissions | -rw-r--r-- |
0 | 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 cubicweb.sobjects.supervising import SendMailOp, SupervisionMailOp |
|
8 |
||
9 |
||
10 |
class SupervisingTC(EnvBasedTC): |
|
11 |
||
12 |
def setup_database(self): |
|
13 |
self.add_entity('Card', title=u"une news !", content=u"cubicweb c'est beau") |
|
14 |
self.add_entity('Card', title=u"une autre news !", content=u"cubicweb c'est beau") |
|
15 |
self.add_entity('Bookmark', title=u"un signet !", path=u"view?vid=index") |
|
16 |
self.add_entity('Comment', content=u"Yo !") |
|
17 |
self.execute('SET C comments B WHERE B title "une autre news !", C content "Yo !"') |
|
18 |
self.vreg.config.global_set_option('supervising-addrs', 'test@logilab.fr') |
|
19 |
||
1723 | 20 |
|
0 | 21 |
def test_supervision(self): |
22 |
session = self.session() |
|
23 |
# do some modification |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1016
diff
changeset
|
24 |
ueid = self.execute('INSERT CWUser X: X login "toto", X upassword "sosafe", X in_group G, X in_state S ' |
1723 | 25 |
'WHERE G name "users", S name "activated"')[0][0] |
0 | 26 |
self.execute('SET X last_login_time NOW WHERE X eid %(x)s', {'x': ueid}, 'x') |
27 |
self.execute('SET X in_state S WHERE X login "anon", S name "deactivated"') |
|
28 |
self.execute('DELETE Card B WHERE B title "une news !"') |
|
29 |
self.execute('SET X bookmarked_by U WHERE X is Bookmark, U eid %(x)s', {'x': ueid}, 'x') |
|
30 |
self.execute('SET X content "duh?" WHERE X is Comment') |
|
31 |
self.execute('DELETE X comments Y WHERE Y is Card, Y title "une autre news !"') |
|
32 |
# check only one supervision email operation |
|
33 |
sentops = [op for op in session.pending_operations |
|
34 |
if isinstance(op, SupervisionMailOp)] |
|
35 |
self.assertEquals(len(sentops), 1) |
|
36 |
# check view content |
|
37 |
op = sentops[0] |
|
38 |
view = sentops[0]._get_view() |
|
39 |
self.assertEquals(view.recipients(), ['test@logilab.fr']) |
|
40 |
self.assertEquals(view.subject(), '[data supervision] changes summary') |
|
1723 | 41 |
data = view.render(changes=session.query_data('pendingchanges')).strip() |
0 | 42 |
data = re.sub('#\d+', '#EID', data) |
43 |
data = re.sub('/\d+', '/EID', data) |
|
44 |
self.assertTextEquals('''user admin has made the following change(s): |
|
45 |
||
1902
d38a46498eb9
[test] fix tests after renaming e{user,group} to cw{user,group}
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1723
diff
changeset
|
46 |
* 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
|
47 |
http://testing.fr/cubicweb/cwuser/toto |
0 | 48 |
|
1902
d38a46498eb9
[test] fix tests after renaming e{user,group} to cw{user,group}
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1723
diff
changeset
|
49 |
* added relation in_group from cwuser #EID to cwgroup #EID |
0 | 50 |
|
51 |
* deleted card #EID (une news !) |
|
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 relation bookmarked_by from bookmark #EID to cwuser #EID |
0 | 54 |
|
55 |
* updated comment #EID (#EID) |
|
56 |
http://testing.fr/cubicweb/comment/EID |
|
57 |
||
58 |
* deleted relation comments from comment #EID to card #EID |
|
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 |
* changed state of cwuser #EID (anon) |
0 | 61 |
from state activated to state deactivated |
1902
d38a46498eb9
[test] fix tests after renaming e{user,group} to cw{user,group}
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1723
diff
changeset
|
62 |
http://testing.fr/cubicweb/cwuser/anon''', |
0 | 63 |
data) |
64 |
# check prepared email |
|
65 |
op._prepare_email() |
|
1723 | 66 |
self.assertEquals(len(op.to_send), 1) |
0 | 67 |
self.assert_(op.to_send[0][0]) |
1723 | 68 |
self.assertEquals(op.to_send[0][1], ['test@logilab.fr']) |
0 | 69 |
|
70 |
def test_nonregr1(self): |
|
71 |
session = self.session() |
|
72 |
# do some unlogged modification |
|
73 |
self.execute('SET X last_login_time NOW WHERE X eid %(x)s', {'x': session.user.eid}, 'x') |
|
74 |
self.commit() # no crash |
|
75 |
||
1723 | 76 |
|
0 | 77 |
if __name__ == '__main__': |
78 |
unittest_main() |