BigW Consortium Gitlab

password_reset_spec.rb 1.49 KB
Newer Older
1 2
require 'spec_helper'

3
feature 'Password reset', feature: true do
4 5
  describe 'throttling' do
    it 'sends reset instructions when not previously sent' do
6 7
      user = create(:user)
      forgot_password(user)
8

9
      expect(page).to have_content(I18n.t('devise.passwords.send_paranoid_instructions'))
10
      expect(current_path).to eq new_user_session_path
11
      expect(user.recently_sent_password_reset?).to be_truthy
12
    end
13

14 15 16 17 18
    it 'sends reset instructions when previously sent more than a minute ago' do
      user = create(:user)
      user.send_reset_password_instructions
      user.update_attribute(:reset_password_sent_at, 5.minutes.ago)

19 20
      expect{ forgot_password(user) }.to change{ user.reset_password_sent_at }
      expect(page).to have_content(I18n.t('devise.passwords.send_paranoid_instructions'))
21 22 23
      expect(current_path).to eq new_user_session_path
    end

24
    it 'throttles multiple resets in a short timespan' do
25 26
      user = create(:user)
      user.send_reset_password_instructions
27 28
      # Reload because PG handles datetime less precisely than Ruby/Rails
      user.reload
29

30 31 32
      expect{ forgot_password(user) }.not_to change{ user.reset_password_sent_at }
      expect(page).to have_content(I18n.t('devise.passwords.send_paranoid_instructions'))
      expect(current_path).to eq new_user_session_path
33 34 35 36
    end
  end

  def forgot_password(user)
37
    visit root_path
38 39 40 41 42
    click_on 'Forgot your password?'
    fill_in 'Email', with: user.email
    click_button 'Reset password'
    user.reload
  end
43
end