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