2023-02-21 17:55:31 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-15 08:44:59 -06:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe Admin::ResetsController do
|
2017-04-28 07:12:37 -06:00
|
|
|
render_views
|
|
|
|
|
2024-02-19 08:57:47 -07:00
|
|
|
subject { post :create, params: { account_id: account.id } }
|
|
|
|
|
2022-01-27 16:46:42 -07:00
|
|
|
let(:account) { Fabricate(:account) }
|
2023-02-18 15:10:19 -07:00
|
|
|
|
2017-04-15 08:44:59 -06:00
|
|
|
before do
|
2022-07-04 18:41:40 -06:00
|
|
|
sign_in Fabricate(:user, role: UserRole.find_by(name: 'Admin')), scope: :user
|
2017-04-15 08:44:59 -06:00
|
|
|
end
|
|
|
|
|
2024-07-08 10:01:08 -06:00
|
|
|
describe 'POST #create', :inline_jobs do
|
2017-04-15 08:44:59 -06:00
|
|
|
it 'redirects to admin accounts page' do
|
2024-02-19 08:57:47 -07:00
|
|
|
emails = capture_emails { subject }
|
2017-04-15 08:44:59 -06:00
|
|
|
|
2024-02-19 08:57:47 -07:00
|
|
|
expect(emails.size)
|
|
|
|
.to eq(2)
|
|
|
|
expect(emails).to have_attributes(
|
2023-11-14 07:52:59 -07:00
|
|
|
first: have_attributes(
|
|
|
|
to: include(account.user.email),
|
|
|
|
subject: I18n.t('devise.mailer.password_change.subject')
|
|
|
|
),
|
|
|
|
last: have_attributes(
|
|
|
|
to: include(account.user.email),
|
|
|
|
subject: I18n.t('devise.mailer.reset_password_instructions.subject')
|
|
|
|
)
|
|
|
|
)
|
2021-07-07 21:31:28 -06:00
|
|
|
expect(response).to redirect_to(admin_account_path(account.id))
|
2017-04-15 08:44:59 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|