author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Mon, 06 Jul 2009 14:52:05 +0200 | |
branch | stable |
changeset 2285 | 1cf9e44e2f1f |
parent 2102 | 268659907769 |
child 2773 | b2530e3e0afb |
child 2920 | 64322aa83a1d |
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 |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1902
diff
changeset
|
5 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
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 |
|
12 |
from cubicweb.devtools.apptest import EnvBasedTC |
|
13 |
||
14 |
from cubicweb.sobjects.supervising import SendMailOp, SupervisionMailOp |
|
15 |
||
16 |
||
17 |
class SupervisingTC(EnvBasedTC): |
|
18 |
||
19 |
def setup_database(self): |
|
20 |
self.add_entity('Card', title=u"une news !", content=u"cubicweb c'est beau") |
|
21 |
self.add_entity('Card', title=u"une autre news !", content=u"cubicweb c'est beau") |
|
22 |
self.add_entity('Bookmark', title=u"un signet !", path=u"view?vid=index") |
|
23 |
self.add_entity('Comment', content=u"Yo !") |
|
24 |
self.execute('SET C comments B WHERE B title "une autre news !", C content "Yo !"') |
|
25 |
self.vreg.config.global_set_option('supervising-addrs', 'test@logilab.fr') |
|
26 |
||
1723 | 27 |
|
0 | 28 |
def test_supervision(self): |
29 |
session = self.session() |
|
30 |
# do some modification |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1016
diff
changeset
|
31 |
ueid = self.execute('INSERT CWUser X: X login "toto", X upassword "sosafe", X in_group G, X in_state S ' |
1723 | 32 |
'WHERE G name "users", S name "activated"')[0][0] |
0 | 33 |
self.execute('SET X last_login_time NOW WHERE X eid %(x)s', {'x': ueid}, 'x') |
34 |
self.execute('SET X in_state S WHERE X login "anon", S name "deactivated"') |
|
35 |
self.execute('DELETE Card B WHERE B title "une news !"') |
|
36 |
self.execute('SET X bookmarked_by U WHERE X is Bookmark, U eid %(x)s', {'x': ueid}, 'x') |
|
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 |
||
65 |
* deleted relation comments from comment #EID to card #EID |
|
66 |
||
1902
d38a46498eb9
[test] fix tests after renaming e{user,group} to cw{user,group}
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1723
diff
changeset
|
67 |
* changed state of cwuser #EID (anon) |
0 | 68 |
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
|
69 |
http://testing.fr/cubicweb/cwuser/anon''', |
0 | 70 |
data) |
71 |
# check prepared email |
|
72 |
op._prepare_email() |
|
1723 | 73 |
self.assertEquals(len(op.to_send), 1) |
0 | 74 |
self.assert_(op.to_send[0][0]) |
1723 | 75 |
self.assertEquals(op.to_send[0][1], ['test@logilab.fr']) |
0 | 76 |
|
77 |
def test_nonregr1(self): |
|
78 |
session = self.session() |
|
79 |
# do some unlogged modification |
|
80 |
self.execute('SET X last_login_time NOW WHERE X eid %(x)s', {'x': session.user.eid}, 'x') |
|
81 |
self.commit() # no crash |
|
82 |
||
1723 | 83 |
|
0 | 84 |
if __name__ == '__main__': |
85 |
unittest_main() |