annotate rhodecode/tests/functional/test_login.py @ 3630:5d8cda8e63dc beta

fixed login tests
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 28 Mar 2013 03:29:38 +0100
parents 7d3d0a96e083
children d7488551578e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
728
f1629c0c28cc fixed bug in forms found due to testing,
Marcin Kuzminski <marcin@python-works.com>
parents: 723
diff changeset
1 # -*- coding: utf-8 -*-
547
1e757ac98988 renamed project to rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 534
diff changeset
2 from rhodecode.tests import *
1732
8321b3d19b1f test fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 1718
diff changeset
3 from rhodecode.model.db import User, Notification
2109
8ecfed1d8f8b utils/conf
Marcin Kuzminski <marcin@python-works.com>
parents: 1749
diff changeset
4 from rhodecode.lib.utils2 import generate_api_key
547
1e757ac98988 renamed project to rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 534
diff changeset
5 from rhodecode.lib.auth import check_password
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
6 from rhodecode.lib import helpers as h
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
7 from rhodecode.model import validators
188
8337dd6492a9 logins controller test
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
8
2109
8ecfed1d8f8b utils/conf
Marcin Kuzminski <marcin@python-works.com>
parents: 1749
diff changeset
9
188
8337dd6492a9 logins controller test
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
10 class TestLoginController(TestController):
8337dd6492a9 logins controller test
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
11
1732
8321b3d19b1f test fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 1718
diff changeset
12 def tearDown(self):
8321b3d19b1f test fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 1718
diff changeset
13 for n in Notification.query().all():
2529
40b3a54391f9 Added functional test create repo with a group
Marcin Kuzminski <marcin@python-works.com>
parents: 2467
diff changeset
14 self.Session().delete(n)
1732
8321b3d19b1f test fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 1718
diff changeset
15
2529
40b3a54391f9 Added functional test create repo with a group
Marcin Kuzminski <marcin@python-works.com>
parents: 2467
diff changeset
16 self.Session().commit()
1732
8321b3d19b1f test fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 1718
diff changeset
17 self.assertEqual(Notification.query().all(), [])
8321b3d19b1f test fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 1718
diff changeset
18
188
8337dd6492a9 logins controller test
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
19 def test_index(self):
8337dd6492a9 logins controller test
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
20 response = self.app.get(url(controller='login', action='index'))
1418
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
21 self.assertEqual(response.status, '200 OK')
188
8337dd6492a9 logins controller test
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
22 # Test response...
461
e95621133eb6 made test for login page
Marcin Kuzminski <marcin@python-works.com>
parents: 188
diff changeset
23
e95621133eb6 made test for login page
Marcin Kuzminski <marcin@python-works.com>
parents: 188
diff changeset
24 def test_login_admin_ok(self):
e95621133eb6 made test for login page
Marcin Kuzminski <marcin@python-works.com>
parents: 188
diff changeset
25 response = self.app.post(url(controller='login', action='index'),
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
26 {'username': 'test_admin',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
27 'password': 'test12'})
1418
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
28 self.assertEqual(response.status, '302 Found')
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
29 self.assertEqual(response.session['rhodecode_user'].get('username'),
1418
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
30 'test_admin')
462
298546182b41 more test suites on login, fixed strange detached instance bug found during in tests.
Marcin Kuzminski <marcin@python-works.com>
parents: 461
diff changeset
31 response = response.follow()
3630
5d8cda8e63dc fixed login tests
Marcin Kuzminski <marcin@python-works.com>
parents: 3377
diff changeset
32 response.mustcontain('/%s' % HG_REPO)
659
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
33
461
e95621133eb6 made test for login page
Marcin Kuzminski <marcin@python-works.com>
parents: 188
diff changeset
34 def test_login_regular_ok(self):
e95621133eb6 made test for login page
Marcin Kuzminski <marcin@python-works.com>
parents: 188
diff changeset
35 response = self.app.post(url(controller='login', action='index'),
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
36 {'username': 'test_regular',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
37 'password': 'test12'})
1418
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
38
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
39 self.assertEqual(response.status, '302 Found')
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
40 self.assertEqual(response.session['rhodecode_user'].get('username'),
1418
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
41 'test_regular')
462
298546182b41 more test suites on login, fixed strange detached instance bug found during in tests.
Marcin Kuzminski <marcin@python-works.com>
parents: 461
diff changeset
42 response = response.follow()
3630
5d8cda8e63dc fixed login tests
Marcin Kuzminski <marcin@python-works.com>
parents: 3377
diff changeset
43 response.mustcontain('/%s' % HG_REPO)
659
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
44
461
e95621133eb6 made test for login page
Marcin Kuzminski <marcin@python-works.com>
parents: 188
diff changeset
45 def test_login_ok_came_from(self):
e95621133eb6 made test for login page
Marcin Kuzminski <marcin@python-works.com>
parents: 188
diff changeset
46 test_came_from = '/_admin/users'
1418
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
47 response = self.app.post(url(controller='login', action='index',
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
48 came_from=test_came_from),
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
49 {'username': 'test_admin',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
50 'password': 'test12'})
1418
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
51 self.assertEqual(response.status, '302 Found')
461
e95621133eb6 made test for login page
Marcin Kuzminski <marcin@python-works.com>
parents: 188
diff changeset
52 response = response.follow()
659
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
53
1418
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
54 self.assertEqual(response.status, '200 OK')
3630
5d8cda8e63dc fixed login tests
Marcin Kuzminski <marcin@python-works.com>
parents: 3377
diff changeset
55 response.mustcontain('Users administration')
659
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
56
2679
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
57 @parameterized.expand([
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
58 ('data:text/html,<script>window.alert("xss")</script>',),
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
59 ('mailto:test@rhodecode.org',),
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
60 ('file:///etc/passwd',),
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
61 ('ftp://some.ftp.server',),
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
62 ('http://other.domain',),
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
63 ])
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
64 def test_login_bad_came_froms(self, url_came_from):
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
65 response = self.app.post(url(controller='login', action='index',
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
66 came_from=url_came_from),
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
67 {'username': 'test_admin',
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
68 'password': 'test12'})
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
69 self.assertEqual(response.status, '302 Found')
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
70 self.assertEqual(response._environ['paste.testing_variables']
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
71 ['tmpl_context'].came_from, '/')
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
72 response = response.follow()
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
73
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
74 self.assertEqual(response.status, '200 OK')
dffb92224edf removed ftp from allowed schemas
Marcin Kuzminski <marcin@python-works.com>
parents: 2595
diff changeset
75
533
53aa1ee1af86 updated tests for new version 6char password etc...
Marcin Kuzminski <marcin@python-works.com>
parents: 483
diff changeset
76 def test_login_short_password(self):
461
e95621133eb6 made test for login page
Marcin Kuzminski <marcin@python-works.com>
parents: 188
diff changeset
77 response = self.app.post(url(controller='login', action='index'),
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
78 {'username': 'test_admin',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
79 'password': 'as'})
1366
9c0f5d558789 fixes #200, rewrote the whole caching mechanism to get rid of such problems. Now cached instances are attached
Marcin Kuzminski <marcin@python-works.com>
parents: 1203
diff changeset
80 self.assertEqual(response.status, '200 OK')
1418
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
81
3630
5d8cda8e63dc fixed login tests
Marcin Kuzminski <marcin@python-works.com>
parents: 3377
diff changeset
82 response.mustcontain('Enter 3 characters or more')
533
53aa1ee1af86 updated tests for new version 6char password etc...
Marcin Kuzminski <marcin@python-works.com>
parents: 483
diff changeset
83
53aa1ee1af86 updated tests for new version 6char password etc...
Marcin Kuzminski <marcin@python-works.com>
parents: 483
diff changeset
84 def test_login_wrong_username_password(self):
53aa1ee1af86 updated tests for new version 6char password etc...
Marcin Kuzminski <marcin@python-works.com>
parents: 483
diff changeset
85 response = self.app.post(url(controller='login', action='index'),
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
86 {'username': 'error',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
87 'password': 'test12'})
659
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
88
3630
5d8cda8e63dc fixed login tests
Marcin Kuzminski <marcin@python-works.com>
parents: 3377
diff changeset
89 response.mustcontain('invalid user name')
5d8cda8e63dc fixed login tests
Marcin Kuzminski <marcin@python-works.com>
parents: 3377
diff changeset
90 response.mustcontain('invalid password')
659
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
91
723
bf26b46e82d6 some tests update
Marcin Kuzminski <marcin@python-works.com>
parents: 691
diff changeset
92 #==========================================================================
bf26b46e82d6 some tests update
Marcin Kuzminski <marcin@python-works.com>
parents: 691
diff changeset
93 # REGISTRATIONS
bf26b46e82d6 some tests update
Marcin Kuzminski <marcin@python-works.com>
parents: 691
diff changeset
94 #==========================================================================
463
a03250279b15 test for register page
Marcin Kuzminski <marcin@python-works.com>
parents: 462
diff changeset
95 def test_register(self):
a03250279b15 test for register page
Marcin Kuzminski <marcin@python-works.com>
parents: 462
diff changeset
96 response = self.app.get(url(controller='login', action='register'))
3630
5d8cda8e63dc fixed login tests
Marcin Kuzminski <marcin@python-works.com>
parents: 3377
diff changeset
97 response.mustcontain('Sign Up to RhodeCode')
659
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
98
463
a03250279b15 test for register page
Marcin Kuzminski <marcin@python-works.com>
parents: 462
diff changeset
99 def test_register_err_same_username(self):
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
100 uname = 'test_admin'
463
a03250279b15 test for register page
Marcin Kuzminski <marcin@python-works.com>
parents: 462
diff changeset
101 response = self.app.post(url(controller='login', action='register'),
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
102 {'username': uname,
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
103 'password': 'test12',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
104 'password_confirmation': 'test12',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
105 'email': 'goodmail@domain.com',
2595
6c83dc0226d2 renamed some leftover name -> firstname
Marcin Kuzminski <marcin@python-works.com>
parents: 2529
diff changeset
106 'firstname': 'test',
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
107 'lastname': 'test'})
659
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
108
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
109 msg = validators.ValidUsername()._messages['username_exists']
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
110 msg = h.html_escape(msg % {'username': uname})
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
111 response.mustcontain(msg)
659
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
112
745
c366b237c91d added test for username and email case senstitive validators,
Marcin Kuzminski <marcin@python-works.com>
parents: 728
diff changeset
113 def test_register_err_same_email(self):
c366b237c91d added test for username and email case senstitive validators,
Marcin Kuzminski <marcin@python-works.com>
parents: 728
diff changeset
114 response = self.app.post(url(controller='login', action='register'),
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
115 {'username': 'test_admin_0',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
116 'password': 'test12',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
117 'password_confirmation': 'test12',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
118 'email': 'test_admin@mail.com',
2595
6c83dc0226d2 renamed some leftover name -> firstname
Marcin Kuzminski <marcin@python-works.com>
parents: 2529
diff changeset
119 'firstname': 'test',
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
120 'lastname': 'test'})
745
c366b237c91d added test for username and email case senstitive validators,
Marcin Kuzminski <marcin@python-works.com>
parents: 728
diff changeset
121
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
122 msg = validators.UniqSystemEmail()()._messages['email_taken']
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
123 response.mustcontain(msg)
745
c366b237c91d added test for username and email case senstitive validators,
Marcin Kuzminski <marcin@python-works.com>
parents: 728
diff changeset
124
c366b237c91d added test for username and email case senstitive validators,
Marcin Kuzminski <marcin@python-works.com>
parents: 728
diff changeset
125 def test_register_err_same_email_case_sensitive(self):
c366b237c91d added test for username and email case senstitive validators,
Marcin Kuzminski <marcin@python-works.com>
parents: 728
diff changeset
126 response = self.app.post(url(controller='login', action='register'),
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
127 {'username': 'test_admin_1',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
128 'password': 'test12',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
129 'password_confirmation': 'test12',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
130 'email': 'TesT_Admin@mail.COM',
2595
6c83dc0226d2 renamed some leftover name -> firstname
Marcin Kuzminski <marcin@python-works.com>
parents: 2529
diff changeset
131 'firstname': 'test',
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
132 'lastname': 'test'})
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
133 msg = validators.UniqSystemEmail()()._messages['email_taken']
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
134 response.mustcontain(msg)
745
c366b237c91d added test for username and email case senstitive validators,
Marcin Kuzminski <marcin@python-works.com>
parents: 728
diff changeset
135
463
a03250279b15 test for register page
Marcin Kuzminski <marcin@python-works.com>
parents: 462
diff changeset
136 def test_register_err_wrong_data(self):
a03250279b15 test for register page
Marcin Kuzminski <marcin@python-works.com>
parents: 462
diff changeset
137 response = self.app.post(url(controller='login', action='register'),
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
138 {'username': 'xs',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
139 'password': 'test',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
140 'password_confirmation': 'test',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
141 'email': 'goodmailm',
2595
6c83dc0226d2 renamed some leftover name -> firstname
Marcin Kuzminski <marcin@python-works.com>
parents: 2529
diff changeset
142 'firstname': 'test',
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
143 'lastname': 'test'})
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
144 self.assertEqual(response.status, '200 OK')
2248
72542dc597be fixed issue with empty APIKEYS on registration #438
Marcin Kuzminski <marcin@python-works.com>
parents: 2109
diff changeset
145 response.mustcontain('An email address must contain a single @')
72542dc597be fixed issue with empty APIKEYS on registration #438
Marcin Kuzminski <marcin@python-works.com>
parents: 2109
diff changeset
146 response.mustcontain('Enter a value 6 characters long or more')
659
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
147
745
c366b237c91d added test for username and email case senstitive validators,
Marcin Kuzminski <marcin@python-works.com>
parents: 728
diff changeset
148 def test_register_err_username(self):
c366b237c91d added test for username and email case senstitive validators,
Marcin Kuzminski <marcin@python-works.com>
parents: 728
diff changeset
149 response = self.app.post(url(controller='login', action='register'),
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
150 {'username': 'error user',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
151 'password': 'test12',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
152 'password_confirmation': 'test12',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
153 'email': 'goodmailm',
2595
6c83dc0226d2 renamed some leftover name -> firstname
Marcin Kuzminski <marcin@python-works.com>
parents: 2529
diff changeset
154 'firstname': 'test',
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
155 'lastname': 'test'})
745
c366b237c91d added test for username and email case senstitive validators,
Marcin Kuzminski <marcin@python-works.com>
parents: 728
diff changeset
156
2248
72542dc597be fixed issue with empty APIKEYS on registration #438
Marcin Kuzminski <marcin@python-works.com>
parents: 2109
diff changeset
157 response.mustcontain('An email address must contain a single @')
72542dc597be fixed issue with empty APIKEYS on registration #438
Marcin Kuzminski <marcin@python-works.com>
parents: 2109
diff changeset
158 response.mustcontain('Username may only contain '
1021
0ea8eca2d63e fixed tests
Marcin Kuzminski <marcin@python-works.com>
parents: 746
diff changeset
159 'alphanumeric characters underscores, '
0ea8eca2d63e fixed tests
Marcin Kuzminski <marcin@python-works.com>
parents: 746
diff changeset
160 'periods or dashes and must begin with '
2248
72542dc597be fixed issue with empty APIKEYS on registration #438
Marcin Kuzminski <marcin@python-works.com>
parents: 2109
diff changeset
161 'alphanumeric character')
745
c366b237c91d added test for username and email case senstitive validators,
Marcin Kuzminski <marcin@python-works.com>
parents: 728
diff changeset
162
c366b237c91d added test for username and email case senstitive validators,
Marcin Kuzminski <marcin@python-works.com>
parents: 728
diff changeset
163 def test_register_err_case_sensitive(self):
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
164 usr = 'Test_Admin'
745
c366b237c91d added test for username and email case senstitive validators,
Marcin Kuzminski <marcin@python-works.com>
parents: 728
diff changeset
165 response = self.app.post(url(controller='login', action='register'),
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
166 {'username': usr,
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
167 'password': 'test12',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
168 'password_confirmation': 'test12',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
169 'email': 'goodmailm',
2595
6c83dc0226d2 renamed some leftover name -> firstname
Marcin Kuzminski <marcin@python-works.com>
parents: 2529
diff changeset
170 'firstname': 'test',
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
171 'lastname': 'test'})
745
c366b237c91d added test for username and email case senstitive validators,
Marcin Kuzminski <marcin@python-works.com>
parents: 728
diff changeset
172
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
173 response.mustcontain('An email address must contain a single @')
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
174 msg = validators.ValidUsername()._messages['username_exists']
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
175 msg = h.html_escape(msg % {'username': usr})
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
176 response.mustcontain(msg)
745
c366b237c91d added test for username and email case senstitive validators,
Marcin Kuzminski <marcin@python-works.com>
parents: 728
diff changeset
177
723
bf26b46e82d6 some tests update
Marcin Kuzminski <marcin@python-works.com>
parents: 691
diff changeset
178 def test_register_special_chars(self):
bf26b46e82d6 some tests update
Marcin Kuzminski <marcin@python-works.com>
parents: 691
diff changeset
179 response = self.app.post(url(controller='login', action='register'),
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
180 {'username': 'xxxaxn',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
181 'password': 'ąćźżąśśśś',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
182 'password_confirmation': 'ąćźżąśśśś',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
183 'email': 'goodmailm@test.plx',
2595
6c83dc0226d2 renamed some leftover name -> firstname
Marcin Kuzminski <marcin@python-works.com>
parents: 2529
diff changeset
184 'firstname': 'test',
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
185 'lastname': 'test'})
723
bf26b46e82d6 some tests update
Marcin Kuzminski <marcin@python-works.com>
parents: 691
diff changeset
186
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
187 msg = validators.ValidPassword()._messages['invalid_password']
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
188 response.mustcontain(msg)
723
bf26b46e82d6 some tests update
Marcin Kuzminski <marcin@python-works.com>
parents: 691
diff changeset
189
bf26b46e82d6 some tests update
Marcin Kuzminski <marcin@python-works.com>
parents: 691
diff changeset
190 def test_register_password_mismatch(self):
bf26b46e82d6 some tests update
Marcin Kuzminski <marcin@python-works.com>
parents: 691
diff changeset
191 response = self.app.post(url(controller='login', action='register'),
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
192 {'username': 'xs',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
193 'password': '123qwe',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
194 'password_confirmation': 'qwe123',
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
195 'email': 'goodmailm@test.plxa',
2595
6c83dc0226d2 renamed some leftover name -> firstname
Marcin Kuzminski <marcin@python-works.com>
parents: 2529
diff changeset
196 'firstname': 'test',
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
197 'lastname': 'test'})
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
198 msg = validators.ValidPasswordsMatch()._messages['password_mismatch']
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
199 response.mustcontain(msg)
659
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
200
463
a03250279b15 test for register page
Marcin Kuzminski <marcin@python-works.com>
parents: 462
diff changeset
201 def test_register_ok(self):
473
6b934c9607e7 Improved testing scenarios. Made test env creator
Marcin Kuzminski <marcin@python-works.com>
parents: 463
diff changeset
202 username = 'test_regular4'
463
a03250279b15 test for register page
Marcin Kuzminski <marcin@python-works.com>
parents: 462
diff changeset
203 password = 'qweqwe'
483
a9e50dce3081 Removed config names from whoosh and celery,
Marcin Kuzminski <marcin@python-works.com>
parents: 473
diff changeset
204 email = 'marcin@test.com'
463
a03250279b15 test for register page
Marcin Kuzminski <marcin@python-works.com>
parents: 462
diff changeset
205 name = 'testname'
a03250279b15 test for register page
Marcin Kuzminski <marcin@python-works.com>
parents: 462
diff changeset
206 lastname = 'testlastname'
659
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
207
463
a03250279b15 test for register page
Marcin Kuzminski <marcin@python-works.com>
parents: 462
diff changeset
208 response = self.app.post(url(controller='login', action='register'),
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
209 {'username': username,
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
210 'password': password,
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
211 'password_confirmation': password,
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
212 'email': email,
2595
6c83dc0226d2 renamed some leftover name -> firstname
Marcin Kuzminski <marcin@python-works.com>
parents: 2529
diff changeset
213 'firstname': name,
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
214 'lastname': lastname,
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
215 'admin': True}) # This should be overriden
2248
72542dc597be fixed issue with empty APIKEYS on registration #438
Marcin Kuzminski <marcin@python-works.com>
parents: 2109
diff changeset
216 self.assertEqual(response.status, '302 Found')
3377
7d3d0a96e083 fixed registration test
Marcin Kuzminski <marcin@python-works.com>
parents: 2679
diff changeset
217 self.checkSessionFlash(response, 'You have successfully registered into RhodeCode')
659
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
218
2529
40b3a54391f9 Added functional test create repo with a group
Marcin Kuzminski <marcin@python-works.com>
parents: 2467
diff changeset
219 ret = self.Session().query(User).filter(User.username == 'test_regular4').one()
2248
72542dc597be fixed issue with empty APIKEYS on registration #438
Marcin Kuzminski <marcin@python-works.com>
parents: 2109
diff changeset
220 self.assertEqual(ret.username, username)
72542dc597be fixed issue with empty APIKEYS on registration #438
Marcin Kuzminski <marcin@python-works.com>
parents: 2109
diff changeset
221 self.assertEqual(check_password(password, ret.password), True)
72542dc597be fixed issue with empty APIKEYS on registration #438
Marcin Kuzminski <marcin@python-works.com>
parents: 2109
diff changeset
222 self.assertEqual(ret.email, email)
72542dc597be fixed issue with empty APIKEYS on registration #438
Marcin Kuzminski <marcin@python-works.com>
parents: 2109
diff changeset
223 self.assertEqual(ret.name, name)
72542dc597be fixed issue with empty APIKEYS on registration #438
Marcin Kuzminski <marcin@python-works.com>
parents: 2109
diff changeset
224 self.assertEqual(ret.lastname, lastname)
72542dc597be fixed issue with empty APIKEYS on registration #438
Marcin Kuzminski <marcin@python-works.com>
parents: 2109
diff changeset
225 self.assertNotEqual(ret.api_key, None)
72542dc597be fixed issue with empty APIKEYS on registration #438
Marcin Kuzminski <marcin@python-works.com>
parents: 2109
diff changeset
226 self.assertEqual(ret.admin, False)
659
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
227
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
228 def test_forgot_password_wrong_mail(self):
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
229 bad_email = 'marcin@wrongmail.org'
2248
72542dc597be fixed issue with empty APIKEYS on registration #438
Marcin Kuzminski <marcin@python-works.com>
parents: 2109
diff changeset
230 response = self.app.post(
72542dc597be fixed issue with empty APIKEYS on registration #438
Marcin Kuzminski <marcin@python-works.com>
parents: 2109
diff changeset
231 url(controller='login', action='password_reset'),
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
232 {'email': bad_email, }
2248
72542dc597be fixed issue with empty APIKEYS on registration #438
Marcin Kuzminski <marcin@python-works.com>
parents: 2109
diff changeset
233 )
659
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
234
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
235 msg = validators.ValidSystemEmail()._messages['non_existing_email']
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
236 msg = h.html_escape(msg % {'email': bad_email})
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
237 response.mustcontain()
659
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
238
473
6b934c9607e7 Improved testing scenarios. Made test env creator
Marcin Kuzminski <marcin@python-works.com>
parents: 463
diff changeset
239 def test_forgot_password(self):
1418
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
240 response = self.app.get(url(controller='login',
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
241 action='password_reset'))
2248
72542dc597be fixed issue with empty APIKEYS on registration #438
Marcin Kuzminski <marcin@python-works.com>
parents: 2109
diff changeset
242 self.assertEqual(response.status, '200 OK')
473
6b934c9607e7 Improved testing scenarios. Made test env creator
Marcin Kuzminski <marcin@python-works.com>
parents: 463
diff changeset
243
6b934c9607e7 Improved testing scenarios. Made test env creator
Marcin Kuzminski <marcin@python-works.com>
parents: 463
diff changeset
244 username = 'test_password_reset_1'
6b934c9607e7 Improved testing scenarios. Made test env creator
Marcin Kuzminski <marcin@python-works.com>
parents: 463
diff changeset
245 password = 'qweqwe'
6b934c9607e7 Improved testing scenarios. Made test env creator
Marcin Kuzminski <marcin@python-works.com>
parents: 463
diff changeset
246 email = 'marcin@python-works.com'
6b934c9607e7 Improved testing scenarios. Made test env creator
Marcin Kuzminski <marcin@python-works.com>
parents: 463
diff changeset
247 name = 'passwd'
6b934c9607e7 Improved testing scenarios. Made test env creator
Marcin Kuzminski <marcin@python-works.com>
parents: 463
diff changeset
248 lastname = 'reset'
659
758f64f3fbda extended repo creation by repo type. fixed fork creation to maintain repo type.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
249
1418
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
250 new = User()
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
251 new.username = username
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
252 new.password = password
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
253 new.email = email
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
254 new.name = name
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
255 new.lastname = lastname
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
256 new.api_key = generate_api_key(username)
2529
40b3a54391f9 Added functional test create repo with a group
Marcin Kuzminski <marcin@python-works.com>
parents: 2467
diff changeset
257 self.Session().add(new)
40b3a54391f9 Added functional test create repo with a group
Marcin Kuzminski <marcin@python-works.com>
parents: 2467
diff changeset
258 self.Session().commit()
1418
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
259
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
260 response = self.app.post(url(controller='login',
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
261 action='password_reset'),
2467
4419551b2915 Switched forms to new validators
Marcin Kuzminski <marcin@python-works.com>
parents: 2248
diff changeset
262 {'email': email, })
1418
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
263
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
264 self.checkSessionFlash(response, 'Your password reset link was sent')
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
265
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
266 response = response.follow()
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
267
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
268 # BAD KEY
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
269
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
270 key = "bad"
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
271 response = self.app.get(url(controller='login',
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
272 action='password_reset_confirmation',
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
273 key=key))
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
274 self.assertEqual(response.status, '302 Found')
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
275 self.assertTrue(response.location.endswith(url('reset_password')))
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
276
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
277 # GOOD KEY
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
278
1530
04027bdb876c Refactoring of model get functions
Marcin Kuzminski <marcin@python-works.com>
parents: 1481
diff changeset
279 key = User.get_by_username(username).api_key
1418
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
280 response = self.app.get(url(controller='login',
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
281 action='password_reset_confirmation',
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
282 key=key))
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
283 self.assertEqual(response.status, '302 Found')
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
284 self.assertTrue(response.location.endswith(url('login_home')))
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
285
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
286 self.checkSessionFlash(response,
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
287 ('Your password reset was successful, '
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
288 'new password has been sent to your email'))
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
289
b097c4e328a2 Fixes tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1366
diff changeset
290 response = response.follow()