author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Wed, 21 Oct 2009 14:31:15 +0200 | |
branch | stable |
changeset 3771 | 234b003f0fe0 |
parent 2923 | b97a0f8dd4dc |
child 3777 | 3ef8cdb5fb1c |
child 4212 | ab6573088b4a |
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:
1954
diff
changeset
|
2 |
"""unit tests for module cubicweb.server.repository |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1954
diff
changeset
|
3 |
|
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1954
diff
changeset
|
4 |
:organization: Logilab |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1954
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:
1954
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:
1954
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:
1954
diff
changeset
|
8 |
""" |
0 | 9 |
|
10 |
import os |
|
11 |
import sys |
|
12 |
import threading |
|
13 |
import time |
|
14 |
from copy import deepcopy |
|
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
17
diff
changeset
|
15 |
from datetime import datetime |
1251
af40e615dc89
introduce a 'cw_' prefix on entity table and column names so we don't conflict with sql or DBMS specific keywords
sylvain.thenault@logilab.fr
parents:
17
diff
changeset
|
16 |
|
0 | 17 |
from logilab.common.testlib import TestCase, unittest_main |
18 |
||
19 |
from yams.constraints import UniqueConstraint |
|
20 |
||
21 |
from cubicweb import BadConnectionId, RepositoryError, ValidationError, UnknownEid, AuthenticationError |
|
22 |
from cubicweb.schema import CubicWebSchema, RQLConstraint |
|
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2642
diff
changeset
|
23 |
from cubicweb.dbapi import connect, repo_connect, multiple_connections_unfix |
1251
af40e615dc89
introduce a 'cw_' prefix on entity table and column names so we don't conflict with sql or DBMS specific keywords
sylvain.thenault@logilab.fr
parents:
17
diff
changeset
|
24 |
from cubicweb.devtools.apptest import RepositoryBasedTC |
af40e615dc89
introduce a 'cw_' prefix on entity table and column names so we don't conflict with sql or DBMS specific keywords
sylvain.thenault@logilab.fr
parents:
17
diff
changeset
|
25 |
from cubicweb.devtools.repotest import tuplify |
1787 | 26 |
from cubicweb.server import repository |
1251
af40e615dc89
introduce a 'cw_' prefix on entity table and column names so we don't conflict with sql or DBMS specific keywords
sylvain.thenault@logilab.fr
parents:
17
diff
changeset
|
27 |
from cubicweb.server.sqlutils import SQL_PREFIX |
0 | 28 |
|
29 |
||
30 |
# start name server anyway, process will fail if already running |
|
31 |
os.system('pyro-ns >/dev/null 2>/dev/null &') |
|
32 |
||
33 |
||
34 |
class RepositoryTC(RepositoryBasedTC): |
|
35 |
""" singleton providing access to a persistent storage for entities |
|
36 |
and relation |
|
37 |
""" |
|
1787 | 38 |
|
0 | 39 |
# def setUp(self): |
40 |
# pass |
|
1787 | 41 |
|
0 | 42 |
# def tearDown(self): |
43 |
# self.repo.config.db_perms = True |
|
44 |
# cnxid = self.repo.connect(*self.default_user_password()) |
|
45 |
# for etype in ('Affaire', 'Note', 'Societe', 'Personne'): |
|
46 |
# self.repo.execute(cnxid, 'DELETE %s X' % etype) |
|
47 |
# self.repo.commit(cnxid) |
|
48 |
# self.repo.close(cnxid) |
|
49 |
||
50 |
def test_fill_schema(self): |
|
51 |
self.repo.schema = CubicWebSchema(self.repo.config.appid) |
|
52 |
self.repo.config._cubes = None # avoid assertion error |
|
53 |
self.repo.fill_schema() |
|
54 |
pool = self.repo._get_pool() |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1263
diff
changeset
|
55 |
table = SQL_PREFIX + 'CWEType' |
1251
af40e615dc89
introduce a 'cw_' prefix on entity table and column names so we don't conflict with sql or DBMS specific keywords
sylvain.thenault@logilab.fr
parents:
17
diff
changeset
|
56 |
namecol = SQL_PREFIX + 'name' |
af40e615dc89
introduce a 'cw_' prefix on entity table and column names so we don't conflict with sql or DBMS specific keywords
sylvain.thenault@logilab.fr
parents:
17
diff
changeset
|
57 |
finalcol = SQL_PREFIX + 'final' |
0 | 58 |
try: |
2200
25bb65dc4559
test fixes, all server tests ok, except unittest_migractions (due to inter-tests-side-effects...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
59 |
cu = self.session.system_sql('SELECT %s FROM %s WHERE %s is NULL' % ( |
1251
af40e615dc89
introduce a 'cw_' prefix on entity table and column names so we don't conflict with sql or DBMS specific keywords
sylvain.thenault@logilab.fr
parents:
17
diff
changeset
|
60 |
namecol, table, finalcol)) |
2200
25bb65dc4559
test fixes, all server tests ok, except unittest_migractions (due to inter-tests-side-effects...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
61 |
self.assertEquals(cu.fetchall(), []) |
25bb65dc4559
test fixes, all server tests ok, except unittest_migractions (due to inter-tests-side-effects...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
62 |
cu = self.session.system_sql('SELECT %s FROM %s WHERE %s=%%(final)s ORDER BY %s' |
1251
af40e615dc89
introduce a 'cw_' prefix on entity table and column names so we don't conflict with sql or DBMS specific keywords
sylvain.thenault@logilab.fr
parents:
17
diff
changeset
|
63 |
% (namecol, table, finalcol, namecol), {'final': 'TRUE'}) |
2200
25bb65dc4559
test fixes, all server tests ok, except unittest_migractions (due to inter-tests-side-effects...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
64 |
self.assertEquals(cu.fetchall(), [(u'Boolean',), (u'Bytes',), |
0 | 65 |
(u'Date',), (u'Datetime',), |
66 |
(u'Decimal',),(u'Float',), |
|
67 |
(u'Int',), |
|
68 |
(u'Interval',), (u'Password',), |
|
69 |
(u'String',), (u'Time',)]) |
|
70 |
finally: |
|
71 |
self.repo._free_pool(pool) |
|
1787 | 72 |
|
0 | 73 |
def test_schema_has_owner(self): |
74 |
repo = self.repo |
|
75 |
cnxid = repo.connect(*self.default_user_password()) |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1263
diff
changeset
|
76 |
self.failIf(repo.execute(cnxid, 'CWEType X WHERE NOT X owned_by U')) |
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1263
diff
changeset
|
77 |
self.failIf(repo.execute(cnxid, 'CWRType X WHERE NOT X owned_by U')) |
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1263
diff
changeset
|
78 |
self.failIf(repo.execute(cnxid, 'CWAttribute X WHERE NOT X owned_by U')) |
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1263
diff
changeset
|
79 |
self.failIf(repo.execute(cnxid, 'CWRelation X WHERE NOT X owned_by U')) |
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1263
diff
changeset
|
80 |
self.failIf(repo.execute(cnxid, 'CWConstraint X WHERE NOT X owned_by U')) |
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1263
diff
changeset
|
81 |
self.failIf(repo.execute(cnxid, 'CWConstraintType X WHERE NOT X owned_by U')) |
1787 | 82 |
|
0 | 83 |
def test_connect(self): |
84 |
login, passwd = self.default_user_password() |
|
85 |
self.assert_(self.repo.connect(login, passwd)) |
|
86 |
self.assertRaises(AuthenticationError, |
|
87 |
self.repo.connect, login, 'nimportnawak') |
|
88 |
self.assertRaises(AuthenticationError, |
|
89 |
self.repo.connect, login, None) |
|
90 |
self.assertRaises(AuthenticationError, |
|
91 |
self.repo.connect, None, None) |
|
1787 | 92 |
|
0 | 93 |
def test_execute(self): |
94 |
repo = self.repo |
|
95 |
cnxid = repo.connect(*self.default_user_password()) |
|
96 |
repo.execute(cnxid, 'Any X') |
|
97 |
repo.execute(cnxid, 'Any X where X is Personne') |
|
98 |
repo.execute(cnxid, 'Any X where X is Personne, X nom ~= "to"') |
|
99 |
repo.execute(cnxid, 'Any X WHERE X has_text %(text)s', {'text': u'\xe7a'}) |
|
100 |
repo.close(cnxid) |
|
1787 | 101 |
|
0 | 102 |
def test_login_upassword_accent(self): |
103 |
repo = self.repo |
|
104 |
cnxid = repo.connect(*self.default_user_password()) |
|
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
105 |
repo.execute(cnxid, 'INSERT CWUser X: X login %(login)s, X upassword %(passwd)s, X in_group G WHERE G name "users"', |
0 | 106 |
{'login': u"barnab�", 'passwd': u"h�h�h�".encode('UTF8')}) |
107 |
repo.commit(cnxid) |
|
108 |
repo.close(cnxid) |
|
109 |
self.assert_(repo.connect(u"barnab�", u"h�h�h�".encode('UTF8'))) |
|
1787 | 110 |
|
0 | 111 |
def test_invalid_entity_rollback(self): |
3771 | 112 |
cnxid = self.repo.connect(*self.default_user_password()) |
1787 | 113 |
# no group |
3771 | 114 |
self.repo.execute(cnxid, |
115 |
'INSERT CWUser X: X login %(login)s, X upassword %(passwd)s', |
|
116 |
{'login': u"tutetute", 'passwd': 'tutetute'}) |
|
117 |
self.assertRaises(ValidationError, self.repo.commit, cnxid) |
|
118 |
self.failIf(self.repo.execute(cnxid, 'CWUser X WHERE X login "tutetute"')) |
|
1787 | 119 |
|
0 | 120 |
def test_close(self): |
121 |
repo = self.repo |
|
122 |
cnxid = repo.connect(*self.default_user_password()) |
|
123 |
self.assert_(cnxid) |
|
124 |
repo.close(cnxid) |
|
125 |
self.assertRaises(BadConnectionId, repo.execute, cnxid, 'Any X') |
|
1787 | 126 |
|
0 | 127 |
def test_invalid_cnxid(self): |
128 |
self.assertRaises(BadConnectionId, self.repo.execute, 0, 'Any X') |
|
129 |
self.assertRaises(BadConnectionId, self.repo.close, None) |
|
1787 | 130 |
|
0 | 131 |
def test_shared_data(self): |
132 |
repo = self.repo |
|
133 |
cnxid = repo.connect(*self.default_user_password()) |
|
134 |
repo.set_shared_data(cnxid, 'data', 4) |
|
135 |
cnxid2 = repo.connect(*self.default_user_password()) |
|
136 |
self.assertEquals(repo.get_shared_data(cnxid, 'data'), 4) |
|
137 |
self.assertEquals(repo.get_shared_data(cnxid2, 'data'), None) |
|
138 |
repo.set_shared_data(cnxid2, 'data', 5) |
|
139 |
self.assertEquals(repo.get_shared_data(cnxid, 'data'), 4) |
|
140 |
self.assertEquals(repo.get_shared_data(cnxid2, 'data'), 5) |
|
141 |
repo.get_shared_data(cnxid2, 'data', pop=True) |
|
142 |
self.assertEquals(repo.get_shared_data(cnxid, 'data'), 4) |
|
143 |
self.assertEquals(repo.get_shared_data(cnxid2, 'data'), None) |
|
144 |
repo.close(cnxid) |
|
145 |
repo.close(cnxid2) |
|
146 |
self.assertRaises(BadConnectionId, repo.get_shared_data, cnxid, 'data') |
|
147 |
self.assertRaises(BadConnectionId, repo.get_shared_data, cnxid2, 'data') |
|
148 |
self.assertRaises(BadConnectionId, repo.set_shared_data, cnxid, 'data', 1) |
|
149 |
self.assertRaises(BadConnectionId, repo.set_shared_data, cnxid2, 'data', 1) |
|
150 |
||
151 |
def test_check_session(self): |
|
152 |
repo = self.repo |
|
153 |
cnxid = repo.connect(*self.default_user_password()) |
|
154 |
self.assertEquals(repo.check_session(cnxid), None) |
|
155 |
repo.close(cnxid) |
|
156 |
self.assertRaises(BadConnectionId, repo.check_session, cnxid) |
|
157 |
||
158 |
def test_transaction_base(self): |
|
159 |
repo = self.repo |
|
160 |
cnxid = repo.connect(*self.default_user_password()) |
|
161 |
# check db state |
|
162 |
result = repo.execute(cnxid, 'Personne X') |
|
163 |
self.assertEquals(result.rowcount, 0) |
|
164 |
# rollback entity insertion |
|
165 |
repo.execute(cnxid, "INSERT Personne X: X nom 'bidule'") |
|
166 |
result = repo.execute(cnxid, 'Personne X') |
|
167 |
self.assertEquals(result.rowcount, 1) |
|
168 |
repo.rollback(cnxid) |
|
169 |
result = repo.execute(cnxid, 'Personne X') |
|
170 |
self.assertEquals(result.rowcount, 0, result.rows) |
|
171 |
# commit |
|
172 |
repo.execute(cnxid, "INSERT Personne X: X nom 'bidule'") |
|
173 |
repo.commit(cnxid) |
|
174 |
result = repo.execute(cnxid, 'Personne X') |
|
175 |
self.assertEquals(result.rowcount, 1) |
|
176 |
||
177 |
def test_transaction_base2(self): |
|
178 |
repo = self.repo |
|
179 |
cnxid = repo.connect(*self.default_user_password()) |
|
180 |
# rollback relation insertion |
|
181 |
repo.execute(cnxid, "SET U in_group G WHERE U login 'admin', G name 'guests'") |
|
182 |
result = repo.execute(cnxid, "Any U WHERE U in_group G, U login 'admin', G name 'guests'") |
|
183 |
self.assertEquals(result.rowcount, 1) |
|
184 |
repo.rollback(cnxid) |
|
185 |
result = repo.execute(cnxid, "Any U WHERE U in_group G, U login 'admin', G name 'guests'") |
|
186 |
self.assertEquals(result.rowcount, 0, result.rows) |
|
1787 | 187 |
|
0 | 188 |
def test_transaction_base3(self): |
189 |
repo = self.repo |
|
190 |
cnxid = repo.connect(*self.default_user_password()) |
|
191 |
# rollback state change which trigger TrInfo insertion |
|
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
192 |
user = repo._get_session(cnxid).user |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
193 |
user.fire_transition('deactivate') |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
194 |
rset = repo.execute(cnxid, 'TrInfo T WHERE T wf_info_for X, X eid %(x)s', {'x': user.eid}) |
0 | 195 |
self.assertEquals(len(rset), 1) |
196 |
repo.rollback(cnxid) |
|
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
197 |
rset = repo.execute(cnxid, 'TrInfo T WHERE T wf_info_for X, X eid %(x)s', {'x': user.eid}) |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
198 |
self.assertEquals(len(rset), 0) |
1787 | 199 |
|
0 | 200 |
def test_transaction_interleaved(self): |
201 |
self.skip('implement me') |
|
202 |
||
1880
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
203 |
def test_close_wait_processing_request(self): |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
204 |
repo = self.repo |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
205 |
cnxid = repo.connect(*self.default_user_password()) |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
206 |
repo.execute(cnxid, 'INSERT CWUser X: X login "toto", X upassword "tutu", X in_group G WHERE G name "users"') |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
207 |
repo.commit(cnxid) |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
208 |
# close has to be in the thread due to sqlite limitations |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
209 |
def close_in_a_few_moment(): |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
210 |
time.sleep(0.1) |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
211 |
repo.close(cnxid) |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
212 |
t = threading.Thread(target=close_in_a_few_moment) |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
213 |
t.start() |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
214 |
try: |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
215 |
repo.execute(cnxid, 'DELETE CWUser X WHERE X login "toto"') |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
216 |
repo.commit(cnxid) |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
217 |
finally: |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
218 |
t.join() |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
219 |
|
0 | 220 |
def test_initial_schema(self): |
221 |
schema = self.repo.schema |
|
222 |
# check order of attributes is respected |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1263
diff
changeset
|
223 |
self.assertListEquals([r.type for r in schema.eschema('CWAttribute').ordered_relations() |
1787 | 224 |
if not r.type in ('eid', 'is', 'is_instance_of', 'identity', |
2608
21856eda34f6
[F repo tests] tests have to be updated:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2588
diff
changeset
|
225 |
'creation_date', 'modification_date', 'cwuri', |
0 | 226 |
'owned_by', 'created_by')], |
3771 | 227 |
['relation_type', 'from_entity', 'to_entity', 'in_basket', 'constrained_by', |
1787 | 228 |
'cardinality', 'ordernum', |
0 | 229 |
'indexed', 'fulltextindexed', 'internationalizable', |
2608
21856eda34f6
[F repo tests] tests have to be updated:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2588
diff
changeset
|
230 |
'defaultval', 'description', 'description_format']) |
0 | 231 |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1263
diff
changeset
|
232 |
self.assertEquals(schema.eschema('CWEType').main_attribute(), 'name') |
0 | 233 |
self.assertEquals(schema.eschema('State').main_attribute(), 'name') |
234 |
||
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1263
diff
changeset
|
235 |
constraints = schema.rschema('name').rproperty('CWEType', 'String', 'constraints') |
0 | 236 |
self.assertEquals(len(constraints), 2) |
237 |
for cstr in constraints[:]: |
|
238 |
if isinstance(cstr, UniqueConstraint): |
|
239 |
constraints.remove(cstr) |
|
240 |
break |
|
241 |
else: |
|
242 |
self.fail('unique constraint not found') |
|
243 |
sizeconstraint = constraints[0] |
|
244 |
self.assertEquals(sizeconstraint.min, None) |
|
245 |
self.assertEquals(sizeconstraint.max, 64) |
|
246 |
||
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1263
diff
changeset
|
247 |
constraints = schema.rschema('relation_type').rproperty('CWAttribute', 'CWRType', 'constraints') |
0 | 248 |
self.assertEquals(len(constraints), 1) |
249 |
cstr = constraints[0] |
|
250 |
self.assert_(isinstance(cstr, RQLConstraint)) |
|
251 |
self.assertEquals(cstr.restriction, 'O final TRUE') |
|
252 |
||
253 |
ownedby = schema.rschema('owned_by') |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1263
diff
changeset
|
254 |
self.assertEquals(ownedby.objects('CWEType'), ('CWUser',)) |
0 | 255 |
|
256 |
def test_pyro(self): |
|
257 |
import Pyro |
|
258 |
Pyro.config.PYRO_MULTITHREADED = 0 |
|
1880
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
259 |
done = [] |
0 | 260 |
# the client part has to be in the thread due to sqlite limitations |
1880
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
261 |
t = threading.Thread(target=self._pyro_client, args=(done,)) |
0 | 262 |
try: |
263 |
daemon = self.repo.pyro_register() |
|
264 |
t.start() |
|
1880
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
265 |
while not done: |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
266 |
daemon.handleRequests(1.0) |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
267 |
t.join(1) |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
268 |
if t.isAlive(): |
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
269 |
self.fail('something went wrong, thread still alive') |
0 | 270 |
finally: |
271 |
repository.pyro_unregister(self.repo.config) |
|
1787 | 272 |
|
1880
293fe4b49e28
two in one: #343320: Logging out while deleting a CWUser blocks the cw server / #342692: ensure transaction state when Ctrl-C or other stop signal is received
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1787
diff
changeset
|
273 |
def _pyro_client(self, done): |
0 | 274 |
cnx = connect(self.repo.config.appid, u'admin', 'gingkow') |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2642
diff
changeset
|
275 |
try: |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2642
diff
changeset
|
276 |
# check we can get the schema |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2642
diff
changeset
|
277 |
schema = cnx.get_schema() |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2642
diff
changeset
|
278 |
self.assertEquals(schema.__hashmode__, None) |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2642
diff
changeset
|
279 |
cu = cnx.cursor() |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2642
diff
changeset
|
280 |
rset = cu.execute('Any U,G WHERE U in_group G') |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2642
diff
changeset
|
281 |
cnx.close() |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2642
diff
changeset
|
282 |
done.append(True) |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2642
diff
changeset
|
283 |
finally: |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2642
diff
changeset
|
284 |
# connect monkey path some method by default, remove them |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2642
diff
changeset
|
285 |
multiple_connections_unfix() |
0 | 286 |
|
287 |
def test_internal_api(self): |
|
288 |
repo = self.repo |
|
289 |
cnxid = repo.connect(*self.default_user_password()) |
|
290 |
session = repo._get_session(cnxid, setpool=True) |
|
1954 | 291 |
self.assertEquals(repo.type_and_source_from_eid(1, session), |
292 |
('CWGroup', 'system', None)) |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1263
diff
changeset
|
293 |
self.assertEquals(repo.type_from_eid(1, session), 'CWGroup') |
0 | 294 |
self.assertEquals(repo.source_from_eid(1, session).uri, 'system') |
295 |
self.assertEquals(repo.eid2extid(repo.system_source, 1, session), None) |
|
296 |
class dummysource: uri = 'toto' |
|
297 |
self.assertRaises(UnknownEid, repo.eid2extid, dummysource, 1, session) |
|
298 |
||
299 |
def test_public_api(self): |
|
300 |
self.assertEquals(self.repo.get_schema(), self.repo.schema) |
|
301 |
self.assertEquals(self.repo.source_defs(), {'system': {'adapter': 'native', 'uri': 'system'}}) |
|
302 |
# .properties() return a result set |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1263
diff
changeset
|
303 |
self.assertEquals(self.repo.properties().rql, 'Any K,V WHERE P is CWProperty,P pkey K, P value V, NOT P for_user U') |
0 | 304 |
|
305 |
def test_session_api(self): |
|
306 |
repo = self.repo |
|
307 |
cnxid = repo.connect(*self.default_user_password()) |
|
308 |
self.assertEquals(repo.user_info(cnxid), (5, 'admin', set([u'managers']), {})) |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1263
diff
changeset
|
309 |
self.assertEquals(repo.describe(cnxid, 1), (u'CWGroup', u'system', None)) |
0 | 310 |
repo.close(cnxid) |
311 |
self.assertRaises(BadConnectionId, repo.user_info, cnxid) |
|
312 |
self.assertRaises(BadConnectionId, repo.describe, cnxid, 1) |
|
313 |
||
314 |
def test_shared_data_api(self): |
|
315 |
repo = self.repo |
|
316 |
cnxid = repo.connect(*self.default_user_password()) |
|
317 |
self.assertEquals(repo.get_shared_data(cnxid, 'data'), None) |
|
318 |
repo.set_shared_data(cnxid, 'data', 4) |
|
319 |
self.assertEquals(repo.get_shared_data(cnxid, 'data'), 4) |
|
320 |
repo.get_shared_data(cnxid, 'data', pop=True) |
|
321 |
repo.get_shared_data(cnxid, 'whatever', pop=True) |
|
322 |
self.assertEquals(repo.get_shared_data(cnxid, 'data'), None) |
|
323 |
repo.close(cnxid) |
|
324 |
self.assertRaises(BadConnectionId, repo.set_shared_data, cnxid, 'data', 0) |
|
325 |
self.assertRaises(BadConnectionId, repo.get_shared_data, cnxid, 'data') |
|
1787 | 326 |
|
2588
3a590ff82e99
[F schema serial] #344876: missing some 'is'/'is_instance_of' relation for newly created instances
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2200
diff
changeset
|
327 |
def test_schema_is_relation(self): |
3a590ff82e99
[F schema serial] #344876: missing some 'is'/'is_instance_of' relation for newly created instances
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2200
diff
changeset
|
328 |
no_is_rset = self.execute('Any X WHERE NOT X is ET') |
3a590ff82e99
[F schema serial] #344876: missing some 'is'/'is_instance_of' relation for newly created instances
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2200
diff
changeset
|
329 |
self.failIf(no_is_rset, no_is_rset.description) |
3a590ff82e99
[F schema serial] #344876: missing some 'is'/'is_instance_of' relation for newly created instances
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2200
diff
changeset
|
330 |
|
2642 | 331 |
# def test_perfo(self): |
332 |
# self.set_debug(True) |
|
333 |
# from time import time, clock |
|
334 |
# t, c = time(), clock() |
|
335 |
# try: |
|
336 |
# self.create_user('toto') |
|
337 |
# finally: |
|
338 |
# self.set_debug(False) |
|
339 |
# print 'test time: %.3f (time) %.3f (cpu)' % ((time() - t), clock() - c) |
|
340 |
||
2923
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
341 |
def test_delete_if_singlecard1(self): |
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
342 |
note = self.add_entity('Affaire') |
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
343 |
p1 = self.add_entity('Personne', nom=u'toto') |
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
344 |
self.execute('SET A todo_by P WHERE A eid %(x)s, P eid %(p)s', |
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
345 |
{'x': note.eid, 'p': p1.eid}) |
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
346 |
rset = self.execute('Any P WHERE A todo_by P, A eid %(x)s', |
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
347 |
{'x': note.eid}) |
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
348 |
self.assertEquals(len(rset), 1) |
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
349 |
p2 = self.add_entity('Personne', nom=u'tutu') |
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
350 |
self.execute('SET A todo_by P WHERE A eid %(x)s, P eid %(p)s', |
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
351 |
{'x': note.eid, 'p': p2.eid}) |
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
352 |
rset = self.execute('Any P WHERE A todo_by P, A eid %(x)s', |
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
353 |
{'x': note.eid}) |
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
354 |
self.assertEquals(len(rset), 1) |
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
355 |
self.assertEquals(rset.rows[0][0], p2.eid) |
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
356 |
|
0 | 357 |
|
358 |
class DataHelpersTC(RepositoryBasedTC): |
|
1787 | 359 |
|
0 | 360 |
def setUp(self): |
361 |
""" called before each test from this class """ |
|
362 |
cnxid = self.repo.connect(*self.default_user_password()) |
|
363 |
self.session = self.repo._sessions[cnxid] |
|
364 |
self.session.set_pool() |
|
365 |
||
366 |
def tearDown(self): |
|
367 |
self.session.rollback() |
|
1787 | 368 |
|
0 | 369 |
def test_create_eid(self): |
370 |
self.assert_(self.repo.system_source.create_eid(self.session)) |
|
371 |
||
372 |
def test_source_from_eid(self): |
|
373 |
self.assertEquals(self.repo.source_from_eid(1, self.session), |
|
374 |
self.repo.sources_by_uri['system']) |
|
375 |
||
376 |
def test_source_from_eid_raise(self): |
|
377 |
self.assertRaises(UnknownEid, self.repo.source_from_eid, -2, self.session) |
|
378 |
||
379 |
def test_type_from_eid(self): |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1263
diff
changeset
|
380 |
self.assertEquals(self.repo.type_from_eid(1, self.session), 'CWGroup') |
1787 | 381 |
|
0 | 382 |
def test_type_from_eid_raise(self): |
383 |
self.assertRaises(UnknownEid, self.repo.type_from_eid, -2, self.session) |
|
1787 | 384 |
|
0 | 385 |
def test_add_delete_info(self): |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2642
diff
changeset
|
386 |
entity = self.repo.vreg['etypes'].etype_class('Personne')(self.session) |
0 | 387 |
entity.eid = -1 |
388 |
entity.complete = lambda x: None |
|
389 |
self.repo.add_info(self.session, entity, self.repo.sources_by_uri['system']) |
|
2200
25bb65dc4559
test fixes, all server tests ok, except unittest_migractions (due to inter-tests-side-effects...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
390 |
cu = self.session.system_sql('SELECT * FROM entities WHERE eid = -1') |
25bb65dc4559
test fixes, all server tests ok, except unittest_migractions (due to inter-tests-side-effects...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
391 |
data = cu.fetchall() |
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
17
diff
changeset
|
392 |
self.assertIsInstance(data[0][3], datetime) |
0 | 393 |
data[0] = list(data[0]) |
394 |
data[0][3] = None |
|
395 |
self.assertEquals(tuplify(data), [(-1, 'Personne', 'system', None, None)]) |
|
396 |
self.repo.delete_info(self.session, -1) |
|
397 |
#self.repo.commit() |
|
2200
25bb65dc4559
test fixes, all server tests ok, except unittest_migractions (due to inter-tests-side-effects...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
398 |
cu = self.session.system_sql('SELECT * FROM entities WHERE eid = -1') |
25bb65dc4559
test fixes, all server tests ok, except unittest_migractions (due to inter-tests-side-effects...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
399 |
data = cu.fetchall() |
0 | 400 |
self.assertEquals(data, []) |
401 |
||
402 |
||
403 |
class FTITC(RepositoryBasedTC): |
|
1787 | 404 |
|
0 | 405 |
def test_reindex_and_modified_since(self): |
406 |
eidp = self.execute('INSERT Personne X: X nom "toto", X prenom "tutu"')[0][0] |
|
407 |
self.commit() |
|
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
17
diff
changeset
|
408 |
ts = datetime.now() |
0 | 409 |
self.assertEquals(len(self.execute('Personne X WHERE X has_text "tutu"')), 1) |
2200
25bb65dc4559
test fixes, all server tests ok, except unittest_migractions (due to inter-tests-side-effects...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
410 |
cu = self.session.system_sql('SELECT mtime, eid FROM entities WHERE eid = %s' % eidp) |
25bb65dc4559
test fixes, all server tests ok, except unittest_migractions (due to inter-tests-side-effects...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
411 |
omtime = cu.fetchone()[0] |
0 | 412 |
# our sqlite datetime adapter is ignore seconds fraction, so we have to |
413 |
# ensure update is done the next seconds |
|
414 |
time.sleep(1 - (ts.second - int(ts.second))) |
|
415 |
self.execute('SET X nom "tata" WHERE X eid %(x)s', {'x': eidp}, 'x') |
|
416 |
self.commit() |
|
417 |
self.assertEquals(len(self.execute('Personne X WHERE X has_text "tutu"')), 1) |
|
2200
25bb65dc4559
test fixes, all server tests ok, except unittest_migractions (due to inter-tests-side-effects...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
418 |
cu = self.session.system_sql('SELECT mtime FROM entities WHERE eid = %s' % eidp) |
25bb65dc4559
test fixes, all server tests ok, except unittest_migractions (due to inter-tests-side-effects...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
419 |
mtime = cu.fetchone()[0] |
0 | 420 |
self.failUnless(omtime < mtime) |
421 |
self.commit() |
|
422 |
date, modified, deleted = self.repo.entities_modified_since(('Personne',), omtime) |
|
423 |
self.assertEquals(modified, [('Personne', eidp)]) |
|
424 |
self.assertEquals(deleted, []) |
|
425 |
date, modified, deleted = self.repo.entities_modified_since(('Personne',), mtime) |
|
426 |
self.assertEquals(modified, []) |
|
427 |
self.assertEquals(deleted, []) |
|
428 |
self.execute('DELETE Personne X WHERE X eid %(x)s', {'x': eidp}) |
|
429 |
self.commit() |
|
430 |
date, modified, deleted = self.repo.entities_modified_since(('Personne',), omtime) |
|
431 |
self.assertEquals(modified, []) |
|
432 |
self.assertEquals(deleted, [('Personne', eidp)]) |
|
433 |
||
434 |
def test_composite_entity(self): |
|
435 |
assert self.schema.rschema('use_email').fulltext_container == 'subject' |
|
436 |
eid = self.add_entity('EmailAddress', address=u'toto@logilab.fr').eid |
|
437 |
self.commit() |
|
438 |
rset = self.execute('Any X WHERE X has_text %(t)s', {'t': 'toto'}) |
|
439 |
self.assertEquals(rset.rows, [[eid]]) |
|
440 |
self.execute('SET X use_email Y WHERE X login "admin", Y eid %(y)s', {'y': eid}) |
|
441 |
self.commit() |
|
442 |
rset = self.execute('Any X WHERE X has_text %(t)s', {'t': 'toto'}) |
|
443 |
self.assertEquals(rset.rows, [[self.session.user.eid]]) |
|
444 |
self.execute('DELETE X use_email Y WHERE X login "admin", Y eid %(y)s', {'y': eid}) |
|
445 |
self.commit() |
|
446 |
rset = self.execute('Any X WHERE X has_text %(t)s', {'t': 'toto'}) |
|
447 |
self.assertEquals(rset.rows, []) |
|
448 |
eid = self.add_entity('EmailAddress', address=u'tutu@logilab.fr').eid |
|
449 |
self.execute('SET X use_email Y WHERE X login "admin", Y eid %(y)s', {'y': eid}) |
|
450 |
self.commit() |
|
451 |
rset = self.execute('Any X WHERE X has_text %(t)s', {'t': 'tutu'}) |
|
452 |
self.assertEquals(rset.rows, [[self.session.user.eid]]) |
|
1787 | 453 |
|
454 |
||
0 | 455 |
class DBInitTC(RepositoryBasedTC): |
1787 | 456 |
|
0 | 457 |
def test_versions_inserted(self): |
458 |
inserted = [r[0] for r in self.execute('Any K ORDERBY K WHERE P pkey K, P pkey ~= "system.version.%"')] |
|
459 |
self.assertEquals(inserted, |
|
1787 | 460 |
[u'system.version.basket', u'system.version.card', u'system.version.comment', |
461 |
u'system.version.cubicweb', u'system.version.email', |
|
462 |
u'system.version.file', u'system.version.folder', |
|
17
62ce3e6126e0
work in progress: fix cubicweb/server tests
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
463 |
u'system.version.tag']) |
1787 | 464 |
|
0 | 465 |
class InlineRelHooksTC(RepositoryBasedTC): |
466 |
"""test relation hooks are called for inlined relations |
|
467 |
""" |
|
468 |
def setUp(self): |
|
469 |
RepositoryBasedTC.setUp(self) |
|
470 |
self.hm = self.repo.hm |
|
471 |
self.called = [] |
|
1787 | 472 |
|
0 | 473 |
def _before_relation_hook(self, pool, fromeid, rtype, toeid): |
474 |
self.called.append((fromeid, rtype, toeid)) |
|
475 |
||
476 |
def _after_relation_hook(self, pool, fromeid, rtype, toeid): |
|
477 |
self.called.append((fromeid, rtype, toeid)) |
|
1787 | 478 |
|
0 | 479 |
def test_before_add_inline_relation(self): |
480 |
"""make sure before_<event>_relation hooks are called directly""" |
|
481 |
self.hm.register_hook(self._before_relation_hook, |
|
482 |
'before_add_relation', 'ecrit_par') |
|
483 |
eidp = self.execute('INSERT Personne X: X nom "toto"')[0][0] |
|
484 |
eidn = self.execute('INSERT Note X: X type "T"')[0][0] |
|
485 |
self.execute('SET N ecrit_par Y WHERE N type "T", Y nom "toto"') |
|
486 |
self.assertEquals(self.called, [(eidn, 'ecrit_par', eidp)]) |
|
1787 | 487 |
|
0 | 488 |
def test_after_add_inline_relation(self): |
489 |
"""make sure after_<event>_relation hooks are deferred""" |
|
490 |
self.hm.register_hook(self._after_relation_hook, |
|
491 |
'after_add_relation', 'ecrit_par') |
|
492 |
eidp = self.execute('INSERT Personne X: X nom "toto"')[0][0] |
|
493 |
eidn = self.execute('INSERT Note X: X type "T"')[0][0] |
|
494 |
self.assertEquals(self.called, []) |
|
495 |
self.execute('SET N ecrit_par Y WHERE N type "T", Y nom "toto"') |
|
496 |
self.assertEquals(self.called, [(eidn, 'ecrit_par', eidp,)]) |
|
1787 | 497 |
|
0 | 498 |
def test_after_add_inline(self): |
499 |
"""make sure after_<event>_relation hooks are deferred""" |
|
2923
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
500 |
p1 = self.add_entity('Personne', nom=u'toto') |
0 | 501 |
self.hm.register_hook(self._after_relation_hook, |
2923
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
502 |
'after_add_relation', 'ecrit_par') |
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
503 |
eidn = self.execute('INSERT Note N: N ecrit_par P WHERE P nom "toto"')[0][0] |
b97a0f8dd4dc
fix test schema and update some tests to work again with wf changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
504 |
self.assertEquals(self.called, [(eidn, 'ecrit_par', p1.eid,)]) |
1787 | 505 |
|
0 | 506 |
def test_before_delete_inline_relation(self): |
507 |
"""make sure before_<event>_relation hooks are called directly""" |
|
508 |
self.hm.register_hook(self._before_relation_hook, |
|
509 |
'before_delete_relation', 'ecrit_par') |
|
510 |
eidp = self.execute('INSERT Personne X: X nom "toto"')[0][0] |
|
511 |
eidn = self.execute('INSERT Note X: X type "T"')[0][0] |
|
512 |
self.execute('SET N ecrit_par Y WHERE N type "T", Y nom "toto"') |
|
513 |
self.execute('DELETE N ecrit_par Y WHERE N type "T", Y nom "toto"') |
|
514 |
self.assertEquals(self.called, [(eidn, 'ecrit_par', eidp)]) |
|
515 |
rset = self.execute('Any Y where N ecrit_par Y, N type "T", Y nom "toto"') |
|
516 |
# make sure the relation is really deleted |
|
517 |
self.failUnless(len(rset) == 0, "failed to delete inline relation") |
|
518 |
||
519 |
def test_after_delete_inline_relation(self): |
|
520 |
"""make sure after_<event>_relation hooks are deferred""" |
|
521 |
self.hm.register_hook(self._after_relation_hook, |
|
522 |
'after_delete_relation', 'ecrit_par') |
|
523 |
eidp = self.execute('INSERT Personne X: X nom "toto"')[0][0] |
|
524 |
eidn = self.execute('INSERT Note X: X type "T"')[0][0] |
|
525 |
self.execute('SET N ecrit_par Y WHERE N type "T", Y nom "toto"') |
|
526 |
self.assertEquals(self.called, []) |
|
527 |
self.execute('DELETE N ecrit_par Y WHERE N type "T", Y nom "toto"') |
|
528 |
self.assertEquals(self.called, [(eidn, 'ecrit_par', eidp,)]) |
|
529 |
||
1787 | 530 |
|
0 | 531 |
if __name__ == '__main__': |
532 |
unittest_main() |