author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Thu, 17 Nov 2011 18:21:04 +0100 | |
changeset 8088 | 145c0701bac6 |
parent 7791 | 31bb51ea5485 |
child 8483 | 4ba11607d84a |
permissions | -rw-r--r-- |
0 | 1 |
# -*- coding: utf-8 -*- |
6957
ffda12be2e9f
[repository] #1460066: backport datafeed cube as cubicweb source
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6798
diff
changeset
|
2 |
# copyright 2003-2011 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5030
diff
changeset
|
3 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5030
diff
changeset
|
4 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5030
diff
changeset
|
5 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5030
diff
changeset
|
6 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5030
diff
changeset
|
7 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5030
diff
changeset
|
8 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5030
diff
changeset
|
9 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5030
diff
changeset
|
10 |
# any later version. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5030
diff
changeset
|
11 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
12 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5030
diff
changeset
|
13 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5030
diff
changeset
|
14 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5030
diff
changeset
|
15 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5030
diff
changeset
|
16 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5030
diff
changeset
|
17 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5030
diff
changeset
|
18 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
0 | 19 |
"""functional tests for core hooks |
20 |
||
6957
ffda12be2e9f
[repository] #1460066: backport datafeed cube as cubicweb source
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6798
diff
changeset
|
21 |
Note: |
ffda12be2e9f
[repository] #1460066: backport datafeed cube as cubicweb source
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6798
diff
changeset
|
22 |
syncschema.py hooks are mostly tested in server/test/unittest_migrations.py |
0 | 23 |
""" |
6798
c3d5c0a215b7
missing future import
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6796
diff
changeset
|
24 |
from __future__ import with_statement |
0 | 25 |
|
2454
3648b718a0d3
add simple tests for standard metadata hooks
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2453
diff
changeset
|
26 |
from datetime import datetime |
3648b718a0d3
add simple tests for standard metadata hooks
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2453
diff
changeset
|
27 |
|
4689
4eb1f4490538
[test] skipping versions checking during test is enough, no need for monkey patch
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4667
diff
changeset
|
28 |
from cubicweb import ValidationError, AuthenticationError, BadConnectionId |
4eb1f4490538
[test] skipping versions checking during test is enough, no need for monkey patch
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4667
diff
changeset
|
29 |
from cubicweb.devtools.testlib import CubicWebTC |
1787 | 30 |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2746
diff
changeset
|
31 |
class CoreHooksTC(CubicWebTC): |
1787 | 32 |
|
0 | 33 |
def test_inlined(self): |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
34 |
self.assertEqual(self.repo.schema['sender'].inlined, True) |
0 | 35 |
self.execute('INSERT EmailAddress X: X address "toto@logilab.fr", X alias "hop"') |
36 |
self.execute('INSERT EmailPart X: X content_format "text/plain", X ordernum 1, X content "this is a test"') |
|
37 |
eeid = self.execute('INSERT Email X: X messageid "<1234>", X subject "test", X sender Y, X recipients Y, X parts P ' |
|
38 |
'WHERE Y is EmailAddress, P is EmailPart')[0][0] |
|
39 |
self.execute('SET X sender Y WHERE X is Email, Y is EmailAddress') |
|
40 |
rset = self.execute('Any S WHERE X sender S, X eid %s' % eeid) |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
41 |
self.assertEqual(len(rset), 1) |
1787 | 42 |
|
0 | 43 |
def test_html_tidy_hook(self): |
4055
03443dfb6fa4
test update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4051
diff
changeset
|
44 |
req = self.request() |
7245
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
45 |
entity = req.create_entity('Workflow', name=u'wf1', |
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
46 |
description_format=u'text/html', |
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
47 |
description=u'yo') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
48 |
self.assertEqual(entity.description, u'yo') |
7245
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
49 |
entity = req.create_entity('Workflow', name=u'wf2', |
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
50 |
description_format=u'text/html', |
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
51 |
description=u'<b>yo') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
52 |
self.assertEqual(entity.description, u'<b>yo</b>') |
7245
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
53 |
entity = req.create_entity('Workflow', name=u'wf3', |
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
54 |
description_format=u'text/html', |
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
55 |
description=u'<b>yo</b>') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
56 |
self.assertEqual(entity.description, u'<b>yo</b>') |
7245
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
57 |
entity = req.create_entity('Workflow', name=u'wf4', |
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
58 |
description_format=u'text/html', |
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
59 |
description=u'<b>R&D</b>') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
60 |
self.assertEqual(entity.description, u'<b>R&D</b>') |
7245
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
61 |
entity = req.create_entity('Workflow', name=u'wf5', |
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
62 |
description_format=u'text/html', |
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
63 |
description=u"<div>c'est <b>l'été") |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
64 |
self.assertEqual(entity.description, u"<div>c'est <b>l'été</b></div>") |
0 | 65 |
|
66 |
def test_nonregr_html_tidy_hook_no_update(self): |
|
7245
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
67 |
entity = self.request().create_entity('Workflow', name=u'wf1', |
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
68 |
description_format=u'text/html', |
2f72b958ae22
small reformatting (but test still fails)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7244
diff
changeset
|
69 |
description=u'yo') |
3431
6944a92c16f2
move hooks test to the hooks package, update them to work with a minimal schema
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2968
diff
changeset
|
70 |
entity.set_attributes(name=u'wf2') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
71 |
self.assertEqual(entity.description, u'yo') |
3431
6944a92c16f2
move hooks test to the hooks package, update them to work with a minimal schema
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2968
diff
changeset
|
72 |
entity.set_attributes(description=u'R&D<p>yo') |
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
73 |
entity.cw_attr_cache.pop('description') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
74 |
self.assertEqual(entity.description, u'R&D<p>yo</p>') |
1787 | 75 |
|
2921
8e2544e78a5e
test and fix rset returned by SET query
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
76 |
def test_metadata_cwuri(self): |
4055
03443dfb6fa4
test update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4051
diff
changeset
|
77 |
entity = self.request().create_entity('Workflow', name=u'wf1') |
6965
343c79c3f04a
[test] update cwuri test
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6798
diff
changeset
|
78 |
self.assertEqual(entity.cwuri, self.repo.config['base-url'] + str(entity.eid)) |
2921
8e2544e78a5e
test and fix rset returned by SET query
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
79 |
|
8e2544e78a5e
test and fix rset returned by SET query
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
80 |
def test_metadata_creation_modification_date(self): |
8e2544e78a5e
test and fix rset returned by SET query
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
81 |
_now = datetime.now() |
4055
03443dfb6fa4
test update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4051
diff
changeset
|
82 |
entity = self.request().create_entity('Workflow', name=u'wf1') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
83 |
self.assertEqual((entity.creation_date - _now).seconds, 0) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
84 |
self.assertEqual((entity.modification_date - _now).seconds, 0) |
2921
8e2544e78a5e
test and fix rset returned by SET query
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
85 |
|
8e2544e78a5e
test and fix rset returned by SET query
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
86 |
def test_metadata_created_by(self): |
4055
03443dfb6fa4
test update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4051
diff
changeset
|
87 |
entity = self.request().create_entity('Bookmark', title=u'wf1', path=u'/view') |
2921
8e2544e78a5e
test and fix rset returned by SET query
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
88 |
self.commit() # fire operations |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
89 |
self.assertEqual(len(entity.created_by), 1) # make sure we have only one creator |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
90 |
self.assertEqual(entity.created_by[0].eid, self.session.user.eid) |
2921
8e2544e78a5e
test and fix rset returned by SET query
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
91 |
|
8e2544e78a5e
test and fix rset returned by SET query
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
92 |
def test_metadata_owned_by(self): |
4055
03443dfb6fa4
test update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4051
diff
changeset
|
93 |
entity = self.request().create_entity('Bookmark', title=u'wf1', path=u'/view') |
2921
8e2544e78a5e
test and fix rset returned by SET query
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
94 |
self.commit() # fire operations |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
95 |
self.assertEqual(len(entity.owned_by), 1) # make sure we have only one owner |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
96 |
self.assertEqual(entity.owned_by[0].eid, self.session.user.eid) |
2921
8e2544e78a5e
test and fix rset returned by SET query
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
97 |
|
4051
eec34250a645
move hook tests to hooks package tests
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3536
diff
changeset
|
98 |
def test_user_login_stripped(self): |
7244
a918f76441ce
fix tests broken by fcb8932082a5 (continued)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7192
diff
changeset
|
99 |
req = self.request() |
a918f76441ce
fix tests broken by fcb8932082a5 (continued)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7192
diff
changeset
|
100 |
u = self.create_user(req, ' joe ') |
4051
eec34250a645
move hook tests to hooks package tests
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3536
diff
changeset
|
101 |
tname = self.execute('Any L WHERE E login L, E eid %(e)s', |
eec34250a645
move hook tests to hooks package tests
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3536
diff
changeset
|
102 |
{'e': u.eid})[0][0] |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
103 |
self.assertEqual(tname, 'joe') |
4051
eec34250a645
move hook tests to hooks package tests
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3536
diff
changeset
|
104 |
self.execute('SET X login " jijoe " WHERE X eid %(x)s', {'x': u.eid}) |
eec34250a645
move hook tests to hooks package tests
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3536
diff
changeset
|
105 |
tname = self.execute('Any L WHERE E login L, E eid %(e)s', |
eec34250a645
move hook tests to hooks package tests
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3536
diff
changeset
|
106 |
{'e': u.eid})[0][0] |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
107 |
self.assertEqual(tname, 'jijoe') |
4051
eec34250a645
move hook tests to hooks package tests
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3536
diff
changeset
|
108 |
|
0 | 109 |
|
110 |
||
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2746
diff
changeset
|
111 |
class UserGroupHooksTC(CubicWebTC): |
1787 | 112 |
|
0 | 113 |
def test_user_synchronization(self): |
7244
a918f76441ce
fix tests broken by fcb8932082a5 (continued)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7192
diff
changeset
|
114 |
req = self.request() |
a918f76441ce
fix tests broken by fcb8932082a5 (continued)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7192
diff
changeset
|
115 |
self.create_user(req, 'toto', password='hop', commit=False) |
0 | 116 |
self.assertRaises(AuthenticationError, |
4067
c49fba955a9c
password should now be named
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4055
diff
changeset
|
117 |
self.repo.connect, u'toto', password='hop') |
0 | 118 |
self.commit() |
4067
c49fba955a9c
password should now be named
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4055
diff
changeset
|
119 |
cnxid = self.repo.connect(u'toto', password='hop') |
7791
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7245
diff
changeset
|
120 |
self.assertNotEqual(cnxid, self.session.id) |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1251
diff
changeset
|
121 |
self.execute('DELETE CWUser X WHERE X login "toto"') |
0 | 122 |
self.repo.execute(cnxid, 'State X') |
123 |
self.commit() |
|
124 |
self.assertRaises(BadConnectionId, |
|
125 |
self.repo.execute, cnxid, 'State X') |
|
126 |
||
127 |
def test_user_group_synchronization(self): |
|
128 |
user = self.session.user |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
129 |
self.assertEqual(user.groups, set(('managers',))) |
0 | 130 |
self.execute('SET X in_group G WHERE X eid %s, G name "guests"' % user.eid) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
131 |
self.assertEqual(user.groups, set(('managers',))) |
0 | 132 |
self.commit() |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
133 |
self.assertEqual(user.groups, set(('managers', 'guests'))) |
0 | 134 |
self.execute('DELETE X in_group G WHERE X eid %s, G name "guests"' % user.eid) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
135 |
self.assertEqual(user.groups, set(('managers', 'guests'))) |
0 | 136 |
self.commit() |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
137 |
self.assertEqual(user.groups, set(('managers',))) |
0 | 138 |
|
139 |
def test_user_composite_owner(self): |
|
7244
a918f76441ce
fix tests broken by fcb8932082a5 (continued)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7192
diff
changeset
|
140 |
req = self.request() |
a918f76441ce
fix tests broken by fcb8932082a5 (continued)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7192
diff
changeset
|
141 |
ueid = self.create_user(req, 'toto').eid |
0 | 142 |
# composite of euser should be owned by the euser regardless of who created it |
143 |
self.execute('INSERT EmailAddress X: X address "toto@logilab.fr", U use_email X ' |
|
144 |
'WHERE U login "toto"') |
|
145 |
self.commit() |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
146 |
self.assertEqual(self.execute('Any A WHERE X owned_by U, U use_email X,' |
0 | 147 |
'U login "toto", X address A')[0][0], |
148 |
'toto@logilab.fr') |
|
149 |
||
150 |
def test_no_created_by_on_deleted_entity(self): |
|
151 |
eid = self.execute('INSERT EmailAddress X: X address "toto@logilab.fr"')[0][0] |
|
152 |
self.execute('DELETE EmailAddress X WHERE X eid %s' % eid) |
|
153 |
self.commit() |
|
7791
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7245
diff
changeset
|
154 |
self.assertFalse(self.execute('Any X WHERE X created_by Y, X eid >= %(x)s', {'x': eid})) |
1787 | 155 |
|
2746 | 156 |
|
1787 | 157 |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2746
diff
changeset
|
158 |
class SchemaHooksTC(CubicWebTC): |
1787 | 159 |
|
0 | 160 |
def test_duplicate_etype_error(self): |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1251
diff
changeset
|
161 |
# check we can't add a CWEType or CWRType entity if it already exists one |
0 | 162 |
# with the same name |
3431
6944a92c16f2
move hooks test to the hooks package, update them to work with a minimal schema
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2968
diff
changeset
|
163 |
self.assertRaises(ValidationError, |
6944a92c16f2
move hooks test to the hooks package, update them to work with a minimal schema
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2968
diff
changeset
|
164 |
self.execute, 'INSERT CWEType X: X name "CWUser"') |
6944a92c16f2
move hooks test to the hooks package, update them to work with a minimal schema
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2968
diff
changeset
|
165 |
self.assertRaises(ValidationError, |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1251
diff
changeset
|
166 |
self.execute, 'INSERT CWRType X: X name "in_group"') |
1787 | 167 |
|
0 | 168 |
def test_validation_unique_constraint(self): |
169 |
self.assertRaises(ValidationError, |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1251
diff
changeset
|
170 |
self.execute, 'INSERT CWUser X: X login "admin"') |
0 | 171 |
try: |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1251
diff
changeset
|
172 |
self.execute('INSERT CWUser X: X login "admin"') |
0 | 173 |
except ValidationError, ex: |
174 |
self.assertIsInstance(ex.entity, int) |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5895
diff
changeset
|
175 |
self.assertEqual(ex.errors, {'login-subject': 'the value "admin" is already used, use another one'}) |
0 | 176 |
|
177 |
||
178 |
if __name__ == '__main__': |
|
6957
ffda12be2e9f
[repository] #1460066: backport datafeed cube as cubicweb source
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6798
diff
changeset
|
179 |
from logilab.common.testlib import unittest_main |
0 | 180 |
unittest_main() |