6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
|
# File 'lib/clearance/test/functional/passwords_controller_test.rb', line 6
def self.included(base)
base.class_eval do
should_route :get, '/passwords/new', :action => 'new'
should_route :post, '/passwords', :action => 'create'
should_route :get, '/passwords/:id/edit', :action => 'edit', :id => 'reset_password_code'
should_route :put, '/passwords/:id', :action => 'update', :id => 'reset_password_code'
context 'with a user' do
setup { @user = Factory :user, :confirmed => true }
context 'A GET to #new' do
setup { get :new }
should_respond_with :success
should_render_template 'new'
should "have a form for the user's email" do
new_path = ERB::Util.h(passwords_path)
assert_select 'form[action=?]', new_path do
assert_select 'input[name=?]', 'email'
end
end
end
context 'A POST to #create' do
context "with an existing user's email address" do
setup do
ActionMailer::Base.deliveries.clear
post :create, :user => {:email => @user.email}
@email = ActionMailer::Base.deliveries[0]
end
should 'send an email to the user to edit their password' do
assert @email.subject =~ /forgot your password/i
end
should 'generate a reset_password_code' do
@user.reload
assert_not_nil @user.reset_password_code
end
should_redirect_to "@controller.send(:url_after_create)"
end
context 'with a non-existing email address' do
setup do
email = '[email protected]'
assert ! User.exists?(['email = ?', email])
ActionMailer::Base.deliveries.clear
post :create, :user => {:email => email}
end
should 'not send a password reminder email' do
assert ActionMailer::Base.deliveries.empty?
end
should 'set a :error flash' do
assert_not_nil flash.now[:error]
end
should_render_template "new"
end
end
context 'A GET to #edit' do
context "with an existing user's reset password code" do
setup do
@user.generate_reset_password_code
get :edit, :id => @user.reset_password_code
end
should 'find the user' do
assert_equal @user, assigns(:user)
end
should_respond_with :success
should_render_template "edit"
should "have a form for the user's email, password, and password confirm" do
update_path = ERB::Util.h(password_path(:id => @user.reset_password_code))
assert_select 'form[action=?]', update_path do
assert_select 'input[name=_method][value=?]', 'put'
assert_select 'input[name=?]', 'password'
assert_select 'input[name=?]', 'password_confirmation'
end
end
end
context "without an existing user's reset password code" do
setup do
get :edit, :id => 'some_random_x'
end
should_respond_with :not_found
should 'render an empty response' do
assert @response.body.blank?
end
end
end
context 'A PUT to #update' do
setup do
@new_password = 'new_password'
@encrypted_new_password = Digest::SHA1.hexdigest("--#{@user.salt}--#{@new_password}--")
assert_not_equal @encrypted_new_password, @user.crypted_password
@user.generate_reset_password_code
end
context "without an existing user's reset_password_code" do
setup do
put(:update,
:id => 'x',
:password => @new_password,
:password_confirmation => @new_password)
@user.reload
end
should "not find the user" do
assert_nil assigns[:user]
end
should_return_from_session :user_id, "nil"
should 'not remove the reset_password_code' do
assert_not_nil @user.reset_password_code
end
should_respond_with :not_found
should 'render an empty response' do
assert @response.body.blank?
end
end
context 'with an existing user with a matching password and password confirmation' do
setup do
put(:update,
:id => @user.reset_password_code,
:password => @new_password,
:password_confirmation => @new_password)
@user.reload
end
should "update the user's password" do
assert_equal @encrypted_new_password, @user.crypted_password
end
should 'remove the reset_password_code' do
assert_nil @user.reset_password_code
end
should_return_from_session :user_id, "@user.id"
should_redirect_to "user_path(@user)"
end
context 'with blank password and a password confirmation' do
setup do
put(:update,
:id => @user.reset_password_code,
:password => '',
:password_confirmation => @new_password)
@user.reload
end
should "not update the user's password" do
assert_not_equal @encrypted_new_password, @user.crypted_password
end
should_return_from_session :user_id, "nil"
should 'set a :error flash' do
assert_not_nil flash.now[:error]
end
should_render_template "edit"
end
context 'with password but blank password confirmation' do
setup do
put(:update,
:id => @user.reset_password_code,
:password => @new_password,
:password_confirmation => '')
@user.reload
end
should "not update the user's password" do
assert_not_equal @encrypted_new_password, @user.crypted_password
end
should_return_from_session :user_id, "nil"
should 'not remove the reset_password_code' do
assert_not_nil @user.reset_password_code
end
should 'set a :error flash' do
assert_not_nil flash.now[:error]
end
should_render_template "edit"
end
end
end
end
end
|