Show More
@@ -1,391 +1,391 b'' | |||
|
1 | 1 | # -*- coding: utf-8 -*- |
|
2 | 2 | |
|
3 | 3 | # Copyright (C) 2010-2020 RhodeCode GmbH |
|
4 | 4 | # |
|
5 | 5 | # This program is free software: you can redistribute it and/or modify |
|
6 | 6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
7 | 7 | # (only), as published by the Free Software Foundation. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU Affero General Public License |
|
15 | 15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
16 | 16 | # |
|
17 | 17 | # This program is dual-licensed. If you wish to learn more about the |
|
18 | 18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
19 | 19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
20 | 20 | |
|
21 | 21 | import mock |
|
22 | 22 | import pytest |
|
23 | 23 | |
|
24 | 24 | from rhodecode.lib import helpers as h |
|
25 | 25 | from rhodecode.model.db import User, Gist |
|
26 | 26 | from rhodecode.model.gist import GistModel |
|
27 | 27 | from rhodecode.model.meta import Session |
|
28 | 28 | from rhodecode.tests import ( |
|
29 | 29 | TEST_USER_ADMIN_LOGIN, TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS, |
|
30 | 30 | TestController, assert_session_flash) |
|
31 | 31 | |
|
32 | 32 | |
|
33 | 33 | def route_path(name, params=None, **kwargs): |
|
34 | 34 | import urllib |
|
35 | 35 | from rhodecode.apps._base import ADMIN_PREFIX |
|
36 | 36 | |
|
37 | 37 | base_url = { |
|
38 | 38 | 'gists_show': ADMIN_PREFIX + '/gists', |
|
39 | 39 | 'gists_new': ADMIN_PREFIX + '/gists/new', |
|
40 | 40 | 'gists_create': ADMIN_PREFIX + '/gists/create', |
|
41 | 41 | 'gist_show': ADMIN_PREFIX + '/gists/{gist_id}', |
|
42 | 42 | 'gist_delete': ADMIN_PREFIX + '/gists/{gist_id}/delete', |
|
43 | 43 | 'gist_edit': ADMIN_PREFIX + '/gists/{gist_id}/edit', |
|
44 | 44 | 'gist_edit_check_revision': ADMIN_PREFIX + '/gists/{gist_id}/edit/check_revision', |
|
45 | 45 | 'gist_update': ADMIN_PREFIX + '/gists/{gist_id}/update', |
|
46 | 46 | 'gist_show_rev': ADMIN_PREFIX + '/gists/{gist_id}/{revision}', |
|
47 | 47 | 'gist_show_formatted': ADMIN_PREFIX + '/gists/{gist_id}/{revision}/{format}', |
|
48 | 48 | 'gist_show_formatted_path': ADMIN_PREFIX + '/gists/{gist_id}/{revision}/{format}/{f_path}', |
|
49 | 49 | |
|
50 | 50 | }[name].format(**kwargs) |
|
51 | 51 | |
|
52 | 52 | if params: |
|
53 | 53 | base_url = '{}?{}'.format(base_url, urllib.urlencode(params)) |
|
54 | 54 | return base_url |
|
55 | 55 | |
|
56 | 56 | |
|
57 | 57 | class GistUtility(object): |
|
58 | 58 | |
|
59 | 59 | def __init__(self): |
|
60 | 60 | self._gist_ids = [] |
|
61 | 61 | |
|
62 | 62 | def __call__( |
|
63 | 63 | self, f_name, content='some gist', lifetime=-1, |
|
64 | 64 | description='gist-desc', gist_type='public', |
|
65 | 65 | acl_level=Gist.GIST_PUBLIC, owner=TEST_USER_ADMIN_LOGIN): |
|
66 | 66 | gist_mapping = { |
|
67 | 67 | f_name: {'content': content} |
|
68 | 68 | } |
|
69 | 69 | user = User.get_by_username(owner) |
|
70 | 70 | gist = GistModel().create( |
|
71 | 71 | description, owner=user, gist_mapping=gist_mapping, |
|
72 | 72 | gist_type=gist_type, lifetime=lifetime, gist_acl_level=acl_level) |
|
73 | 73 | Session().commit() |
|
74 | 74 | self._gist_ids.append(gist.gist_id) |
|
75 | 75 | return gist |
|
76 | 76 | |
|
77 | 77 | def cleanup(self): |
|
78 | 78 | for gist_id in self._gist_ids: |
|
79 | 79 | gist = Gist.get(gist_id) |
|
80 | 80 | if gist: |
|
81 | 81 | Session().delete(gist) |
|
82 | 82 | |
|
83 | 83 | Session().commit() |
|
84 | 84 | |
|
85 | 85 | |
|
86 | 86 | @pytest.fixture() |
|
87 | 87 | def create_gist(request): |
|
88 | 88 | gist_utility = GistUtility() |
|
89 | 89 | request.addfinalizer(gist_utility.cleanup) |
|
90 | 90 | return gist_utility |
|
91 | 91 | |
|
92 | 92 | |
|
93 | 93 | class TestGistsController(TestController): |
|
94 | 94 | |
|
95 | 95 | def test_index_empty(self, create_gist): |
|
96 | 96 | self.log_user() |
|
97 | 97 | response = self.app.get(route_path('gists_show')) |
|
98 | 98 | response.mustcontain('data: [],') |
|
99 | 99 | |
|
100 | 100 | def test_index(self, create_gist): |
|
101 | 101 | self.log_user() |
|
102 | 102 | g1 = create_gist('gist1') |
|
103 | 103 | g2 = create_gist('gist2', lifetime=1400) |
|
104 | 104 | g3 = create_gist('gist3', description='gist3-desc') |
|
105 | 105 | g4 = create_gist('gist4', gist_type='private').gist_access_id |
|
106 | 106 | response = self.app.get(route_path('gists_show')) |
|
107 | 107 | |
|
108 | 108 | response.mustcontain(g1.gist_access_id) |
|
109 | 109 | response.mustcontain(g2.gist_access_id) |
|
110 | 110 | response.mustcontain(g3.gist_access_id) |
|
111 | 111 | response.mustcontain('gist3-desc') |
|
112 | 112 | response.mustcontain(no=[g4]) |
|
113 | 113 | |
|
114 | 114 | # Expiration information should be visible |
|
115 | 115 | expires_tag = '%s' % h.age_component( |
|
116 | 116 | h.time_to_utcdatetime(g2.gist_expires)) |
|
117 | 117 | response.mustcontain(expires_tag.replace('"', '\\"')) |
|
118 | 118 | |
|
119 | 119 | def test_index_private_gists(self, create_gist): |
|
120 | 120 | self.log_user() |
|
121 | 121 | gist = create_gist('gist5', gist_type='private') |
|
122 | 122 | response = self.app.get(route_path('gists_show', params=dict(private=1))) |
|
123 | 123 | |
|
124 | 124 | # and privates |
|
125 | 125 | response.mustcontain(gist.gist_access_id) |
|
126 | 126 | |
|
127 | 127 | def test_index_show_all(self, create_gist): |
|
128 | 128 | self.log_user() |
|
129 | 129 | create_gist('gist1') |
|
130 | 130 | create_gist('gist2', lifetime=1400) |
|
131 | 131 | create_gist('gist3', description='gist3-desc') |
|
132 | 132 | create_gist('gist4', gist_type='private') |
|
133 | 133 | |
|
134 | 134 | response = self.app.get(route_path('gists_show', params=dict(all=1))) |
|
135 | 135 | |
|
136 | 136 | assert len(GistModel.get_all()) == 4 |
|
137 | 137 | # and privates |
|
138 | 138 | for gist in GistModel.get_all(): |
|
139 | 139 | response.mustcontain(gist.gist_access_id) |
|
140 | 140 | |
|
141 | 141 | def test_index_show_all_hidden_from_regular(self, create_gist): |
|
142 | 142 | self.log_user(TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) |
|
143 | 143 | create_gist('gist2', gist_type='private') |
|
144 | 144 | create_gist('gist3', gist_type='private') |
|
145 | 145 | create_gist('gist4', gist_type='private') |
|
146 | 146 | |
|
147 | 147 | response = self.app.get(route_path('gists_show', params=dict(all=1))) |
|
148 | 148 | |
|
149 | 149 | assert len(GistModel.get_all()) == 3 |
|
150 | 150 | # since we don't have access to private in this view, we |
|
151 | 151 | # should see nothing |
|
152 | 152 | for gist in GistModel.get_all(): |
|
153 | 153 | response.mustcontain(no=[gist.gist_access_id]) |
|
154 | 154 | |
|
155 | 155 | def test_create(self): |
|
156 | 156 | self.log_user() |
|
157 | 157 | response = self.app.post( |
|
158 | 158 | route_path('gists_create'), |
|
159 | 159 | params={'lifetime': -1, |
|
160 | 160 | 'content': 'gist test', |
|
161 | 161 | 'filename': 'foo', |
|
162 | 162 | 'gist_type': 'public', |
|
163 | 163 | 'gist_acl_level': Gist.ACL_LEVEL_PUBLIC, |
|
164 | 164 | 'csrf_token': self.csrf_token}, |
|
165 | 165 | status=302) |
|
166 | 166 | response = response.follow() |
|
167 | 167 | response.mustcontain('added file: foo') |
|
168 | 168 | response.mustcontain('gist test') |
|
169 | 169 | |
|
170 | 170 | def test_create_with_path_with_dirs(self): |
|
171 | 171 | self.log_user() |
|
172 | 172 | response = self.app.post( |
|
173 | 173 | route_path('gists_create'), |
|
174 | 174 | params={'lifetime': -1, |
|
175 | 175 | 'content': 'gist test', |
|
176 | 176 | 'filename': '/home/foo', |
|
177 | 177 | 'gist_type': 'public', |
|
178 | 178 | 'gist_acl_level': Gist.ACL_LEVEL_PUBLIC, |
|
179 | 179 | 'csrf_token': self.csrf_token}, |
|
180 | 180 | status=200) |
|
181 | 181 | response.mustcontain('Filename /home/foo cannot be inside a directory') |
|
182 | 182 | |
|
183 | 183 | def test_access_expired_gist(self, create_gist): |
|
184 | 184 | self.log_user() |
|
185 | 185 | gist = create_gist('never-see-me') |
|
186 | 186 | gist.gist_expires = 0 # 1970 |
|
187 | 187 | Session().add(gist) |
|
188 | 188 | Session().commit() |
|
189 | 189 | |
|
190 | 190 | self.app.get(route_path('gist_show', gist_id=gist.gist_access_id), |
|
191 | 191 | status=404) |
|
192 | 192 | |
|
193 | 193 | def test_create_private(self): |
|
194 | 194 | self.log_user() |
|
195 | 195 | response = self.app.post( |
|
196 | 196 | route_path('gists_create'), |
|
197 | 197 | params={'lifetime': -1, |
|
198 | 198 | 'content': 'private gist test', |
|
199 | 199 | 'filename': 'private-foo', |
|
200 | 200 | 'gist_type': 'private', |
|
201 | 201 | 'gist_acl_level': Gist.ACL_LEVEL_PUBLIC, |
|
202 | 202 | 'csrf_token': self.csrf_token}, |
|
203 | 203 | status=302) |
|
204 | 204 | response = response.follow() |
|
205 | 205 | response.mustcontain('added file: private-foo<') |
|
206 | 206 | response.mustcontain('private gist test') |
|
207 | 207 | response.mustcontain('Private Gist') |
|
208 | 208 | # Make sure private gists are not indexed by robots |
|
209 | 209 | response.mustcontain( |
|
210 | 210 | '<meta name="robots" content="noindex, nofollow">') |
|
211 | 211 | |
|
212 | 212 | def test_create_private_acl_private(self): |
|
213 | 213 | self.log_user() |
|
214 | 214 | response = self.app.post( |
|
215 | 215 | route_path('gists_create'), |
|
216 | 216 | params={'lifetime': -1, |
|
217 | 217 | 'content': 'private gist test', |
|
218 | 218 | 'filename': 'private-foo', |
|
219 | 219 | 'gist_type': 'private', |
|
220 | 220 | 'gist_acl_level': Gist.ACL_LEVEL_PRIVATE, |
|
221 | 221 | 'csrf_token': self.csrf_token}, |
|
222 | 222 | status=302) |
|
223 | 223 | response = response.follow() |
|
224 | 224 | response.mustcontain('added file: private-foo<') |
|
225 | 225 | response.mustcontain('private gist test') |
|
226 | 226 | response.mustcontain('Private Gist') |
|
227 | 227 | # Make sure private gists are not indexed by robots |
|
228 | 228 | response.mustcontain( |
|
229 | 229 | '<meta name="robots" content="noindex, nofollow">') |
|
230 | 230 | |
|
231 | 231 | def test_create_with_description(self): |
|
232 | 232 | self.log_user() |
|
233 | 233 | response = self.app.post( |
|
234 | 234 | route_path('gists_create'), |
|
235 | 235 | params={'lifetime': -1, |
|
236 | 236 | 'content': 'gist test', |
|
237 | 237 | 'filename': 'foo-desc', |
|
238 | 238 | 'description': 'gist-desc', |
|
239 | 239 | 'gist_type': 'public', |
|
240 | 240 | 'gist_acl_level': Gist.ACL_LEVEL_PUBLIC, |
|
241 | 241 | 'csrf_token': self.csrf_token}, |
|
242 | 242 | status=302) |
|
243 | 243 | response = response.follow() |
|
244 | 244 | response.mustcontain('added file: foo-desc') |
|
245 | 245 | response.mustcontain('gist test') |
|
246 | 246 | response.mustcontain('gist-desc') |
|
247 | 247 | |
|
248 | 248 | def test_create_public_with_anonymous_access(self): |
|
249 | 249 | self.log_user() |
|
250 | 250 | params = { |
|
251 | 251 | 'lifetime': -1, |
|
252 | 252 | 'content': 'gist test', |
|
253 | 253 | 'filename': 'foo-desc', |
|
254 | 254 | 'description': 'gist-desc', |
|
255 | 255 | 'gist_type': 'public', |
|
256 | 256 | 'gist_acl_level': Gist.ACL_LEVEL_PUBLIC, |
|
257 | 257 | 'csrf_token': self.csrf_token |
|
258 | 258 | } |
|
259 | 259 | response = self.app.post( |
|
260 | 260 | route_path('gists_create'), params=params, status=302) |
|
261 | 261 | self.logout_user() |
|
262 | 262 | response = response.follow() |
|
263 | 263 | response.mustcontain('added file: foo-desc') |
|
264 | 264 | response.mustcontain('gist test') |
|
265 | 265 | response.mustcontain('gist-desc') |
|
266 | 266 | |
|
267 | 267 | def test_new(self): |
|
268 | 268 | self.log_user() |
|
269 | 269 | self.app.get(route_path('gists_new')) |
|
270 | 270 | |
|
271 | 271 | def test_delete(self, create_gist): |
|
272 | 272 | self.log_user() |
|
273 | 273 | gist = create_gist('delete-me') |
|
274 | 274 | response = self.app.post( |
|
275 | 275 | route_path('gist_delete', gist_id=gist.gist_id), |
|
276 | 276 | params={'csrf_token': self.csrf_token}) |
|
277 | 277 | assert_session_flash(response, 'Deleted gist %s' % gist.gist_id) |
|
278 | 278 | |
|
279 | 279 | def test_delete_normal_user_his_gist(self, create_gist): |
|
280 | 280 | self.log_user(TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) |
|
281 | 281 | gist = create_gist('delete-me', owner=TEST_USER_REGULAR_LOGIN) |
|
282 | 282 | |
|
283 | 283 | response = self.app.post( |
|
284 | 284 | route_path('gist_delete', gist_id=gist.gist_id), |
|
285 | 285 | params={'csrf_token': self.csrf_token}) |
|
286 | 286 | assert_session_flash(response, 'Deleted gist %s' % gist.gist_id) |
|
287 | 287 | |
|
288 | 288 | def test_delete_normal_user_not_his_own_gist(self, create_gist): |
|
289 | 289 | self.log_user(TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) |
|
290 | 290 | gist = create_gist('delete-me-2') |
|
291 | 291 | |
|
292 | 292 | self.app.post( |
|
293 | 293 | route_path('gist_delete', gist_id=gist.gist_id), |
|
294 | 294 | params={'csrf_token': self.csrf_token}, status=404) |
|
295 | 295 | |
|
296 | 296 | def test_show(self, create_gist): |
|
297 | 297 | gist = create_gist('gist-show-me') |
|
298 | 298 | response = self.app.get(route_path('gist_show', gist_id=gist.gist_access_id)) |
|
299 | 299 | |
|
300 | 300 | response.mustcontain('added file: gist-show-me<') |
|
301 | 301 | |
|
302 | 302 | assert_response = response.assert_response() |
|
303 | 303 | assert_response.element_equals_to( |
|
304 | 304 | 'div.rc-user span.user', |
|
305 |
'<a href="/_profiles/test_admin">test_admin</a> |
|
|
305 | '<a href="/_profiles/test_admin">test_admin</a>') | |
|
306 | 306 | |
|
307 | 307 | response.mustcontain('gist-desc') |
|
308 | 308 | |
|
309 | 309 | def test_show_without_hg(self, create_gist): |
|
310 | 310 | with mock.patch( |
|
311 | 311 | 'rhodecode.lib.vcs.settings.ALIASES', ['git']): |
|
312 | 312 | gist = create_gist('gist-show-me-again') |
|
313 | 313 | self.app.get( |
|
314 | 314 | route_path('gist_show', gist_id=gist.gist_access_id), status=200) |
|
315 | 315 | |
|
316 | 316 | def test_show_acl_private(self, create_gist): |
|
317 | 317 | gist = create_gist('gist-show-me-only-when-im-logged-in', |
|
318 | 318 | acl_level=Gist.ACL_LEVEL_PRIVATE) |
|
319 | 319 | self.app.get( |
|
320 | 320 | route_path('gist_show', gist_id=gist.gist_access_id), status=404) |
|
321 | 321 | |
|
322 | 322 | # now we log-in we should see thi gist |
|
323 | 323 | self.log_user() |
|
324 | 324 | response = self.app.get( |
|
325 | 325 | route_path('gist_show', gist_id=gist.gist_access_id)) |
|
326 | 326 | response.mustcontain('added file: gist-show-me-only-when-im-logged-in') |
|
327 | 327 | |
|
328 | 328 | assert_response = response.assert_response() |
|
329 | 329 | assert_response.element_equals_to( |
|
330 | 330 | 'div.rc-user span.user', |
|
331 |
'<a href="/_profiles/test_admin">test_admin</a> |
|
|
331 | '<a href="/_profiles/test_admin">test_admin</a>') | |
|
332 | 332 | response.mustcontain('gist-desc') |
|
333 | 333 | |
|
334 | 334 | def test_show_as_raw(self, create_gist): |
|
335 | 335 | gist = create_gist('gist-show-me', content='GIST CONTENT') |
|
336 | 336 | response = self.app.get( |
|
337 | 337 | route_path('gist_show_formatted', |
|
338 | 338 | gist_id=gist.gist_access_id, revision='tip', |
|
339 | 339 | format='raw')) |
|
340 | 340 | assert response.body == 'GIST CONTENT' |
|
341 | 341 | |
|
342 | 342 | def test_show_as_raw_individual_file(self, create_gist): |
|
343 | 343 | gist = create_gist('gist-show-me-raw', content='GIST BODY') |
|
344 | 344 | response = self.app.get( |
|
345 | 345 | route_path('gist_show_formatted_path', |
|
346 | 346 | gist_id=gist.gist_access_id, format='raw', |
|
347 | 347 | revision='tip', f_path='gist-show-me-raw')) |
|
348 | 348 | assert response.body == 'GIST BODY' |
|
349 | 349 | |
|
350 | 350 | def test_edit_page(self, create_gist): |
|
351 | 351 | self.log_user() |
|
352 | 352 | gist = create_gist('gist-for-edit', content='GIST EDIT BODY') |
|
353 | 353 | response = self.app.get(route_path('gist_edit', gist_id=gist.gist_access_id)) |
|
354 | 354 | response.mustcontain('GIST EDIT BODY') |
|
355 | 355 | |
|
356 | 356 | def test_edit_page_non_logged_user(self, create_gist): |
|
357 | 357 | gist = create_gist('gist-for-edit', content='GIST EDIT BODY') |
|
358 | 358 | self.app.get(route_path('gist_edit', gist_id=gist.gist_access_id), |
|
359 | 359 | status=302) |
|
360 | 360 | |
|
361 | 361 | def test_edit_normal_user_his_gist(self, create_gist): |
|
362 | 362 | self.log_user(TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) |
|
363 | 363 | gist = create_gist('gist-for-edit', owner=TEST_USER_REGULAR_LOGIN) |
|
364 | 364 | self.app.get(route_path('gist_edit', gist_id=gist.gist_access_id, |
|
365 | 365 | status=200)) |
|
366 | 366 | |
|
367 | 367 | def test_edit_normal_user_not_his_own_gist(self, create_gist): |
|
368 | 368 | self.log_user(TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) |
|
369 | 369 | gist = create_gist('delete-me') |
|
370 | 370 | self.app.get(route_path('gist_edit', gist_id=gist.gist_access_id), |
|
371 | 371 | status=404) |
|
372 | 372 | |
|
373 | 373 | def test_user_first_name_is_escaped(self, user_util, create_gist): |
|
374 | 374 | xss_atack_string = '"><script>alert(\'First Name\')</script>' |
|
375 | 375 | xss_escaped_string = h.html_escape(h.escape(xss_atack_string)) |
|
376 | 376 | password = 'test' |
|
377 | 377 | user = user_util.create_user( |
|
378 | 378 | firstname=xss_atack_string, password=password) |
|
379 | 379 | create_gist('gist', gist_type='public', owner=user.username) |
|
380 | 380 | response = self.app.get(route_path('gists_show')) |
|
381 | 381 | response.mustcontain(xss_escaped_string) |
|
382 | 382 | |
|
383 | 383 | def test_user_last_name_is_escaped(self, user_util, create_gist): |
|
384 | 384 | xss_atack_string = '"><script>alert(\'Last Name\')</script>' |
|
385 | 385 | xss_escaped_string = h.html_escape(h.escape(xss_atack_string)) |
|
386 | 386 | password = 'test' |
|
387 | 387 | user = user_util.create_user( |
|
388 | 388 | lastname=xss_atack_string, password=password) |
|
389 | 389 | create_gist('gist', gist_type='public', owner=user.username) |
|
390 | 390 | response = self.app.get(route_path('gists_show')) |
|
391 | 391 | response.mustcontain(xss_escaped_string) |
@@ -1,118 +1,119 b'' | |||
|
1 | 1 | # -*- coding: utf-8 -*- |
|
2 | 2 | |
|
3 | 3 | # Copyright (C) 2016-2020 RhodeCode GmbH |
|
4 | 4 | # |
|
5 | 5 | # This program is free software: you can redistribute it and/or modify |
|
6 | 6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
7 | 7 | # (only), as published by the Free Software Foundation. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU Affero General Public License |
|
15 | 15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
16 | 16 | # |
|
17 | 17 | # This program is dual-licensed. If you wish to learn more about the |
|
18 | 18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
19 | 19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
20 | 20 | |
|
21 | 21 | import colander |
|
22 | 22 | import pytest |
|
23 | 23 | |
|
24 | 24 | from rhodecode.model.validation_schema import types |
|
25 | 25 | from rhodecode.model.validation_schema.schemas import repo_group_schema |
|
26 | 26 | |
|
27 | 27 | |
|
28 | 28 | class TestRepoGroupSchema(object): |
|
29 | 29 | |
|
30 | 30 | @pytest.mark.parametrize('given, expected', [ |
|
31 | 31 | ('my repo', 'my-repo'), |
|
32 | 32 | (' hello world mike ', 'hello-world-mike'), |
|
33 | 33 | |
|
34 | 34 | ('//group1/group2//', 'group1/group2'), |
|
35 | 35 | ('//group1///group2//', 'group1/group2'), |
|
36 | 36 | ('///group1/group2///group3', 'group1/group2/group3'), |
|
37 | 37 | ('word g1/group2///group3', 'word-g1/group2/group3'), |
|
38 | 38 | |
|
39 | 39 | ('grou p1/gro;,,##up2//.../group3', 'grou-p1/group2/group3'), |
|
40 | 40 | |
|
41 | 41 | ('group,,,/,,,/1/2/3', 'group/1/2/3'), |
|
42 | 42 | ('grou[]p1/gro;up2///gro up3', 'group1/group2/gro-up3'), |
|
43 | 43 | (u'grou[]p1/gro;up2///gro up3/Δ Δ', u'group1/group2/gro-up3/Δ Δ'), |
|
44 | 44 | ]) |
|
45 | 45 | def test_deserialize_repo_name(self, app, user_admin, given, expected): |
|
46 | 46 | schema = repo_group_schema.RepoGroupSchema().bind() |
|
47 | 47 | assert schema.get('repo_group_name').deserialize(given) == expected |
|
48 | 48 | |
|
49 | 49 | def test_deserialize(self, app, user_admin): |
|
50 | 50 | schema = repo_group_schema.RepoGroupSchema().bind( |
|
51 | 51 | user=user_admin |
|
52 | 52 | ) |
|
53 | 53 | |
|
54 | 54 | schema_data = schema.deserialize(dict( |
|
55 | 55 | repo_group_name='my_schema_group', |
|
56 | 56 | repo_group_owner=user_admin.username |
|
57 | 57 | )) |
|
58 | 58 | |
|
59 | 59 | assert schema_data['repo_group_name'] == u'my_schema_group' |
|
60 | 60 | assert schema_data['repo_group'] == { |
|
61 | 61 | 'repo_group_id': None, |
|
62 | 62 | 'repo_group_name': types.RootLocation, |
|
63 | 63 | 'repo_group_name_with_group': u'my_schema_group', |
|
64 | 64 | 'repo_group_name_without_group': u'my_schema_group'} |
|
65 | 65 | |
|
66 | 66 | @pytest.mark.parametrize('given, err_key, expected_exc', [ |
|
67 | 67 | ('xxx/my_schema_group', 'repo_group', 'Parent repository group `xxx` does not exist'), |
|
68 | 68 | ('', 'repo_group_name', 'Name must start with a letter or number. Got ``'), |
|
69 | 69 | ]) |
|
70 | 70 | def test_deserialize_with_bad_group_name( |
|
71 | 71 | self, app, user_admin, given, err_key, expected_exc): |
|
72 | 72 | schema = repo_group_schema.RepoGroupSchema().bind( |
|
73 | 73 | repo_type_options=['hg'], |
|
74 | 74 | user=user_admin |
|
75 | 75 | ) |
|
76 | 76 | |
|
77 | 77 | with pytest.raises(colander.Invalid) as excinfo: |
|
78 | 78 | schema.deserialize(dict( |
|
79 | 79 | repo_group_name=given, |
|
80 | 80 | repo_group_owner=user_admin.username |
|
81 | 81 | )) |
|
82 | 82 | |
|
83 | 83 | assert excinfo.value.asdict()[err_key] == expected_exc |
|
84 | 84 | |
|
85 | 85 | def test_deserialize_with_group_name(self, app, user_admin, test_repo_group): |
|
86 | 86 | schema = repo_group_schema.RepoGroupSchema().bind( |
|
87 | 87 | user=user_admin |
|
88 | 88 | ) |
|
89 | 89 | |
|
90 | 90 | full_name = test_repo_group.group_name + u'/my_schema_group' |
|
91 | 91 | schema_data = schema.deserialize(dict( |
|
92 | 92 | repo_group_name=full_name, |
|
93 | 93 | repo_group_owner=user_admin.username |
|
94 | 94 | )) |
|
95 | 95 | |
|
96 | 96 | assert schema_data['repo_group_name'] == full_name |
|
97 | 97 | assert schema_data['repo_group'] == { |
|
98 | 98 | 'repo_group_id': test_repo_group.group_id, |
|
99 | 99 | 'repo_group_name': test_repo_group.group_name, |
|
100 | 100 | 'repo_group_name_with_group': full_name, |
|
101 | 101 | 'repo_group_name_without_group': u'my_schema_group'} |
|
102 | 102 | |
|
103 | 103 | def test_deserialize_with_group_name_regular_user_no_perms( |
|
104 | 104 | self, app, user_regular, test_repo_group): |
|
105 | 105 | schema = repo_group_schema.RepoGroupSchema().bind( |
|
106 | 106 | user=user_regular |
|
107 | 107 | ) |
|
108 | 108 | |
|
109 | 109 | full_name = test_repo_group.group_name + u'/my_schema_group' |
|
110 | 110 | with pytest.raises(colander.Invalid) as excinfo: |
|
111 | 111 | schema.deserialize(dict( |
|
112 | 112 | repo_group_name=full_name, |
|
113 | 113 | repo_group_owner=user_regular.username |
|
114 | 114 | )) |
|
115 | 115 | |
|
116 | expected = 'Parent repository group `{}` does not exist'.format( | |
|
117 | test_repo_group.group_name) | |
|
116 | expected = 'You do not have the permissions to store ' \ | |
|
117 | 'repository groups inside repository group `{}`'\ | |
|
118 | .format(test_repo_group.group_name) | |
|
118 | 119 | assert excinfo.value.asdict()['repo_group'] == expected |
General Comments 0
You need to be logged in to leave comments.
Login now