improve user password reset

This commit is contained in:
Alex Turchyn
2025-09-05 21:48:22 +03:00
committed by Pete Matsyburka
parent aeea619059
commit f7be74eb73
9 changed files with 110 additions and 12 deletions
+42 -1
View File
@@ -16,7 +16,6 @@ RSpec.describe 'Profile Settings' do
expect(page).to have_content('Change Password')
expect(page).to have_field('user[password]')
expect(page).to have_field('user[password_confirmation]')
end
context 'when changes contact information' do
@@ -47,6 +46,7 @@ RSpec.describe 'Profile Settings' do
it 'updates password' do
fill_in 'New password', with: 'newpassword'
fill_in 'Confirm new password', with: 'newpassword'
fill_in 'Current password', with: 'password'
all(:button, 'Update')[1].click
@@ -56,10 +56,51 @@ RSpec.describe 'Profile Settings' do
it 'does not update if password confirmation does not match' do
fill_in 'New password', with: 'newpassword'
fill_in 'Confirm new password', with: 'newpassword1'
fill_in 'Current password', with: 'password'
all(:button, 'Update')[1].click
expect(page).to have_content("Password confirmation doesn't match Password")
end
it 'does not update if current password is incorrect' do
fill_in 'New password', with: 'newpassword'
fill_in 'Confirm new password', with: 'newpassword'
fill_in 'Current password', with: 'wrongpassword'
all(:button, 'Update')[1].click
expect(page).to have_content('Current password is invalid')
end
it 'resets password and signs in with new password', sidekiq: :inline do
fill_in 'New password', with: 'newpassword'
accept_confirm('Are you sure?') do
find('label', text: 'Click here').click
end
expect(page).to have_content('You will receive an email with password reset instructions in a few minutes.')
email = ActionMailer::Base.deliveries.last
reset_password_url = email.body
.encoded[/href="([^"]+)"/, 1]
.sub(%r{https?://(.*?)/}, "#{Capybara.current_session.server.base_url}/")
visit reset_password_url
fill_in 'New password', with: 'new_strong_password'
fill_in 'Confirm new password', with: 'new_strong_password'
click_button 'Change my password'
expect(page).to have_content('Your password has been changed successfully. You are now signed in.')
visit new_user_session_path
fill_in 'Email', with: user.email
fill_in 'Password', with: 'new_strong_password'
click_button 'Sign In'
expect(page).to have_content('Signed in successfully')
end
end
end