2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-15 16:44:59 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe Admin::ResetsController do
|
2017-04-28 15:12:37 +02:00
|
|
|
render_views
|
|
|
|
|
2024-02-19 16:57:47 +01:00
|
|
|
subject { post :create, params: { account_id: account.id } }
|
|
|
|
|
2022-01-28 00:46:42 +01:00
|
|
|
let(:account) { Fabricate(:account) }
|
2023-02-18 23:10:19 +01:00
|
|
|
|
2017-04-15 16:44:59 +02:00
|
|
|
before do
|
2022-07-05 02:41:40 +02:00
|
|
|
sign_in Fabricate(:user, role: UserRole.find_by(name: 'Admin')), scope: :user
|
2017-04-15 16:44:59 +02:00
|
|
|
end
|
|
|
|
|
2024-01-10 12:06:58 +01:00
|
|
|
describe 'POST #create', :sidekiq_inline do
|
2017-04-15 16:44:59 +02:00
|
|
|
it 'redirects to admin accounts page' do
|
2024-02-19 16:57:47 +01:00
|
|
|
emails = capture_emails { subject }
|
2017-04-15 16:44:59 +02:00
|
|
|
|
2024-02-19 16:57:47 +01:00
|
|
|
expect(emails.size)
|
|
|
|
.to eq(2)
|
|
|
|
expect(emails).to have_attributes(
|
2023-11-14 15:52:59 +01: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-08 05:31:28 +02:00
|
|
|
expect(response).to redirect_to(admin_account_path(account.id))
|
2017-04-15 16:44:59 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|