2023-02-21 19:55:31 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-04-10 03:16:06 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-03 23:49:53 -04:00
|
|
|
RSpec.describe Admin::ChangeEmailsController do
|
2018-04-10 03:16:06 -04:00
|
|
|
render_views
|
|
|
|
|
2022-07-04 20:41:40 -04:00
|
|
|
let(:admin) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }
|
2018-04-10 03:16:06 -04:00
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in admin
|
|
|
|
end
|
|
|
|
|
2023-02-18 17:38:14 -05:00
|
|
|
describe 'GET #show' do
|
|
|
|
it 'returns http success' do
|
2022-01-27 18:46:42 -05:00
|
|
|
user = Fabricate(:user)
|
2018-04-10 03:16:06 -04:00
|
|
|
|
2022-01-27 18:46:42 -05:00
|
|
|
get :show, params: { account_id: user.account.id }
|
2018-04-10 03:16:06 -04:00
|
|
|
|
2018-04-21 15:35:07 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2018-04-10 03:16:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-02-18 17:38:14 -05:00
|
|
|
describe 'GET #update' do
|
2018-04-10 03:16:06 -04:00
|
|
|
before do
|
2023-06-22 08:55:22 -04:00
|
|
|
allow(UserMailer).to receive(:confirmation_instructions)
|
|
|
|
.and_return(instance_double(ActionMailer::MessageDelivery, deliver_later: nil))
|
2018-04-10 03:16:06 -04:00
|
|
|
end
|
|
|
|
|
2023-02-18 17:38:14 -05:00
|
|
|
it 'returns http success' do
|
2022-01-27 18:46:42 -05:00
|
|
|
user = Fabricate(:user)
|
2018-04-10 03:16:06 -04:00
|
|
|
|
|
|
|
previous_email = user.email
|
|
|
|
|
2022-01-27 18:46:42 -05:00
|
|
|
post :update, params: { account_id: user.account.id, user: { unconfirmed_email: 'test@example.com' } }
|
2018-04-10 03:16:06 -04:00
|
|
|
|
|
|
|
user.reload
|
|
|
|
|
|
|
|
expect(user.email).to eq previous_email
|
|
|
|
expect(user.unconfirmed_email).to eq 'test@example.com'
|
2023-02-19 20:33:27 -05:00
|
|
|
expect(user.confirmation_token).to_not be_nil
|
2018-04-10 03:16:06 -04:00
|
|
|
|
|
|
|
expect(UserMailer).to have_received(:confirmation_instructions).with(user, user.confirmation_token, { to: 'test@example.com' })
|
|
|
|
|
2022-01-27 18:46:42 -05:00
|
|
|
expect(response).to redirect_to(admin_account_path(user.account.id))
|
2018-04-10 03:16:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|