2019-10-21 05:06:22 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-08-29 03:56:52 -04:00
|
|
|
require 'spec_helper'
|
2016-04-04 11:23:43 -04:00
|
|
|
|
2020-06-24 14:09:03 -04:00
|
|
|
RSpec.describe RepositoryCheckMailer do
|
2016-04-04 11:23:43 -04:00
|
|
|
include EmailSpec::Matchers
|
|
|
|
|
|
|
|
describe '.notify' do
|
|
|
|
it 'emails all admins' do
|
2016-04-14 11:05:41 -04:00
|
|
|
admins = create_list(:admin, 3)
|
2016-04-04 11:23:43 -04:00
|
|
|
|
|
|
|
mail = described_class.notify(1)
|
|
|
|
|
|
|
|
expect(mail).to deliver_to admins.map(&:email)
|
|
|
|
end
|
|
|
|
|
2019-06-11 16:44:45 -04:00
|
|
|
it 'omits blocked admins' do
|
|
|
|
blocked = create(:admin, :blocked)
|
|
|
|
admins = create_list(:admin, 3)
|
|
|
|
|
|
|
|
mail = described_class.notify(1)
|
|
|
|
|
|
|
|
expect(mail.to).not_to include(blocked.email)
|
|
|
|
expect(mail).to deliver_to admins.map(&:email)
|
|
|
|
end
|
|
|
|
|
2016-04-04 11:23:43 -04:00
|
|
|
it 'mentions the number of failed checks' do
|
|
|
|
mail = described_class.notify(3)
|
|
|
|
|
2016-04-18 04:58:40 -04:00
|
|
|
expect(mail).to have_subject 'GitLab Admin | 3 projects failed their last repository check'
|
2016-04-04 11:23:43 -04:00
|
|
|
end
|
2019-02-20 10:18:15 -05:00
|
|
|
|
|
|
|
context 'with footer and header' do
|
|
|
|
subject { described_class.notify(1) }
|
|
|
|
|
|
|
|
it_behaves_like 'appearance header and footer enabled'
|
|
|
|
it_behaves_like 'appearance header and footer not enabled'
|
|
|
|
end
|
2016-04-04 11:23:43 -04:00
|
|
|
end
|
|
|
|
end
|