author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Tue, 06 Jul 2010 09:42:16 +0200 | |
branch | stable |
changeset 5899 | 11cecbaeb731 |
parent 5888 | 3ee80d487f11 |
child 5890 | 141b935a38fc |
permissions | -rw-r--r-- |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5419
diff
changeset
|
1 |
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5419
diff
changeset
|
2 |
# 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:
5419
diff
changeset
|
3 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5419
diff
changeset
|
4 |
# 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:
5419
diff
changeset
|
5 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5419
diff
changeset
|
6 |
# 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:
5419
diff
changeset
|
7 |
# 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:
5419
diff
changeset
|
8 |
# 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:
5419
diff
changeset
|
9 |
# 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:
5419
diff
changeset
|
10 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
11 |
# 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:
5419
diff
changeset
|
12 |
# 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:
5419
diff
changeset
|
13 |
# 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:
5419
diff
changeset
|
14 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5419
diff
changeset
|
15 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5419
diff
changeset
|
16 |
# 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:
5419
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
5886 | 18 |
"""functional tests for server'security""" |
19 |
||
0 | 20 |
import sys |
21 |
||
22 |
from logilab.common.testlib import unittest_main, TestCase |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
23 |
from cubicweb.devtools.testlib import CubicWebTC |
0 | 24 |
|
25 |
from cubicweb import Unauthorized, ValidationError |
|
26 |
from cubicweb.server.querier import check_read_access |
|
27 |
||
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
28 |
class BaseSecurityTC(CubicWebTC): |
0 | 29 |
|
30 |
def setUp(self): |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
31 |
CubicWebTC.setUp(self) |
0 | 32 |
self.create_user('iaminusersgrouponly') |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3252
diff
changeset
|
33 |
self.readoriggroups = self.schema['Personne'].permissions['read'] |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3252
diff
changeset
|
34 |
self.addoriggroups = self.schema['Personne'].permissions['add'] |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
35 |
|
0 | 36 |
def tearDown(self): |
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
37 |
CubicWebTC.tearDown(self) |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3252
diff
changeset
|
38 |
self.schema['Personne'].set_action_permissions('read', self.readoriggroups) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3252
diff
changeset
|
39 |
self.schema['Personne'].set_action_permissions('add', self.addoriggroups) |
0 | 40 |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
41 |
|
0 | 42 |
class LowLevelSecurityFunctionTC(BaseSecurityTC): |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
43 |
|
0 | 44 |
def test_check_read_access(self): |
45 |
rql = u'Personne U where U nom "managers"' |
|
3252
c0e10da6f1cf
tests update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
46 |
rqlst = self.repo.vreg.rqlhelper.parse(rql).children[0] |
0 | 47 |
origgroups = self.schema['Personne'].get_groups('read') |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3252
diff
changeset
|
48 |
self.schema['Personne'].set_action_permissions('read', ('users', 'managers')) |
4711
7ef3b029e10b
[test] we should properly use vreg method to compute solutions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4691
diff
changeset
|
49 |
self.repo.vreg.solutions(self.session, rqlst, None) |
0 | 50 |
solution = rqlst.solutions[0] |
5419
0b7805928a27
[repo security] deal with rewriten constant nodes in check_read_access, necessary when repo is used as an external source
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
51 |
check_read_access(self.session, rqlst, solution, {}) |
0 | 52 |
cnx = self.login('anon') |
53 |
cu = cnx.cursor() |
|
54 |
self.assertRaises(Unauthorized, |
|
55 |
check_read_access, |
|
5419
0b7805928a27
[repo security] deal with rewriten constant nodes in check_read_access, necessary when repo is used as an external source
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
56 |
self.session, rqlst, solution, {}) |
0 | 57 |
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
|
58 |
|
0 | 59 |
def test_upassword_not_selectable(self): |
60 |
self.assertRaises(Unauthorized, |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
389
diff
changeset
|
61 |
self.execute, 'Any X,P WHERE X is CWUser, X upassword P') |
0 | 62 |
self.rollback() |
63 |
cnx = self.login('iaminusersgrouponly') |
|
64 |
cu = cnx.cursor() |
|
65 |
self.assertRaises(Unauthorized, |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
389
diff
changeset
|
66 |
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
|
67 |
|
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
68 |
|
5888
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
69 |
class SecurityRewritingTC(BaseSecurityTC): |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
70 |
def hijack_source_execute(self): |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
71 |
def syntax_tree_search(*args, **kwargs): |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
72 |
self.query = (args, kwargs) |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
73 |
return [] |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
74 |
self.repo.system_source.syntax_tree_search = syntax_tree_search |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
75 |
|
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
76 |
def tearDown(self): |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
77 |
self.repo.system_source.__dict__.pop('syntax_tree_search', None) |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
78 |
BaseSecurityTC.tearDown(self) |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
79 |
|
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
80 |
def test_not_relation_read_security(self): |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
81 |
cnx = self.login('iaminusersgrouponly') |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
82 |
self.hijack_source_execute() |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
83 |
self.execute('Any U WHERE NOT A todo_by U, A is Affaire') |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
84 |
self.assertEquals(self.query[0][1].as_string(), |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
85 |
'Any U WHERE NOT EXISTS(A todo_by U), A is Affaire') |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
86 |
self.execute('Any U WHERE NOT EXISTS(A todo_by U), A is Affaire') |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
87 |
self.assertEquals(self.query[0][1].as_string(), |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
88 |
'Any U WHERE NOT EXISTS(A todo_by U), A is Affaire') |
3ee80d487f11
[security] fix read rql expression insertion: we should not insert rql expr on variables only referenced in neged relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5886
diff
changeset
|
89 |
|
0 | 90 |
class SecurityTC(BaseSecurityTC): |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
91 |
|
0 | 92 |
def setUp(self): |
93 |
BaseSecurityTC.setUp(self) |
|
94 |
# implicitly test manager can add some entities |
|
95 |
self.execute("INSERT Affaire X: X sujet 'cool'") |
|
96 |
self.execute("INSERT Societe X: X nom 'logilab'") |
|
97 |
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
|
98 |
self.execute('INSERT CWGroup X: X name "staff"') |
0 | 99 |
self.commit() |
100 |
||
101 |
def test_insert_security(self): |
|
102 |
cnx = self.login('anon') |
|
103 |
cu = cnx.cursor() |
|
104 |
cu.execute("INSERT Personne X: X nom 'bidule'") |
|
105 |
self.assertRaises(Unauthorized, cnx.commit) |
|
106 |
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
|
107 |
|
0 | 108 |
def test_insert_rql_permission(self): |
109 |
# test user can only add une affaire related to a societe he owns |
|
110 |
cnx = self.login('iaminusersgrouponly') |
|
111 |
cu = cnx.cursor() |
|
112 |
cu.execute("INSERT Affaire X: X sujet 'cool'") |
|
113 |
self.assertRaises(Unauthorized, cnx.commit) |
|
114 |
# test nothing has actually been inserted |
|
115 |
self.restore_connection() |
|
116 |
self.assertEquals(self.execute('Affaire X').rowcount, 1) |
|
117 |
cnx = self.login('iaminusersgrouponly') |
|
118 |
cu = cnx.cursor() |
|
119 |
cu.execute("INSERT Affaire X: X sujet 'cool'") |
|
120 |
cu.execute("INSERT Societe X: X nom 'chouette'") |
|
121 |
cu.execute("SET A concerne S WHERE A sujet 'cool', S nom 'chouette'") |
|
122 |
cnx.commit() |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
123 |
|
0 | 124 |
def test_update_security_1(self): |
125 |
cnx = self.login('anon') |
|
126 |
cu = cnx.cursor() |
|
127 |
# local security check |
|
128 |
cu.execute( "SET X nom 'bidulechouette' WHERE X is Personne") |
|
129 |
self.assertRaises(Unauthorized, cnx.commit) |
|
130 |
self.restore_connection() |
|
131 |
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
|
132 |
|
0 | 133 |
def test_update_security_2(self): |
134 |
cnx = self.login('anon') |
|
135 |
cu = cnx.cursor() |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3252
diff
changeset
|
136 |
self.repo.schema['Personne'].set_action_permissions('read', ('users', 'managers')) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3252
diff
changeset
|
137 |
self.repo.schema['Personne'].set_action_permissions('add', ('guests', 'users', 'managers')) |
0 | 138 |
self.assertRaises(Unauthorized, cu.execute, "SET X nom 'bidulechouette' WHERE X is Personne") |
139 |
#self.assertRaises(Unauthorized, cnx.commit) |
|
140 |
# test nothing has actually been inserted |
|
141 |
self.restore_connection() |
|
142 |
self.assertEquals(self.execute('Personne X WHERE X nom "bidulechouette"').rowcount, 0) |
|
143 |
||
144 |
def test_update_security_3(self): |
|
145 |
cnx = self.login('iaminusersgrouponly') |
|
146 |
cu = cnx.cursor() |
|
147 |
cu.execute("INSERT Personne X: X nom 'biduuule'") |
|
148 |
cu.execute("INSERT Societe X: X nom 'looogilab'") |
|
149 |
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
|
150 |
|
0 | 151 |
def test_update_rql_permission(self): |
152 |
self.execute("SET A concerne S WHERE A is Affaire, S is Societe") |
|
153 |
self.commit() |
|
154 |
# test user can only update une affaire related to a societe he owns |
|
155 |
cnx = self.login('iaminusersgrouponly') |
|
156 |
cu = cnx.cursor() |
|
157 |
cu.execute("SET X sujet 'pascool' WHERE X is Affaire") |
|
158 |
# this won't actually do anything since the selection query won't return anything |
|
159 |
cnx.commit() |
|
160 |
# to actually get Unauthorized exception, try to update an entity we can read |
|
161 |
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
|
162 |
self.assertRaises(Unauthorized, cnx.commit) |
0 | 163 |
cu.execute("INSERT Affaire X: X sujet 'pascool'") |
164 |
cu.execute("INSERT Societe X: X nom 'chouette'") |
|
165 |
cu.execute("SET A concerne S WHERE A sujet 'pascool', S nom 'chouette'") |
|
166 |
cu.execute("SET X sujet 'habahsicestcool' WHERE X sujet 'pascool'") |
|
167 |
cnx.commit() |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
168 |
|
0 | 169 |
def test_delete_security(self): |
170 |
# FIXME: sample below fails because we don't detect "owner" can't delete |
|
171 |
# user anyway, and since no user with login == 'bidule' exists, no |
|
172 |
# exception is raised |
|
173 |
#user._groups = {'guests':1} |
|
174 |
#self.assertRaises(Unauthorized, |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
389
diff
changeset
|
175 |
# self.o.execute, user, "DELETE CWUser X WHERE X login 'bidule'") |
0 | 176 |
# check local security |
177 |
cnx = self.login('iaminusersgrouponly') |
|
178 |
cu = cnx.cursor() |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
389
diff
changeset
|
179 |
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
|
180 |
|
0 | 181 |
def test_delete_rql_permission(self): |
182 |
self.execute("SET A concerne S WHERE A is Affaire, S is Societe") |
|
183 |
self.commit() |
|
184 |
# test user can only dele une affaire related to a societe he owns |
|
185 |
cnx = self.login('iaminusersgrouponly') |
|
186 |
cu = cnx.cursor() |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
187 |
# this won't actually do anything since the selection query won't return anything |
0 | 188 |
cu.execute("DELETE Affaire X") |
189 |
cnx.commit() |
|
190 |
# to actually get Unauthorized exception, try to delete an entity we can read |
|
191 |
self.assertRaises(Unauthorized, cu.execute, "DELETE Societe S") |
|
192 |
cu.execute("INSERT Affaire X: X sujet 'pascool'") |
|
193 |
cu.execute("INSERT Societe X: X nom 'chouette'") |
|
194 |
cu.execute("SET A concerne S WHERE A sujet 'pascool', S nom 'chouette'") |
|
195 |
cnx.commit() |
|
196 |
## # this one should fail since it will try to delete two affaires, one authorized |
|
197 |
## # and the other not |
|
198 |
## self.assertRaises(Unauthorized, cu.execute, "DELETE Affaire X") |
|
199 |
cu.execute("DELETE Affaire X WHERE X sujet 'pascool'") |
|
200 |
cnx.commit() |
|
201 |
||
202 |
||
203 |
def test_insert_relation_rql_permission(self): |
|
204 |
cnx = self.login('iaminusersgrouponly') |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
205 |
session = self.session |
0 | 206 |
cu = cnx.cursor(session) |
207 |
cu.execute("SET A concerne S WHERE A is Affaire, S is Societe") |
|
208 |
# should raise Unauthorized since user don't own S |
|
209 |
# though this won't actually do anything since the selection query won't return anything |
|
210 |
cnx.commit() |
|
211 |
# to actually get Unauthorized exception, try to insert a relation were we can read both entities |
|
212 |
rset = cu.execute('Personne P') |
|
213 |
self.assertEquals(len(rset), 1) |
|
214 |
ent = rset.get_entity(0, 0) |
|
215 |
session.set_pool() # necessary |
|
216 |
self.assertRaises(Unauthorized, |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3252
diff
changeset
|
217 |
ent.e_schema.check_perm, session, 'update', eid=ent.eid) |
0 | 218 |
self.assertRaises(Unauthorized, |
219 |
cu.execute, "SET P travaille S WHERE P is Personne, S is Societe") |
|
220 |
# test nothing has actually been inserted: |
|
221 |
self.assertEquals(cu.execute('Any P,S WHERE P travaille S,P is Personne, S is Societe').rowcount, 0) |
|
222 |
cu.execute("INSERT Societe X: X nom 'chouette'") |
|
223 |
cu.execute("SET A concerne S WHERE A is Affaire, S nom 'chouette'") |
|
224 |
cnx.commit() |
|
225 |
||
226 |
def test_delete_relation_rql_permission(self): |
|
227 |
self.execute("SET A concerne S WHERE A is Affaire, S is Societe") |
|
228 |
self.commit() |
|
229 |
cnx = self.login('iaminusersgrouponly') |
|
230 |
cu = cnx.cursor() |
|
231 |
# this won't actually do anything since the selection query won't return anything |
|
232 |
cu.execute("DELETE A concerne S") |
|
233 |
cnx.commit() |
|
234 |
# to actually get Unauthorized exception, try to delete a relation we can read |
|
235 |
self.restore_connection() |
|
236 |
eid = self.execute("INSERT Affaire X: X sujet 'pascool'")[0][0] |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
237 |
self.execute('SET X owned_by U WHERE X eid %(x)s, U login "iaminusersgrouponly"', {'x': eid}) |
0 | 238 |
self.execute("SET A concerne S WHERE A sujet 'pascool', S is Societe") |
239 |
self.commit() |
|
240 |
cnx = self.login('iaminusersgrouponly') |
|
241 |
cu = cnx.cursor() |
|
242 |
self.assertRaises(Unauthorized, cu.execute, "DELETE A concerne S") |
|
243 |
cu.execute("INSERT Societe X: X nom 'chouette'") |
|
244 |
cu.execute("SET A concerne S WHERE A is Affaire, S nom 'chouette'") |
|
245 |
cnx.commit() |
|
246 |
cu.execute("DELETE A concerne S WHERE S nom 'chouette'") |
|
247 |
||
248 |
||
249 |
def test_user_can_change_its_upassword(self): |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
250 |
ueid = self.create_user('user').eid |
0 | 251 |
cnx = self.login('user') |
252 |
cu = cnx.cursor() |
|
253 |
cu.execute('SET X upassword %(passwd)s WHERE X eid %(x)s', |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
254 |
{'x': ueid, 'passwd': 'newpwd'}) |
0 | 255 |
cnx.commit() |
256 |
cnx.close() |
|
4191
01638461d4b0
test update. All cw tests OK
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3890
diff
changeset
|
257 |
cnx = self.login('user', password='newpwd') |
0 | 258 |
|
259 |
def test_user_cant_change_other_upassword(self): |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
260 |
ueid = self.create_user('otheruser').eid |
0 | 261 |
cnx = self.login('iaminusersgrouponly') |
262 |
cu = cnx.cursor() |
|
263 |
cu.execute('SET X upassword %(passwd)s WHERE X eid %(x)s', |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
264 |
{'x': ueid, 'passwd': 'newpwd'}) |
0 | 265 |
self.assertRaises(Unauthorized, cnx.commit) |
266 |
||
267 |
# read security test |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
268 |
|
0 | 269 |
def test_read_base(self): |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3252
diff
changeset
|
270 |
self.schema['Personne'].set_action_permissions('read', ('users', 'managers')) |
0 | 271 |
cnx = self.login('anon') |
272 |
cu = cnx.cursor() |
|
273 |
self.assertRaises(Unauthorized, |
|
274 |
cu.execute, 'Personne U where U nom "managers"') |
|
275 |
||
321
247947250382
fix security bug w/ query using 'NOT X eid 123'
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
0
diff
changeset
|
276 |
def test_read_erqlexpr_base(self): |
0 | 277 |
eid = self.execute("INSERT Affaire X: X sujet 'cool'")[0][0] |
278 |
self.commit() |
|
279 |
cnx = self.login('iaminusersgrouponly') |
|
280 |
cu = cnx.cursor() |
|
281 |
rset = cu.execute('Affaire X') |
|
282 |
self.assertEquals(rset.rows, []) |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
283 |
self.assertRaises(Unauthorized, cu.execute, 'Any X WHERE X eid %(x)s', {'x': eid}) |
321
247947250382
fix security bug w/ query using 'NOT X eid 123'
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
0
diff
changeset
|
284 |
# cache test |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
285 |
self.assertRaises(Unauthorized, cu.execute, 'Any X WHERE X eid %(x)s', {'x': eid}) |
0 | 286 |
aff2 = cu.execute("INSERT Affaire X: X sujet 'cool'")[0][0] |
287 |
soc1 = cu.execute("INSERT Societe X: X nom 'chouette'")[0][0] |
|
288 |
cu.execute("SET A concerne S WHERE A is Affaire, S is Societe") |
|
289 |
cnx.commit() |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
290 |
rset = cu.execute('Any X WHERE X eid %(x)s', {'x': aff2}) |
0 | 291 |
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
|
292 |
# more cache test w/ NOT eid |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
293 |
rset = cu.execute('Affaire X WHERE NOT X eid %(x)s', {'x': eid}) |
389 | 294 |
self.assertEquals(rset.rows, [[aff2]]) |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
295 |
rset = cu.execute('Affaire X WHERE NOT X eid %(x)s', {'x': aff2}) |
321
247947250382
fix security bug w/ query using 'NOT X eid 123'
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
0
diff
changeset
|
296 |
self.assertEquals(rset.rows, []) |
4765 | 297 |
# test can't update an attribute of an entity that can't be readen |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
298 |
self.assertRaises(Unauthorized, cu.execute, 'SET X sujet "hacked" WHERE X eid %(x)s', {'x': eid}) |
4765 | 299 |
|
300 |
||
301 |
def test_entity_created_in_transaction(self): |
|
302 |
affschema = self.schema['Affaire'] |
|
303 |
origperms = affschema.permissions['read'] |
|
304 |
affschema.set_action_permissions('read', affschema.permissions['add']) |
|
305 |
try: |
|
306 |
cnx = self.login('iaminusersgrouponly') |
|
307 |
cu = cnx.cursor() |
|
308 |
aff2 = cu.execute("INSERT Affaire X: X sujet 'cool'")[0][0] |
|
309 |
# entity created in transaction are readable *by eid* |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
310 |
self.failUnless(cu.execute('Any X WHERE X eid %(x)s', {'x':aff2})) |
4765 | 311 |
# XXX would be nice if it worked |
312 |
rset = cu.execute("Affaire X WHERE X sujet 'cool'") |
|
313 |
self.assertEquals(len(rset), 0) |
|
314 |
finally: |
|
315 |
affschema.set_action_permissions('read', origperms) |
|
316 |
cnx.close() |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
317 |
|
0 | 318 |
def test_read_erqlexpr_has_text1(self): |
319 |
aff1 = self.execute("INSERT Affaire X: X sujet 'cool'")[0][0] |
|
320 |
card1 = self.execute("INSERT Card X: X title 'cool'")[0][0] |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
321 |
self.execute('SET X owned_by U WHERE X eid %(x)s, U login "iaminusersgrouponly"', {'x': card1}) |
0 | 322 |
self.commit() |
323 |
cnx = self.login('iaminusersgrouponly') |
|
324 |
cu = cnx.cursor() |
|
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
325 |
aff2 = cu.execute("INSERT Affaire X: X sujet 'cool'")[0][0] |
0 | 326 |
soc1 = cu.execute("INSERT Societe X: X nom 'chouette'")[0][0] |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
327 |
cu.execute("SET A concerne S WHERE A eid %(a)s, S eid %(s)s", {'a': aff2, 's': soc1}) |
0 | 328 |
cnx.commit() |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
329 |
self.assertRaises(Unauthorized, cu.execute, 'Any X WHERE X eid %(x)s', {'x':aff1}) |
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
330 |
self.failUnless(cu.execute('Any X WHERE X eid %(x)s', {'x':aff2})) |
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
331 |
self.failUnless(cu.execute('Any X WHERE X eid %(x)s', {'x':card1})) |
0 | 332 |
rset = cu.execute("Any X WHERE X has_text 'cool'") |
333 |
self.assertEquals(sorted(eid for eid, in rset.rows), |
|
334 |
[card1, aff2]) |
|
335 |
||
336 |
def test_read_erqlexpr_has_text2(self): |
|
337 |
self.execute("INSERT Personne X: X nom 'bidule'") |
|
338 |
self.execute("INSERT Societe X: X nom 'bidule'") |
|
339 |
self.commit() |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3252
diff
changeset
|
340 |
self.schema['Personne'].set_action_permissions('read', ('managers',)) |
0 | 341 |
cnx = self.login('iaminusersgrouponly') |
342 |
cu = cnx.cursor() |
|
343 |
rset = cu.execute('Any N WHERE N has_text "bidule"') |
|
344 |
self.assertEquals(len(rset.rows), 1, rset.rows) |
|
345 |
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
|
346 |
self.assertEquals(len(rset.rows), 1, rset.rows) |
0 | 347 |
|
348 |
def test_read_erqlexpr_optional_rel(self): |
|
349 |
self.execute("INSERT Personne X: X nom 'bidule'") |
|
350 |
self.execute("INSERT Societe X: X nom 'bidule'") |
|
351 |
self.commit() |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3252
diff
changeset
|
352 |
self.schema['Personne'].set_action_permissions('read', ('managers',)) |
0 | 353 |
cnx = self.login('anon') |
354 |
cu = cnx.cursor() |
|
355 |
rset = cu.execute('Any N,U WHERE N has_text "bidule", N owned_by U?') |
|
356 |
self.assertEquals(len(rset.rows), 1, rset.rows) |
|
357 |
||
358 |
def test_read_erqlexpr_aggregat(self): |
|
359 |
self.execute("INSERT Affaire X: X sujet 'cool'")[0][0] |
|
360 |
self.commit() |
|
361 |
cnx = self.login('iaminusersgrouponly') |
|
362 |
cu = cnx.cursor() |
|
363 |
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
|
364 |
self.assertEquals(rset.rows, [[0]]) |
0 | 365 |
aff2 = cu.execute("INSERT Affaire X: X sujet 'cool'")[0][0] |
366 |
soc1 = cu.execute("INSERT Societe X: X nom 'chouette'")[0][0] |
|
367 |
cu.execute("SET A concerne S WHERE A is Affaire, S is Societe") |
|
368 |
cnx.commit() |
|
369 |
rset = cu.execute('Any COUNT(X) WHERE X is Affaire') |
|
370 |
self.assertEquals(rset.rows, [[1]]) |
|
371 |
rset = cu.execute('Any ETN, COUNT(X) GROUPBY ETN WHERE X is ET, ET name ETN') |
|
372 |
values = dict(rset) |
|
373 |
self.assertEquals(values['Affaire'], 1) |
|
374 |
self.assertEquals(values['Societe'], 2) |
|
375 |
rset = cu.execute('Any ETN, COUNT(X) GROUPBY ETN WHERE X is ET, ET name ETN WITH X BEING ((Affaire X) UNION (Societe X))') |
|
376 |
self.assertEquals(len(rset), 2) |
|
377 |
values = dict(rset) |
|
378 |
self.assertEquals(values['Affaire'], 1) |
|
379 |
self.assertEquals(values['Societe'], 2) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
380 |
|
0 | 381 |
|
382 |
def test_attribute_security(self): |
|
383 |
# only managers should be able to edit the 'test' attribute of Personne entities |
|
384 |
eid = self.execute("INSERT Personne X: X nom 'bidule', X web 'http://www.debian.org', X test TRUE")[0][0] |
|
385 |
self.commit() |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
386 |
self.execute('SET X test FALSE WHERE X eid %(x)s', {'x': eid}) |
0 | 387 |
self.commit() |
388 |
cnx = self.login('iaminusersgrouponly') |
|
389 |
cu = cnx.cursor() |
|
390 |
cu.execute("INSERT Personne X: X nom 'bidule', X web 'http://www.debian.org', X test TRUE") |
|
391 |
self.assertRaises(Unauthorized, cnx.commit) |
|
392 |
cu.execute("INSERT Personne X: X nom 'bidule', X web 'http://www.debian.org', X test FALSE") |
|
393 |
self.assertRaises(Unauthorized, cnx.commit) |
|
394 |
eid = cu.execute("INSERT Personne X: X nom 'bidule', X web 'http://www.debian.org'")[0][0] |
|
395 |
cnx.commit() |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
396 |
cu.execute('SET X test FALSE WHERE X eid %(x)s', {'x': eid}) |
0 | 397 |
self.assertRaises(Unauthorized, cnx.commit) |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
398 |
cu.execute('SET X test TRUE WHERE X eid %(x)s', {'x': eid}) |
0 | 399 |
self.assertRaises(Unauthorized, cnx.commit) |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
400 |
cu.execute('SET X web "http://www.logilab.org" WHERE X eid %(x)s', {'x': eid}) |
0 | 401 |
cnx.commit() |
402 |
cnx.close() |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
403 |
|
0 | 404 |
def test_attribute_security_rqlexpr(self): |
405 |
# Note.para attribute editable by managers or if the note is in "todo" state |
|
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
406 |
note = self.execute("INSERT Note X: X para 'bidule'").get_entity(0, 0) |
0 | 407 |
self.commit() |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
408 |
note.fire_transition('markasdone') |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
409 |
self.execute('SET X para "truc" WHERE X eid %(x)s', {'x': note.eid}) |
0 | 410 |
self.commit() |
411 |
cnx = self.login('iaminusersgrouponly') |
|
412 |
cu = cnx.cursor() |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
413 |
cu.execute("SET X para 'chouette' WHERE X eid %(x)s", {'x': note.eid}) |
0 | 414 |
self.assertRaises(Unauthorized, cnx.commit) |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
415 |
note2 = cu.execute("INSERT Note X: X para 'bidule'").get_entity(0, 0) |
0 | 416 |
cnx.commit() |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
417 |
note2.fire_transition('markasdone') |
0 | 418 |
cnx.commit() |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
419 |
self.assertEquals(len(cu.execute('Any X WHERE X in_state S, S name "todo", X eid %(x)s', {'x': note2.eid})), |
0 | 420 |
0) |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
421 |
cu.execute("SET X para 'chouette' WHERE X eid %(x)s", {'x': note2.eid}) |
0 | 422 |
self.assertRaises(Unauthorized, cnx.commit) |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
423 |
note2.fire_transition('redoit') |
0 | 424 |
cnx.commit() |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
425 |
cu.execute("SET X para 'chouette' WHERE X eid %(x)s", {'x': note2.eid}) |
0 | 426 |
cnx.commit() |
427 |
||
428 |
def test_attribute_read_security(self): |
|
429 |
# anon not allowed to see users'login, but they can see users |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3252
diff
changeset
|
430 |
self.repo.schema['CWUser'].set_action_permissions('read', ('guests', 'users', 'managers')) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3252
diff
changeset
|
431 |
self.repo.schema['CWUser'].rdef('login').set_action_permissions('read', ('users', 'managers')) |
0 | 432 |
cnx = self.login('anon') |
433 |
cu = cnx.cursor() |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
389
diff
changeset
|
434 |
rset = cu.execute('CWUser X') |
0 | 435 |
self.failUnless(rset) |
436 |
x = rset.get_entity(0, 0) |
|
437 |
self.assertEquals(x.login, None) |
|
438 |
self.failUnless(x.creation_date) |
|
439 |
x = rset.get_entity(1, 0) |
|
440 |
x.complete() |
|
441 |
self.assertEquals(x.login, None) |
|
442 |
self.failUnless(x.creation_date) |
|
443 |
cnx.rollback() |
|
444 |
||
445 |
class BaseSchemaSecurityTC(BaseSecurityTC): |
|
446 |
"""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
|
447 |
|
0 | 448 |
def test_user_can_delete_object_he_created(self): |
449 |
# even if some other user have changed object'state |
|
450 |
cnx = self.login('iaminusersgrouponly') |
|
451 |
cu = cnx.cursor() |
|
452 |
# due to security test, affaire has to concerne a societe the user owns |
|
453 |
cu.execute('INSERT Societe X: X nom "ARCTIA"') |
|
454 |
cu.execute('INSERT Affaire X: X ref "ARCT01", X concerne S WHERE S nom "ARCTIA"') |
|
455 |
cnx.commit() |
|
456 |
self.restore_connection() |
|
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
457 |
affaire = self.execute('Any X WHERE X ref "ARCT01"').get_entity(0, 0) |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
458 |
affaire.fire_transition('abort') |
0 | 459 |
self.commit() |
460 |
self.assertEquals(len(self.execute('TrInfo X WHERE X wf_info_for A, A ref "ARCT01"')), |
|
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
461 |
1) |
0 | 462 |
self.assertEquals(len(self.execute('TrInfo X WHERE X wf_info_for A, A ref "ARCT01",' |
463 |
'X owned_by U, U login "admin"')), |
|
464 |
1) # TrInfo at the above state change |
|
465 |
cnx = self.login('iaminusersgrouponly') |
|
466 |
cu = cnx.cursor() |
|
467 |
cu.execute('DELETE Affaire X WHERE X ref "ARCT01"') |
|
468 |
cnx.commit() |
|
469 |
self.failIf(cu.execute('Affaire X')) |
|
470 |
||
471 |
def test_users_and_groups_non_readable_by_guests(self): |
|
472 |
cnx = self.login('anon') |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
473 |
anon = cnx.user(self.session) |
0 | 474 |
cu = cnx.cursor() |
475 |
# anonymous user can only read itself |
|
476 |
rset = cu.execute('Any L WHERE X owned_by U, U login L') |
|
477 |
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
|
478 |
rset = cu.execute('CWUser X') |
0 | 479 |
self.assertEquals(rset.rows, [[anon.eid]]) |
480 |
# 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
|
481 |
self.assert_(cu.execute('CWGroup X')) |
0 | 482 |
# should only be able to read the anonymous user, not another one |
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
483 |
origuser = self.adminsession.user |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
484 |
self.assertRaises(Unauthorized, |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
485 |
cu.execute, 'CWUser X WHERE X eid %(x)s', {'x': origuser.eid}) |
0 | 486 |
# nothing selected, nothing updated, no exception raised |
487 |
#self.assertRaises(Unauthorized, |
|
488 |
# cu.execute, 'SET X login "toto" WHERE X eid %(x)s', |
|
489 |
# {'x': self.user.eid}) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
490 |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
491 |
rset = cu.execute('CWUser X WHERE X eid %(x)s', {'x': anon.eid}) |
0 | 492 |
self.assertEquals(rset.rows, [[anon.eid]]) |
493 |
# but can't modify it |
|
4915
d657b89df9f4
fix test broken by recent rql rewrite / querier changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4787
diff
changeset
|
494 |
cu.execute('SET X login "toto" WHERE X eid %(x)s', {'x': anon.eid}) |
d657b89df9f4
fix test broken by recent rql rewrite / querier changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4787
diff
changeset
|
495 |
self.assertRaises(Unauthorized, cnx.commit) |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
496 |
|
0 | 497 |
def test_in_group_relation(self): |
498 |
cnx = self.login('iaminusersgrouponly') |
|
499 |
cu = cnx.cursor() |
|
500 |
rql = u"DELETE U in_group G WHERE U login 'admin'" |
|
501 |
self.assertRaises(Unauthorized, cu.execute, rql) |
|
502 |
rql = u"SET U in_group G WHERE U login 'admin', G name 'users'" |
|
503 |
self.assertRaises(Unauthorized, cu.execute, rql) |
|
504 |
||
505 |
def test_owned_by(self): |
|
506 |
self.execute("INSERT Personne X: X nom 'bidule'") |
|
507 |
self.commit() |
|
508 |
cnx = self.login('iaminusersgrouponly') |
|
509 |
cu = cnx.cursor() |
|
510 |
rql = u"SET X owned_by U WHERE U login 'iaminusersgrouponly', X is Personne" |
|
511 |
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
|
512 |
|
0 | 513 |
def test_bookmarked_by_guests_security(self): |
514 |
beid1 = self.execute('INSERT Bookmark B: B path "?vid=manage", B title "manage"')[0][0] |
|
515 |
beid2 = self.execute('INSERT Bookmark B: B path "?vid=index", B title "index", B bookmarked_by U WHERE U login "anon"')[0][0] |
|
516 |
self.commit() |
|
517 |
cnx = self.login('anon') |
|
518 |
cu = cnx.cursor() |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
519 |
anoneid = self.session.user.eid |
0 | 520 |
self.assertEquals(cu.execute('Any T,P ORDERBY lower(T) WHERE B is Bookmark,B title T,B path P,' |
521 |
'B bookmarked_by U, U eid %s' % anoneid).rows, |
|
522 |
[['index', '?vid=index']]) |
|
523 |
self.assertEquals(cu.execute('Any T,P ORDERBY lower(T) WHERE B is Bookmark,B title T,B path P,' |
|
524 |
'B bookmarked_by U, U eid %(x)s', {'x': anoneid}).rows, |
|
525 |
[['index', '?vid=index']]) |
|
526 |
# can read others bookmarks as well |
|
527 |
self.assertEquals(cu.execute('Any B where B is Bookmark, NOT B bookmarked_by U').rows, |
|
528 |
[[beid1]]) |
|
529 |
self.assertRaises(Unauthorized, cu.execute,'DELETE B bookmarked_by U') |
|
530 |
self.assertRaises(Unauthorized, |
|
531 |
cu.execute, 'SET B bookmarked_by U WHERE U eid %(x)s, B eid %(b)s', |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
532 |
{'x': anoneid, 'b': beid1}) |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
533 |
|
0 | 534 |
|
535 |
def test_ambigous_ordered(self): |
|
536 |
cnx = self.login('anon') |
|
537 |
cu = cnx.cursor() |
|
538 |
names = [t for t, in cu.execute('Any N ORDERBY lower(N) WHERE X name N')] |
|
539 |
self.assertEquals(names, sorted(names, key=lambda x: x.lower())) |
|
540 |
||
541 |
def test_in_state_without_update_perm(self): |
|
542 |
"""check a user change in_state without having update permission on the |
|
543 |
subject |
|
544 |
""" |
|
545 |
eid = self.execute('INSERT Affaire X: X ref "ARCT01"')[0][0] |
|
546 |
self.commit() |
|
547 |
cnx = self.login('iaminusersgrouponly') |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
548 |
session = self.session |
0 | 549 |
# needed to avoid check_perm error |
550 |
session.set_pool() |
|
551 |
# needed to remove rql expr granting update perm to the user |
|
4691
ae468fae9965
[test] fix test inter-dependancies pb. Pytest ok in each individual test dir, though not yet for whole cubicweb, but for different reasons
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4191
diff
changeset
|
552 |
affaire_perms = self.schema['Affaire'].permissions.copy() |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3252
diff
changeset
|
553 |
self.schema['Affaire'].set_action_permissions('update', self.schema['Affaire'].get_groups('update')) |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
554 |
try: |
4691
ae468fae9965
[test] fix test inter-dependancies pb. Pytest ok in each individual test dir, though not yet for whole cubicweb, but for different reasons
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4191
diff
changeset
|
555 |
self.assertRaises(Unauthorized, |
ae468fae9965
[test] fix test inter-dependancies pb. Pytest ok in each individual test dir, though not yet for whole cubicweb, but for different reasons
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4191
diff
changeset
|
556 |
self.schema['Affaire'].check_perm, session, 'update', eid=eid) |
ae468fae9965
[test] fix test inter-dependancies pb. Pytest ok in each individual test dir, though not yet for whole cubicweb, but for different reasons
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4191
diff
changeset
|
557 |
cu = cnx.cursor() |
ae468fae9965
[test] fix test inter-dependancies pb. Pytest ok in each individual test dir, though not yet for whole cubicweb, but for different reasons
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4191
diff
changeset
|
558 |
self.schema['Affaire'].set_action_permissions('read', ('users',)) |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
559 |
aff = cu.execute('Any X WHERE X ref "ARCT01"').get_entity(0, 0) |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
560 |
aff.fire_transition('abort') |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
561 |
cnx.commit() |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
562 |
# though changing a user state (even logged user) is reserved to managers |
3447 | 563 |
user = cnx.user(self.session) |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
564 |
# XXX wether it should raise Unauthorized or ValidationError is not clear |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
565 |
# the best would probably ValidationError if the transition doesn't exist |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
566 |
# from the current state but Unauthorized if it exists but user can't pass it |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
567 |
self.assertRaises(ValidationError, user.fire_transition, 'deactivate') |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
568 |
finally: |
4691
ae468fae9965
[test] fix test inter-dependancies pb. Pytest ok in each individual test dir, though not yet for whole cubicweb, but for different reasons
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4191
diff
changeset
|
569 |
# restore orig perms |
ae468fae9965
[test] fix test inter-dependancies pb. Pytest ok in each individual test dir, though not yet for whole cubicweb, but for different reasons
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4191
diff
changeset
|
570 |
for action, perms in affaire_perms.iteritems(): |
ae468fae9965
[test] fix test inter-dependancies pb. Pytest ok in each individual test dir, though not yet for whole cubicweb, but for different reasons
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4191
diff
changeset
|
571 |
self.schema['Affaire'].set_action_permissions(action, perms) |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
572 |
|
2501
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
573 |
def test_trinfo_security(self): |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
574 |
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
|
575 |
self.commit() |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
576 |
aff.fire_transition('abort') |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
577 |
self.commit() |
2501
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
578 |
# can change tr info comment |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
579 |
self.execute('SET TI comment %(c)s WHERE TI wf_info_for X, X ref "ARCT01"', |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
580 |
{'c': u'bouh!'}) |
2501
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
581 |
self.commit() |
2608
21856eda34f6
[F repo tests] tests have to be updated:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2501
diff
changeset
|
582 |
aff.clear_related_cache('wf_info_for', 'object') |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
583 |
trinfo = aff.latest_trinfo() |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2608
diff
changeset
|
584 |
self.assertEquals(trinfo.comment, 'bouh!') |
2501
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
585 |
# but not from_state/to_state |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
586 |
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
|
587 |
self.assertRaises(Unauthorized, |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
588 |
self.execute, 'SET TI from_state S WHERE TI eid %(ti)s, S name "ben non"', |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
589 |
{'ti': trinfo.eid}) |
2501
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
590 |
self.assertRaises(Unauthorized, |
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
591 |
self.execute, 'SET TI to_state S WHERE TI eid %(ti)s, S name "pitetre"', |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4915
diff
changeset
|
592 |
{'ti': trinfo.eid}) |
2501
fa86d99c2c3a
test and fix wf history security
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2500
diff
changeset
|
593 |
|
0 | 594 |
if __name__ == '__main__': |
595 |
unittest_main() |