0
0
Fork 0

Convert admin/reset controller spec to system spec (#31643)

This commit is contained in:
Matt Jankowski 2024-08-29 04:38:17 -04:00 committed by GitHub
parent 5d725b2c12
commit b9269c8d38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 46 additions and 36 deletions

View file

@ -0,0 +1,45 @@
# frozen_string_literal: true
require 'rails_helper'
describe 'Admin::Reset' do
it 'Resets password for account user' do
account = Fabricate :account
sign_in admin_user
visit admin_account_path(account.id)
emails = capture_emails do
expect { submit_reset }
.to change(Admin::ActionLog.where(target: account.user), :count).by(1)
end
expect(emails.first)
.to be_present
.and(deliver_to(account.user.email))
.and(have_subject(password_change_subject))
expect(emails.last)
.to be_present
.and(deliver_to(account.user.email))
.and(have_subject(reset_instructions_subject))
expect(page)
.to have_content(account.username)
end
def admin_user
Fabricate(:user, role: UserRole.find_by(name: 'Admin'))
end
def submit_reset
click_on I18n.t('admin.accounts.reset_password')
end
def password_change_subject
I18n.t('devise.mailer.password_change.subject')
end
def reset_instructions_subject
I18n.t('devise.mailer.reset_password_instructions.subject')
end
end