Convert auth/passwords
spec controller->system/request (#33790)
This commit is contained in:
parent
7c03327a17
commit
c5cd9bda48
3 changed files with 117 additions and 102 deletions
34
spec/requests/auth/passwords_spec.rb
Normal file
34
spec/requests/auth/passwords_spec.rb
Normal file
|
@ -0,0 +1,34 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe 'Auth Passwords' do
|
||||
describe 'GET /auth/password/edit' do
|
||||
context 'with invalid reset_password_token' do
|
||||
it 'redirects to #new' do
|
||||
get edit_user_password_path, params: { reset_password_token: 'some_invalid_value' }
|
||||
|
||||
expect(response)
|
||||
.to redirect_to new_user_password_path
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe 'PUT /auth/password' do
|
||||
let(:user) { Fabricate(:user) }
|
||||
let(:password) { 'reset0password' }
|
||||
|
||||
context 'with invalid reset_password_token' do
|
||||
it 'renders reset password and retains password' do
|
||||
put user_password_path, params: { user: { password: password, password_confirmation: password, reset_password_token: 'some_invalid_value' } }
|
||||
|
||||
expect(response.body)
|
||||
.to include(I18n.t('auth.set_new_password'))
|
||||
|
||||
expect(User.find(user.id))
|
||||
.to be_present
|
||||
.and be_external_or_valid_password(user.password)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue