# frozen_string_literal: true require 'rails_helper' RSpec.describe AdminMailer do describe '.new_report' do let(:sender) { Fabricate(:account, username: 'John') } let(:recipient) { Fabricate(:account, username: 'Mike') } let(:report) { Fabricate(:report, account: sender, target_account: recipient) } let(:mail) { described_class.with(recipient: recipient).new_report(report) } before do recipient.user.update(locale: :en) end it 'renders the email' do expect(mail) .to be_present .and(deliver_to(recipient.user_email)) .and(deliver_from('notifications@localhost')) .and(have_subject("New report for cb6e6126.ngrok.io (##{report.id})")) .and(have_body_text("Mike,\r\n\r\nJohn has reported Mike\r\n\r\nView: https://cb6e6126.ngrok.io/admin/reports/#{report.id}\r\n")) end end describe '.new_appeal' do let(:appeal) { Fabricate(:appeal) } let(:recipient) { Fabricate(:account, username: 'Kurt') } let(:mail) { described_class.with(recipient: recipient).new_appeal(appeal) } before do recipient.user.update(locale: :en) end it 'renders the email' do expect(mail) .to be_present .and(deliver_to(recipient.user_email)) .and(deliver_from('notifications@localhost')) .and(have_subject("#{appeal.account.username} is appealing a moderation decision on cb6e6126.ngrok.io")) .and(have_body_text("#{appeal.account.username} is appealing a moderation decision by #{appeal.strike.account.username}")) end end describe '.new_pending_account' do let(:recipient) { Fabricate(:account, username: 'Barklums') } let(:user) { Fabricate(:user) } let(:mail) { described_class.with(recipient: recipient).new_pending_account(user) } before do recipient.user.update(locale: :en) end it 'renders the email' do expect(mail) .to be_present .and(deliver_to(recipient.user_email)) .and(deliver_from('notifications@localhost')) .and(have_subject("New account up for review on cb6e6126.ngrok.io (#{user.account.username})")) .and(have_body_text('The details of the new account are below. You can approve or reject this application.')) end end describe '.new_trends' do let(:recipient) { Fabricate(:account, username: 'Snurf') } let(:links) { [] } let(:statuses) { [] } let(:tags) { [] } let(:mail) { described_class.with(recipient: recipient).new_trends(links, tags, statuses) } before do recipient.user.update(locale: :en) end it 'renders the email' do expect(mail) .to be_present .and(deliver_to(recipient.user_email)) .and(deliver_from('notifications@localhost')) .and(have_subject('New trends up for review on cb6e6126.ngrok.io')) .and(have_body_text('The following items need a review before they can be displayed publicly')) end end describe '.new_software_updates' do let(:recipient) { Fabricate(:account, username: 'Bob') } let(:mail) { described_class.with(recipient: recipient).new_software_updates } before do recipient.user.update(locale: :en) end it 'renders the email' do expect(mail) .to be_present .and(deliver_to(recipient.user_email)) .and(deliver_from('notifications@localhost')) .and(have_subject('New Mastodon versions are available for cb6e6126.ngrok.io!')) .and(have_body_text('New Mastodon versions have been released, you may want to update!')) end end describe '.new_critical_software_updates' do let(:recipient) { Fabricate(:account, username: 'Bob') } let(:mail) { described_class.with(recipient: recipient).new_critical_software_updates } before do recipient.user.update(locale: :en) end it 'renders the email' do expect(mail) .to be_present .and(deliver_to(recipient.user_email)) .and(deliver_from('notifications@localhost')) .and(have_subject('Critical Mastodon updates are available for cb6e6126.ngrok.io!')) .and(have_body_text('New critical versions of Mastodon have been released, you may want to update as soon as possible!')) .and(have_header('Importance', 'high')) .and(have_header('Priority', 'urgent')) .and(have_header('X-Priority', '1')) end end end