author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Mon, 27 Jul 2009 18:41:29 +0200 | |
changeset 2520 | 8c5cf48ae9ea |
parent 2501 | fa86d99c2c3a |
child 2608 | 21856eda34f6 |
permissions | -rw-r--r-- |
0 | 1 |
"""functional tests for server'security |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
2 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 3 |
""" |
4 |
import sys |
|
5 |
||
6 |
from logilab.common.testlib import unittest_main, TestCase |
|
7 |
from cubicweb.devtools.apptest import RepositoryBasedTC |
|
8 |
||
9 |
from cubicweb import Unauthorized, ValidationError |
|
10 |
from cubicweb.server.querier import check_read_access |
|
11 |
||
12 |
class BaseSecurityTC(RepositoryBasedTC): |
|
13 |
||
14 |
def setUp(self): |
|
15 |
RepositoryBasedTC.setUp(self) |
|
16 |
self.create_user('iaminusersgrouponly') |
|
17 |
self.readoriggroups = self.schema['Personne'].get_groups('read') |
|
18 |
self.addoriggroups = self.schema['Personne'].get_groups('add') |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
19 |
|
0 | 20 |
def tearDown(self): |
21 |
RepositoryBasedTC.tearDown(self) |
|
22 |
self.schema['Personne'].set_groups('read', self.readoriggroups) |
|
23 |
self.schema['Personne'].set_groups('add', self.addoriggroups) |
|
24 |
||
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
25 |
|
0 | 26 |
class LowLevelSecurityFunctionTC(BaseSecurityTC): |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
27 |
|
0 | 28 |
def test_check_read_access(self): |
29 |
rql = u'Personne U where U nom "managers"' |
|
30 |
rqlst = self.repo.querier._rqlhelper.parse(rql).children[0] |
|
31 |
origgroups = self.schema['Personne'].get_groups('read') |
|
32 |
self.schema['Personne'].set_groups('read', ('users', 'managers')) |
|
33 |
self.repo.querier._rqlhelper.compute_solutions(rqlst) |
|
34 |
solution = rqlst.solutions[0] |
|
35 |
check_read_access(self.schema, self.session.user, rqlst, solution) |
|
36 |
cnx = self.login('anon') |
|
37 |
cu = cnx.cursor() |
|
38 |
self.assertRaises(Unauthorized, |
|
39 |
check_read_access, |
|
40 |
self.schema, cnx.user(self.current_session()), rqlst, solution) |
|
41 |
self.assertRaises(Unauthorized, cu.execute, rql) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
42 |
|
0 | 43 |
def test_upassword_not_selectable(self): |
44 |
self.assertRaises(Unauthorized, |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
389
diff
changeset
|
45 |
self.execute, 'Any X,P WHERE X is CWUser, X upassword P') |
0 | 46 |
self.rollback() |
47 |
cnx = self.login('iaminusersgrouponly') |
|
48 |
cu = cnx.cursor() |
|
49 |
self.assertRaises(Unauthorized, |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
389
diff
changeset
|
50 |
cu.execute, 'Any X,P WHERE X is CWUser, X upassword P') |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
51 |
|
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
52 |
|
0 | 53 |
class SecurityTC(BaseSecurityTC): |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
54 |
|
0 | 55 |
def setUp(self): |
56 |
BaseSecurityTC.setUp(self) |
|
57 |
# implicitly test manager can add some entities |
|
58 |
self.execute("INSERT Affaire X: X sujet 'cool'") |
|
59 |
self.execute("INSERT Societe X: X nom 'logilab'") |
|
60 |
self.execute("INSERT Personne X: X nom 'bidule'") |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
389
diff
changeset
|
61 |
self.execute('INSERT CWGroup X: X name "staff"') |
0 | 62 |
self.commit() |
63 |
||
64 |
def test_insert_security(self): |
|
65 |
cnx = self.login('anon') |
|
66 |
cu = cnx.cursor() |
|
67 |
cu.execute("INSERT Personne X: X nom 'bidule'") |
|
68 |
self.assertRaises(Unauthorized, cnx.commit) |
|
69 |
self.assertEquals(cu.execute('Personne X').rowcount, 1) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
70 |
|
0 | 71 |
def test_insert_rql_permission(self): |
72 |
# test user can only add une affaire related to a societe he owns |
|
73 |
cnx = self.login('iaminusersgrouponly') |
|
74 |
cu = cnx.cursor() |
|
75 |
cu.execute("INSERT Affaire X: X sujet 'cool'") |
|
76 |
self.assertRaises(Unauthorized, cnx.commit) |
|
77 |
# test nothing has actually been inserted |
|
78 |
self.restore_connection() |
|
79 |
self.assertEquals(self.execute('Affaire X').rowcount, 1) |
|
80 |
cnx = self.login('iaminusersgrouponly') |
|
81 |
cu = cnx.cursor() |
|
82 |
cu.execute("INSERT Affaire X: X sujet 'cool'") |
|
83 |
cu.execute("INSERT Societe X: X nom 'chouette'") |
|
84 |
cu.execute("SET A concerne S WHERE A sujet 'cool', S nom 'chouette'") |
|
85 |
cnx.commit() |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
86 |
|
0 | 87 |
def test_update_security_1(self): |
88 |
cnx = self.login('anon') |
|
89 |
cu = cnx.cursor() |
|
90 |
# local security check |
|
91 |
cu.execute( "SET X nom 'bidulechouette' WHERE X is Personne") |
|
92 |
self.assertRaises(Unauthorized, cnx.commit) |
|
93 |
self.restore_connection() |
|
94 |
self.assertEquals(self.execute('Personne X WHERE X nom "bidulechouette"').rowcount, 0) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
95 |
|
0 | 96 |
def test_update_security_2(self): |
97 |
cnx = self.login('anon') |
|
98 |
cu = cnx.cursor() |
|
99 |
self.repo.schema['Personne'].set_groups('read', ('users', 'managers')) |
|
100 |
self.repo.schema['Personne'].set_groups('add', ('guests', 'users', 'managers')) |
|
101 |
self.assertRaises(Unauthorized, cu.execute, "SET X nom 'bidulechouette' WHERE X is Personne") |
|
102 |
#self.assertRaises(Unauthorized, cnx.commit) |
|
103 |
# test nothing has actually been inserted |
|
104 |
self.restore_connection() |
|
105 |
self.assertEquals(self.execute('Personne X WHERE X nom "bidulechouette"').rowcount, 0) |
|
106 |
||
107 |
def test_update_security_3(self): |
|
108 |
cnx = self.login('iaminusersgrouponly') |
|
109 |
cu = cnx.cursor() |
|
110 |
cu.execute("INSERT Personne X: X nom 'biduuule'") |
|
111 |
cu.execute("INSERT Societe X: X nom 'looogilab'") |
|
112 |
cu.execute("SET X travaille S WHERE X nom 'biduuule', S nom 'looogilab'") |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
113 |
|
0 | 114 |
def test_update_rql_permission(self): |
115 |
self.execute("SET A concerne S WHERE A is Affaire, S is Societe") |
|
116 |
self.commit() |
|
117 |
# test user can only update une affaire related to a societe he owns |
|
118 |
cnx = self.login('iaminusersgrouponly') |
|
119 |
cu = cnx.cursor() |
|
120 |
cu.execute("SET X sujet 'pascool' WHERE X is Affaire") |
|
121 |
# this won't actually do anything since the selection query won't return anything |
|
122 |
cnx.commit() |
|
123 |
# to actually get Unauthorized exception, try to update an entity we can read |
|
124 |
cu.execute("SET X nom 'toto' WHERE X is Societe") |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
125 |
self.assertRaises(Unauthorized, cnx.commit) |
0 | 126 |
cu.execute("INSERT Affaire X: X sujet 'pascool'") |
127 |
cu.execute("INSERT Societe X: X nom 'chouette'") |
|
128 |
cu.execute("SET A concerne S WHERE A sujet 'pascool', S nom 'chouette'") |
|
129 |
cu.execute("SET X sujet 'habahsicestcool' WHERE X sujet 'pascool'") |
|
130 |
cnx.commit() |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
131 |
|
0 | 132 |
def test_delete_security(self): |
133 |
# FIXME: sample below fails because we don't detect "owner" can't delete |
|
134 |
# user anyway, and since no user with login == 'bidule' exists, no |
|
135 |
# exception is raised |
|
136 |
#user._groups = {'guests':1} |
|
137 |
#self.assertRaises(Unauthorized, |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
389
diff
changeset
|
138 |
# self.o.execute, user, "DELETE CWUser X WHERE X login 'bidule'") |
0 | 139 |
# check local security |
140 |
cnx = self.login('iaminusersgrouponly') |
|
141 |
cu = cnx.cursor() |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
389
diff
changeset
|
142 |
self.assertRaises(Unauthorized, cu.execute, "DELETE CWGroup Y WHERE Y name 'staff'") |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
143 |
|
0 | 144 |
def test_delete_rql_permission(self): |
145 |
self.execute("SET A concerne S WHERE A is Affaire, S is Societe") |
|
146 |
self.commit() |
|
147 |
# test user can only dele une affaire related to a societe he owns |
|
148 |
cnx = self.login('iaminusersgrouponly') |
|
149 |
cu = cnx.cursor() |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
150 |
# this won't actually do anything since the selection query won't return anything |
0 | 151 |
cu.execute("DELETE Affaire X") |
152 |
cnx.commit() |
|
153 |
# to actually get Unauthorized exception, try to delete an entity we can read |
|
154 |
self.assertRaises(Unauthorized, cu.execute, "DELETE Societe S") |
|
155 |
cu.execute("INSERT Affaire X: X sujet 'pascool'") |
|
156 |
cu.execute("INSERT Societe X: X nom 'chouette'") |
|
157 |
cu.execute("SET A concerne S WHERE A sujet 'pascool', S nom 'chouette'") |
|
158 |
cnx.commit() |
|
159 |
## # this one should fail since it will try to delete two affaires, one authorized |
|
160 |
## # and the other not |
|
161 |
## self.assertRaises(Unauthorized, cu.execute, "DELETE Affaire X") |
|
162 |
cu.execute("DELETE Affaire X WHERE X sujet 'pascool'") |
|
163 |
cnx.commit() |
|
164 |
||
165 |
||
166 |
def test_insert_relation_rql_permission(self): |
|
167 |
cnx = self.login('iaminusersgrouponly') |
|
168 |
session = self.current_session() |
|
169 |
cu = cnx.cursor(session) |
|
170 |
cu.execute("SET A concerne S WHERE A is Affaire, S is Societe") |
|
171 |
# should raise Unauthorized since user don't own S |
|
172 |
# though this won't actually do anything since the selection query won't return anything |
|
173 |
cnx.commit() |
|
174 |
# to actually get Unauthorized exception, try to insert a relation were we can read both entities |
|
175 |
rset = cu.execute('Personne P') |
|
176 |
self.assertEquals(len(rset), 1) |
|
177 |
ent = rset.get_entity(0, 0) |
|
178 |
session.set_pool() # necessary |
|
179 |
self.assertRaises(Unauthorized, |
|
180 |
ent.e_schema.check_perm, session, 'update', ent.eid) |
|
181 |
self.assertRaises(Unauthorized, |
|
182 |
cu.execute, "SET P travaille S WHERE P is Personne, S is Societe") |
|
183 |
# test nothing has actually been inserted: |
|
184 |
self.assertEquals(cu.execute('Any P,S WHERE P travaille S,P is Personne, S is Societe').rowcount, 0) |
|
185 |
cu.execute("INSERT Societe X: X nom 'chouette'") |
|
186 |
cu.execute("SET A concerne S WHERE A is Affaire, S nom 'chouette'") |
|
187 |
cnx.commit() |
|
188 |
||
189 |
def test_delete_relation_rql_permission(self): |
|
190 |
self.execute("SET A concerne S WHERE A is Affaire, S is Societe") |
|
191 |
self.commit() |
|
192 |
cnx = self.login('iaminusersgrouponly') |
|
193 |
cu = cnx.cursor() |
|
194 |
# this won't actually do anything since the selection query won't return anything |
|
195 |
cu.execute("DELETE A concerne S") |
|
196 |
cnx.commit() |
|
197 |
# to actually get Unauthorized exception, try to delete a relation we can read |
|
198 |
self.restore_connection() |
|
199 |
eid = self.execute("INSERT Affaire X: X sujet 'pascool'")[0][0] |
|
200 |
self.execute('SET X owned_by U WHERE X eid %(x)s, U login "iaminusersgrouponly"', {'x': eid}, 'x') |
|
201 |
self.execute("SET A concerne S WHERE A sujet 'pascool', S is Societe") |
|
202 |
self.commit() |
|
203 |
cnx = self.login('iaminusersgrouponly') |
|
204 |
cu = cnx.cursor() |
|
205 |
self.assertRaises(Unauthorized, cu.execute, "DELETE A concerne S") |
|
206 |
cu.execute("INSERT Societe X: X nom 'chouette'") |
|
207 |
cu.execute("SET A concerne S WHERE A is Affaire, S nom 'chouette'") |
|
208 |
cnx.commit() |
|
209 |
cu.execute("DELETE A concerne S WHERE S nom 'chouette'") |
|
210 |
||
211 |
||
212 |
def test_user_can_change_its_upassword(self): |
|
213 |
ueid = self.create_user('user') |
|
214 |
cnx = self.login('user') |
|
215 |
cu = cnx.cursor() |
|
216 |
cu.execute('SET X upassword %(passwd)s WHERE X eid %(x)s', |
|
217 |
{'x': ueid, 'passwd': 'newpwd'}, 'x') |
|
218 |
cnx.commit() |
|
219 |
cnx.close() |
|
220 |
cnx = self.login('user', 'newpwd') |
|
221 |
||
222 |
def test_user_cant_change_other_upassword(self): |
|
223 |
ueid = self.create_user('otheruser') |
|
224 |
cnx = self.login('iaminusersgrouponly') |
|
225 |
cu = cnx.cursor() |
|
226 |
cu.execute('SET X upassword %(passwd)s WHERE X eid %(x)s', |
|
227 |
{'x': ueid, 'passwd': 'newpwd'}, 'x') |
|
228 |
self.assertRaises(Unauthorized, cnx.commit) |
|
229 |
||
230 |
# read security test |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
231 |
|
0 | 232 |
def test_read_base(self): |
233 |
self.schema['Personne'].set_groups('read', ('users', 'managers')) |
|
234 |
cnx = self.login('anon') |
|
235 |
cu = cnx.cursor() |
|
236 |
self.assertRaises(Unauthorized, |
|
237 |
cu.execute, 'Personne U where U nom "managers"') |
|
238 |
||
321
247947250382
fix security bug w/ query using 'NOT X eid 123'
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
0
diff
changeset
|
239 |
def test_read_erqlexpr_base(self): |
0 | 240 |
eid = self.execute("INSERT Affaire X: X sujet 'cool'")[0][0] |
241 |
self.commit() |
|
242 |
cnx = self.login('iaminusersgrouponly') |
|
243 |
cu = cnx.cursor() |
|
244 |
rset = cu.execute('Affaire X') |
|
245 |
self.assertEquals(rset.rows, []) |
|
246 |
self.assertRaises(Unauthorized, cu.execute, 'Any X WHERE X eid %(x)s', {'x': eid}, 'x') |
|
321
247947250382
fix security bug w/ query using 'NOT X eid 123'
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
0
diff
changeset
|
247 |
# cache test |
0 | 248 |
self.assertRaises(Unauthorized, cu.execute, 'Any X WHERE X eid %(x)s', {'x': eid}, 'x') |
249 |
aff2 = cu.execute("INSERT Affaire X: X sujet 'cool'")[0][0] |
|
250 |
soc1 = cu.execute("INSERT Societe X: X nom 'chouette'")[0][0] |
|
251 |
cu.execute("SET A concerne S WHERE A is Affaire, S is Societe") |
|
252 |
cnx.commit() |
|
253 |
rset = cu.execute('Any X WHERE X eid %(x)s', {'x': aff2}, 'x') |
|
254 |
self.assertEquals(rset.rows, [[aff2]]) |
|
321
247947250382
fix security bug w/ query using 'NOT X eid 123'
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
0
diff
changeset
|
255 |
# more cache test w/ NOT eid |
247947250382
fix security bug w/ query using 'NOT X eid 123'
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
0
diff
changeset
|
256 |
rset = cu.execute('Affaire X WHERE NOT X eid %(x)s', {'x': eid}, 'x') |
389 | 257 |
self.assertEquals(rset.rows, [[aff2]]) |
321
247947250382
fix security bug w/ query using 'NOT X eid 123'
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
0
diff
changeset
|
258 |
rset = cu.execute('Affaire X WHERE NOT X eid %(x)s', {'x': aff2}, 'x') |
247947250382
fix security bug w/ query using 'NOT X eid 123'
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
0
diff
changeset
|
259 |
self.assertEquals(rset.rows, []) |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
260 |
|
0 | 261 |
def test_read_erqlexpr_has_text1(self): |
262 |
aff1 = self.execute("INSERT Affaire X: X sujet 'cool'")[0][0] |
|
263 |
card1 = self.execute("INSERT Card X: X title 'cool'")[0][0] |
|
264 |
self.execute('SET X owned_by U WHERE X eid %(x)s, U login "iaminusersgrouponly"', {'x': card1}, 'x') |
|
265 |
self.commit() |
|
266 |
cnx = self.login('iaminusersgrouponly') |
|
267 |
cu = cnx.cursor() |
|
268 |
aff2 = cu.execute("INSERT Affaire X: X sujet 'cool', X in_state S WHERE S name 'pitetre'")[0][0] |
|
269 |
soc1 = cu.execute("INSERT Societe X: X nom 'chouette'")[0][0] |
|
270 |
cu.execute("SET A concerne S WHERE A eid %(a)s, S eid %(s)s", {'a': aff2, 's': soc1}, |
|
271 |
('a', 's')) |
|
272 |
cnx.commit() |
|
273 |
self.assertRaises(Unauthorized, cu.execute, 'Any X WHERE X eid %(x)s', {'x':aff1}, 'x') |
|
274 |
self.failUnless(cu.execute('Any X WHERE X eid %(x)s', {'x':aff2}, 'x')) |
|
275 |
self.failUnless(cu.execute('Any X WHERE X eid %(x)s', {'x':card1}, 'x')) |
|
276 |
rset = cu.execute("Any X WHERE X has_text 'cool'") |
|
277 |
self.assertEquals(sorted(eid for eid, in rset.rows), |
|
278 |
[card1, aff2]) |
|
279 |
||
280 |
def test_read_erqlexpr_has_text2(self): |
|
281 |
self.execute("INSERT Personne X: X nom 'bidule'") |
|
282 |
self.execute("INSERT Societe X: X nom 'bidule'") |
|
283 |
self.commit() |
|
284 |
self.schema['Personne'].set_groups('read', ('managers',)) |
|
285 |
cnx = self.login('iaminusersgrouponly') |
|
286 |
cu = cnx.cursor() |
|
287 |
rset = cu.execute('Any N WHERE N has_text "bidule"') |
|
288 |
self.assertEquals(len(rset.rows), 1, rset.rows) |
|
289 |
rset = cu.execute('Any N WITH N BEING (Any N WHERE N has_text "bidule")') |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
290 |
self.assertEquals(len(rset.rows), 1, rset.rows) |
0 | 291 |
|
292 |
def test_read_erqlexpr_optional_rel(self): |
|
293 |
self.execute("INSERT Personne X: X nom 'bidule'") |
|
294 |
self.execute("INSERT Societe X: X nom 'bidule'") |
|
295 |
self.commit() |
|
296 |
self.schema['Personne'].set_groups('read', ('managers',)) |
|
297 |
cnx = self.login('anon') |
|
298 |
cu = cnx.cursor() |
|
299 |
rset = cu.execute('Any N,U WHERE N has_text "bidule", N owned_by U?') |
|
300 |
self.assertEquals(len(rset.rows), 1, rset.rows) |
|
301 |
||
302 |
def test_read_erqlexpr_aggregat(self): |
|
303 |
self.execute("INSERT Affaire X: X sujet 'cool'")[0][0] |
|
304 |
self.commit() |
|
305 |
cnx = self.login('iaminusersgrouponly') |
|
306 |
cu = cnx.cursor() |
|
307 |
rset = cu.execute('Any COUNT(X) WHERE X is Affaire') |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
308 |
self.assertEquals(rset.rows, [[0]]) |
0 | 309 |
aff2 = cu.execute("INSERT Affaire X: X sujet 'cool'")[0][0] |
310 |
soc1 = cu.execute("INSERT Societe X: X nom 'chouette'")[0][0] |
|
311 |
cu.execute("SET A concerne S WHERE A is Affaire, S is Societe") |
|
312 |
cnx.commit() |
|
313 |
rset = cu.execute('Any COUNT(X) WHERE X is Affaire') |
|
314 |
self.assertEquals(rset.rows, [[1]]) |
|
315 |
rset = cu.execute('Any ETN, COUNT(X) GROUPBY ETN WHERE X is ET, ET name ETN') |
|
316 |
values = dict(rset) |
|
317 |
self.assertEquals(values['Affaire'], 1) |
|
318 |
self.assertEquals(values['Societe'], 2) |
|
319 |
rset = cu.execute('Any ETN, COUNT(X) GROUPBY ETN WHERE X is ET, ET name ETN WITH X BEING ((Affaire X) UNION (Societe X))') |
|
320 |
self.assertEquals(len(rset), 2) |
|
321 |
values = dict(rset) |
|
322 |
self.assertEquals(values['Affaire'], 1) |
|
323 |
self.assertEquals(values['Societe'], 2) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
324 |
|
0 | 325 |
|
326 |
def test_attribute_security(self): |
|
327 |
# only managers should be able to edit the 'test' attribute of Personne entities |
|
328 |
eid = self.execute("INSERT Personne X: X nom 'bidule', X web 'http://www.debian.org', X test TRUE")[0][0] |
|
329 |
self.commit() |
|
330 |
self.execute('SET X test FALSE WHERE X eid %(x)s', {'x': eid}, 'x') |
|
331 |
self.commit() |
|
332 |
cnx = self.login('iaminusersgrouponly') |
|
333 |
cu = cnx.cursor() |
|
334 |
cu.execute("INSERT Personne X: X nom 'bidule', X web 'http://www.debian.org', X test TRUE") |
|
335 |
self.assertRaises(Unauthorized, cnx.commit) |
|
336 |
cu.execute("INSERT Personne X: X nom 'bidule', X web 'http://www.debian.org', X test FALSE") |
|
337 |
self.assertRaises(Unauthorized, cnx.commit) |
|
338 |
eid = cu.execute("INSERT Personne X: X nom 'bidule', X web 'http://www.debian.org'")[0][0] |
|
339 |
cnx.commit() |
|
340 |
cu.execute('SET X test FALSE WHERE X eid %(x)s', {'x': eid}, 'x') |
|
341 |
self.assertRaises(Unauthorized, cnx.commit) |
|
342 |
cu.execute('SET X test TRUE WHERE X eid %(x)s', {'x': eid}, 'x') |
|
343 |
self.assertRaises(Unauthorized, cnx.commit) |
|
344 |
cu.execute('SET X web "http://www.logilab.org" WHERE X eid %(x)s', {'x': eid}, 'x') |
|
345 |
cnx.commit() |
|
346 |
cnx.close() |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
347 |
|
0 | 348 |
def test_attribute_security_rqlexpr(self): |
349 |
# Note.para attribute editable by managers or if the note is in "todo" state |
|
350 |
eid = self.execute("INSERT Note X: X para 'bidule', X in_state S WHERE S name 'done'")[0][0] |
|
351 |
self.commit() |
|
352 |
self.execute('SET X para "truc" WHERE X eid %(x)s', {'x': eid}, 'x') |
|
353 |
self.commit() |
|
354 |
cnx = self.login('iaminusersgrouponly') |
|
355 |
cu = cnx.cursor() |
|
356 |
cu.execute("SET X para 'chouette' WHERE X eid %(x)s", {'x': eid}, 'x') |
|
357 |
self.assertRaises(Unauthorized, cnx.commit) |
|
358 |
eid2 = cu.execute("INSERT Note X: X para 'bidule'")[0][0] |
|
359 |
cnx.commit() |
|
360 |
cu.execute("SET X in_state S WHERE X eid %(x)s, S name 'done'", {'x': eid2}, 'x') |
|
361 |
cnx.commit() |
|
362 |
self.assertEquals(len(cu.execute('Any X WHERE X in_state S, S name "todo", X eid %(x)s', {'x': eid2}, 'x')), |
|
363 |
0) |
|
364 |
cu.execute("SET X para 'chouette' WHERE X eid %(x)s", {'x': eid2}, 'x') |
|
365 |
self.assertRaises(Unauthorized, cnx.commit) |
|
366 |
cu.execute("SET X in_state S WHERE X eid %(x)s, S name 'todo'", {'x': eid2}, 'x') |
|
367 |
cnx.commit() |
|
368 |
cu.execute("SET X para 'chouette' WHERE X eid %(x)s", {'x': eid2}, 'x') |
|
369 |
cnx.commit() |
|
370 |
||
371 |
def test_attribute_read_security(self): |
|
372 |
# anon not allowed to see users'login, but they can see users |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
389
diff
changeset
|
373 |
self.repo.schema['CWUser'].set_groups('read', ('guests', 'users', 'managers')) |
0 | 374 |
self.repo.schema['login'].set_groups('read', ('users', 'managers')) |
375 |
cnx = self.login('anon') |
|
376 |
cu = cnx.cursor() |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
389
diff
changeset
|
377 |
rset = cu.execute('CWUser X') |
0 | 378 |
self.failUnless(rset) |
379 |
x = rset.get_entity(0, 0) |
|
380 |
self.assertEquals(x.login, None) |
|
381 |
self.failUnless(x.creation_date) |
|
382 |
x = rset.get_entity(1, 0) |
|
383 |
x.complete() |
|
384 |
self.assertEquals(x.login, None) |
|
385 |
self.failUnless(x.creation_date) |
|
386 |
cnx.rollback() |
|
387 |
||
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
388 |
|
0 | 389 |
class BaseSchemaSecurityTC(BaseSecurityTC): |
390 |
"""tests related to the base schema permission configuration""" |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
391 |
|
0 | 392 |
def test_user_can_delete_object_he_created(self): |
393 |
# even if some other user have changed object'state |
|
394 |
cnx = self.login('iaminusersgrouponly') |
|
395 |
cu = cnx.cursor() |
|
396 |
# due to security test, affaire has to concerne a societe the user owns |
|
397 |
cu.execute('INSERT Societe X: X nom "ARCTIA"') |
|
398 |
cu.execute('INSERT Affaire X: X ref "ARCT01", X concerne S WHERE S nom "ARCTIA"') |
|
399 |
cnx.commit() |
|
400 |
self.restore_connection() |
|
401 |
self.execute('SET X in_state S WHERE X ref "ARCT01", S name "ben non"') |
|
402 |
self.commit() |
|
403 |
self.assertEquals(len(self.execute('TrInfo X WHERE X wf_info_for A, A ref "ARCT01"')), |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
404 |
2) |
0 | 405 |
self.assertEquals(len(self.execute('TrInfo X WHERE X wf_info_for A, A ref "ARCT01",' |
406 |
'X owned_by U, U login "admin"')), |
|
407 |
1) # TrInfo at the above state change |
|
408 |
self.assertEquals(len(self.execute('TrInfo X WHERE X wf_info_for A, A ref "ARCT01",' |
|
409 |
'X owned_by U, U login "iaminusersgrouponly"')), |
|
410 |
1) # TrInfo created at creation time |
|
411 |
cnx = self.login('iaminusersgrouponly') |
|
412 |
cu = cnx.cursor() |
|
413 |
cu.execute('DELETE Affaire X WHERE X ref "ARCT01"') |
|
414 |
cnx.commit() |
|
415 |
self.failIf(cu.execute('Affaire X')) |
|
416 |
||
417 |
def test_users_and_groups_non_readable_by_guests(self): |
|
418 |
cnx = self.login('anon') |
|
419 |
anon = cnx.user(self.current_session()) |
|
420 |
cu = cnx.cursor() |
|
421 |
# anonymous user can only read itself |
|
422 |
rset = cu.execute('Any L WHERE X owned_by U, U login L') |
|
423 |
self.assertEquals(rset.rows, [['anon']]) |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
389
diff
changeset
|
424 |
rset = cu.execute('CWUser X') |
0 | 425 |
self.assertEquals(rset.rows, [[anon.eid]]) |
426 |
# anonymous user can read groups (necessary to check allowed transitions for instance) |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
389
diff
changeset
|
427 |
self.assert_(cu.execute('CWGroup X')) |
0 | 428 |
# should only be able to read the anonymous user, not another one |
429 |
origuser = self.session.user |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
430 |
self.assertRaises(Unauthorized, |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
389
diff
changeset
|
431 |
cu.execute, 'CWUser X WHERE X eid %(x)s', {'x': origuser.eid}, 'x') |
0 | 432 |
# nothing selected, nothing updated, no exception raised |
433 |
#self.assertRaises(Unauthorized, |
|
434 |
# cu.execute, 'SET X login "toto" WHERE X eid %(x)s', |
|
435 |
# {'x': self.user.eid}) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
436 |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
389
diff
changeset
|
437 |
rset = cu.execute('CWUser X WHERE X eid %(x)s', {'x': anon.eid}, 'x') |
0 | 438 |
self.assertEquals(rset.rows, [[anon.eid]]) |
439 |
# but can't modify it |
|
440 |
cu.execute('SET X login "toto" WHERE X eid %(x)s', {'x': anon.eid}) |
|
441 |
self.assertRaises(Unauthorized, cnx.commit) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
442 |
|
0 | 443 |
def test_in_group_relation(self): |
444 |
cnx = self.login('iaminusersgrouponly') |
|
445 |
cu = cnx.cursor() |
|
446 |
rql = u"DELETE U in_group G WHERE U login 'admin'" |
|
447 |
self.assertRaises(Unauthorized, cu.execute, rql) |
|
448 |
rql = u"SET U in_group G WHERE U login 'admin', G name 'users'" |
|
449 |
self.assertRaises(Unauthorized, cu.execute, rql) |
|
450 |
||
451 |
def test_owned_by(self): |
|
452 |
self.execute("INSERT Personne X: X nom 'bidule'") |
|
453 |
self.commit() |
|
454 |
cnx = self.login('iaminusersgrouponly') |
|
455 |
cu = cnx.cursor() |
|
456 |
rql = u"SET X owned_by U WHERE U login 'iaminusersgrouponly', X is Personne" |
|
457 |
self.assertRaises(Unauthorized, cu.execute, rql) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
458 |
|
0 | 459 |
def test_bookmarked_by_guests_security(self): |
460 |
beid1 = self.execute('INSERT Bookmark B: B path "?vid=manage", B title "manage"')[0][0] |
|
461 |
beid2 = self.execute('INSERT Bookmark B: B path "?vid=index", B title "index", B bookmarked_by U WHERE U login "anon"')[0][0] |
|
462 |
self.commit() |
|
463 |
cnx = self.login('anon') |
|
464 |
cu = cnx.cursor() |
|
465 |
anoneid = self.current_session().user.eid |
|
466 |
self.assertEquals(cu.execute('Any T,P ORDERBY lower(T) WHERE B is Bookmark,B title T,B path P,' |
|
467 |
'B bookmarked_by U, U eid %s' % anoneid).rows, |
|
468 |
[['index', '?vid=index']]) |
|
469 |
self.assertEquals(cu.execute('Any T,P ORDERBY lower(T) WHERE B is Bookmark,B title T,B path P,' |
|
470 |
'B bookmarked_by U, U eid %(x)s', {'x': anoneid}).rows, |
|
471 |
[['index', '?vid=index']]) |
|
472 |
# can read others bookmarks as well |
|
473 |
self.assertEquals(cu.execute('Any B where B is Bookmark, NOT B bookmarked_by U').rows, |
|
474 |
[[beid1]]) |
|
475 |
self.assertRaises(Unauthorized, cu.execute,'DELETE B bookmarked_by U') |
|
476 |
self.assertRaises(Unauthorized, |
|
477 |
cu.execute, 'SET B bookmarked_by U WHERE U eid %(x)s, B eid %(b)s', |
|
478 |
{'x': anoneid, 'b': beid1}, 'x') |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
479 |
|
0 | 480 |
|
481 |
def test_ambigous_ordered(self): |
|
482 |
cnx = self.login('anon') |
|
483 |
cu = cnx.cursor() |
|
484 |
names = [t for t, in cu.execute('Any N ORDERBY lower(N) WHERE X name N')] |
|
485 |
self.assertEquals(names, sorted(names, key=lambda x: x.lower())) |
|
486 |
||
487 |
def test_in_state_without_update_perm(self): |
|
488 |
"""check a user change in_state without having update permission on the |
|
489 |
subject |
|
490 |
""" |
|
491 |
eid = self.execute('INSERT Affaire X: X ref "ARCT01"')[0][0] |
|
492 |
self.commit() |
|
493 |
cnx = self.login('iaminusersgrouponly') |
|
494 |
session = self.current_session() |
|
495 |
# needed to avoid check_perm error |
|
496 |
session.set_pool() |
|
497 |
# needed to remove rql expr granting update perm to the user |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
498 |
self.schema['Affaire'].set_rqlexprs('update', ()) |
0 | 499 |
self.assertRaises(Unauthorized, |
500 |
self.schema['Affaire'].check_perm, session, 'update', eid) |
|
501 |
cu = cnx.cursor() |
|
2500
e342a8662c8d
use an actual state name, not a transition name
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
502 |
cu.execute('SET X in_state S WHERE X ref "ARCT01", S name "ben non"') |
0 | 503 |
cnx.commit() |
504 |
# though changing a user state (even logged user) is reserved to managers |
|
505 |
rql = u"SET X in_state S WHERE X eid %(x)s, S name 'deactivated'" |
|
506 |
# XXX wether it should raise Unauthorized or ValidationError is not clear |
|
507 |
# the best would probably ValidationError if the transition doesn't exist |
|
508 |
# from the current state but Unauthorized if it exists but user can't pass it |
|
509 |
self.assertRaises(ValidationError, cu.execute, rql, {'x': cnx.user(self.current_session()).eid}, 'x') |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
510 |
|
2501
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
511 |
def test_trinfo_security(self): |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
512 |
aff = self.execute('INSERT Affaire X: X ref "ARCT01"').get_entity(0, 0) |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
513 |
self.commit() |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
514 |
# can change tr info comment |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
515 |
self.execute('SET TI comment %(c)s WHERE TI wf_info_for X, X ref "ARCT01"', |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
516 |
{'c': u'creation'}) |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
517 |
self.commit() |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
518 |
self.assertEquals(aff.latest_trinfo().comment, 'creation') |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
519 |
# but not from_state/to_state |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
520 |
self.execute('SET X in_state S WHERE X ref "ARCT01", S name "ben non"') |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
521 |
self.commit() |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
522 |
aff.clear_related_cache('wf_info_for', role='object') |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
523 |
trinfo = aff.latest_trinfo() |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
524 |
self.assertRaises(Unauthorized, |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
525 |
self.execute, 'SET TI from_state S WHERE TI eid %(ti)s, S name "ben non"', |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
526 |
{'ti': trinfo.eid}, 'ti') |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
527 |
self.assertRaises(Unauthorized, |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
528 |
self.execute, 'SET TI to_state S WHERE TI eid %(ti)s, S name "pitetre"', |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
529 |
{'ti': trinfo.eid}, 'ti') |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
530 |
|
0 | 531 |
if __name__ == '__main__': |
532 |
unittest_main() |