##// END OF EJS Templates
Merged r3904 from trunk....
Eric Davis -
r3840:c731d1120914
parent child
Show More
@@ -1,179 +1,221
1 1 # redMine - project management software
2 2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
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 General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 require File.dirname(__FILE__) + '/../test_helper'
19 19 require 'account_controller'
20 20
21 21 # Re-raise errors caught by the controller.
22 22 class AccountController; def rescue_action(e) raise e end; end
23 23
24 24 class AccountControllerTest < ActionController::TestCase
25 25 fixtures :users, :roles
26 26
27 27 def setup
28 28 @controller = AccountController.new
29 29 @request = ActionController::TestRequest.new
30 30 @response = ActionController::TestResponse.new
31 31 User.current = nil
32 32 end
33 33
34 34 def test_login_should_redirect_to_back_url_param
35 35 # request.uri is "test.host" in test environment
36 36 post :login, :username => 'jsmith', :password => 'jsmith', :back_url => 'http%3A%2F%2Ftest.host%2Fissues%2Fshow%2F1'
37 37 assert_redirected_to '/issues/show/1'
38 38 end
39 39
40 40 def test_login_should_not_redirect_to_another_host
41 41 post :login, :username => 'jsmith', :password => 'jsmith', :back_url => 'http%3A%2F%2Ftest.foo%2Ffake'
42 42 assert_redirected_to '/my/page'
43 43 end
44 44
45 45 def test_login_with_wrong_password
46 46 post :login, :username => 'admin', :password => 'bad'
47 47 assert_response :success
48 48 assert_template 'login'
49 49 assert_tag 'div',
50 50 :attributes => { :class => "flash error" },
51 51 :content => /Invalid user or password/
52 52 end
53 53
54 54 if Object.const_defined?(:OpenID)
55 55
56 56 def test_login_with_openid_for_existing_user
57 57 Setting.self_registration = '3'
58 58 Setting.openid = '1'
59 59 existing_user = User.new(:firstname => 'Cool',
60 60 :lastname => 'User',
61 61 :mail => 'user@somedomain.com',
62 62 :identity_url => 'http://openid.example.com/good_user')
63 63 existing_user.login = 'cool_user'
64 64 assert existing_user.save!
65 65
66 66 post :login, :openid_url => existing_user.identity_url
67 67 assert_redirected_to 'my/page'
68 68 end
69 69
70 70 def test_login_with_openid_for_existing_non_active_user
71 71 Setting.self_registration = '2'
72 72 Setting.openid = '1'
73 73 existing_user = User.new(:firstname => 'Cool',
74 74 :lastname => 'User',
75 75 :mail => 'user@somedomain.com',
76 76 :identity_url => 'http://openid.example.com/good_user',
77 77 :status => User::STATUS_REGISTERED)
78 78 existing_user.login = 'cool_user'
79 79 assert existing_user.save!
80 80
81 81 post :login, :openid_url => existing_user.identity_url
82 82 assert_redirected_to 'login'
83 83 end
84 84
85 85 def test_login_with_openid_with_new_user_created
86 86 Setting.self_registration = '3'
87 87 Setting.openid = '1'
88 88 post :login, :openid_url => 'http://openid.example.com/good_user'
89 89 assert_redirected_to 'my/account'
90 90 user = User.find_by_login('cool_user')
91 91 assert user
92 92 assert_equal 'Cool', user.firstname
93 93 assert_equal 'User', user.lastname
94 94 end
95 95
96 96 def test_login_with_openid_with_new_user_and_self_registration_off
97 97 Setting.self_registration = '0'
98 98 Setting.openid = '1'
99 99 post :login, :openid_url => 'http://openid.example.com/good_user'
100 100 assert_redirected_to home_url
101 101 user = User.find_by_login('cool_user')
102 102 assert ! user
103 103 end
104 104
105 105 def test_login_with_openid_with_new_user_created_with_email_activation_should_have_a_token
106 106 Setting.self_registration = '1'
107 107 Setting.openid = '1'
108 108 post :login, :openid_url => 'http://openid.example.com/good_user'
109 109 assert_redirected_to 'login'
110 110 user = User.find_by_login('cool_user')
111 111 assert user
112 112
113 113 token = Token.find_by_user_id_and_action(user.id, 'register')
114 114 assert token
115 115 end
116 116
117 117 def test_login_with_openid_with_new_user_created_with_manual_activation
118 118 Setting.self_registration = '2'
119 119 Setting.openid = '1'
120 120 post :login, :openid_url => 'http://openid.example.com/good_user'
121 121 assert_redirected_to 'login'
122 122 user = User.find_by_login('cool_user')
123 123 assert user
124 124 assert_equal User::STATUS_REGISTERED, user.status
125 125 end
126 126
127 127 def test_login_with_openid_with_new_user_with_conflict_should_register
128 128 Setting.self_registration = '3'
129 129 Setting.openid = '1'
130 130 existing_user = User.new(:firstname => 'Cool', :lastname => 'User', :mail => 'user@somedomain.com')
131 131 existing_user.login = 'cool_user'
132 132 assert existing_user.save!
133 133
134 134 post :login, :openid_url => 'http://openid.example.com/good_user'
135 135 assert_response :success
136 136 assert_template 'register'
137 137 assert assigns(:user)
138 138 assert_equal 'http://openid.example.com/good_user', assigns(:user)[:identity_url]
139 139 end
140 140
141 141 def test_setting_openid_should_return_true_when_set_to_true
142 142 Setting.openid = '1'
143 143 assert_equal true, Setting.openid?
144 144 end
145 145
146 146 else
147 147 puts "Skipping openid tests."
148 148 end
149 149
150 150 def test_logout
151 151 @request.session[:user_id] = 2
152 152 get :logout
153 153 assert_redirected_to ''
154 154 assert_nil @request.session[:user_id]
155 155 end
156 156
157 157 context "GET #register" do
158 158 context "with self registration on" do
159 159 setup do
160 160 Setting.self_registration = '3'
161 161 get :register
162 162 end
163 163
164 164 should_respond_with :success
165 165 should_render_template :register
166 166 should_assign_to :user
167 167 end
168 168
169 169 context "with self registration off" do
170 170 setup do
171 171 Setting.self_registration = '0'
172 172 get :register
173 173 end
174 174
175 175 should_redirect_to('/') { home_url }
176 176 end
177 177 end
178
178
179 # See integration/account_test.rb for the full test
180 context "POST #register" do
181 context "with self registration on automatic" do
182 setup do
183 Setting.self_registration = '3'
184 post :register, :user => {
185 :login => 'register',
186 :password => 'test',
187 :password_confirmation => 'test',
188 :firstname => 'John',
189 :lastname => 'Doe',
190 :mail => 'register@example.com'
191 }
192 end
193
194 should_respond_with :redirect
195 should_assign_to :user
196 should_redirect_to('my page') { {:controller => 'my', :action => 'account'} }
197
198 should "create a new user" do
199 user = User.last(:conditions => {:login => 'register'})
200 assert user
201 assert_kind_of User, user
202 end
203
204 should 'set the user status to active' do
205 user = User.last(:conditions => {:login => 'register'})
206 assert user
207 assert_equal User::STATUS_ACTIVE, user.status
208 end
209 end
210
211 context "with self registration off" do
212 setup do
213 Setting.self_registration = '0'
214 post :register
215 end
216
217 should_redirect_to('/') { home_url }
218 end
219 end
220
179 221 end
General Comments 0
You need to be logged in to leave comments. Login now