Fix pipeline emails and add tests

This commit is contained in:
Lin Jen-Shin 2016-09-14 01:10:58 +08:00
parent 4ad63c29bb
commit 9d9c2d314c
3 changed files with 167 additions and 2 deletions

View File

@ -319,11 +319,11 @@ class NotificationService
recipients ||= build_recipients(
pipeline,
pipeline.project,
pipeline.user,
nil, # The acting user, who won't be added to recipients
action: pipeline.status)
recipients.each do |to|
mailer.public_send(email_template, pipeline, to).deliver_later
mailer.public_send(email_template, pipeline, to.email).deliver_later
end
end

View File

@ -0,0 +1,130 @@
require 'spec_helper'
describe PipelinesEmailService do
let(:data) do
Gitlab::DataBuilder::Pipeline.build(create(:ci_pipeline))
end
let(:recipient) { 'test@gitlab.com' }
def expect_pipeline_service
expect_any_instance_of(Ci::SendPipelineNotificationService)
end
def receive_execute
receive(:execute).with([recipient])
end
describe 'Validations' do
context 'when service is active' do
before do
subject.active = true
end
it { is_expected.to validate_presence_of(:recipients) }
context 'when pusher is added' do
before do
subject.add_pusher = true
end
it { is_expected.not_to validate_presence_of(:recipients) }
end
end
context 'when service is inactive' do
before do
subject.active = false
end
it { is_expected.not_to validate_presence_of(:recipients) }
end
end
describe '#test_data' do
let(:build) { create(:ci_build) }
let(:project) { build.project }
let(:user) { create(:user) }
before do
project.team << [user, :developer]
end
it 'builds test data' do
data = subject.test_data(project, user)
expect(data[:object_kind]).to eq('pipeline')
end
end
describe '#test' do
before do
subject.recipients = recipient
end
shared_examples 'sending email' do
it 'sends email' do
expect_pipeline_service.to receive_execute
subject.test(data)
end
end
it_behaves_like 'sending email'
context 'when pipeline is succeeded' do
before do
data[:object_attributes][:status] = 'success'
end
it_behaves_like 'sending email'
end
end
describe '#execute' do
context 'with recipients' do
before do
subject.recipients = recipient
end
it 'sends email for failed pipeline' do
data[:object_attributes][:status] = 'failed'
expect_pipeline_service.to receive_execute
subject.execute(data)
end
it 'does not send email for succeeded pipeline' do
data[:object_attributes][:status] = 'success'
expect_pipeline_service.not_to receive_execute
subject.execute(data)
end
context 'with notify_only_broken_pipelines on' do
before do
subject.notify_only_broken_pipelines = true
end
it 'sends email for failed pipeline' do
data[:object_attributes][:status] = 'failed'
expect_pipeline_service.to receive_execute
subject.execute(data)
end
end
end
it 'does not send email when recipients list is empty' do
subject.recipients = ' ,, '
data[:object_attributes][:status] = 'failed'
expect_pipeline_service.not_to receive_execute
subject.execute(data)
end
end
end

View File

@ -0,0 +1,35 @@
require 'spec_helper'
describe Ci::SendPipelineNotificationService, services: true do
let(:user) { create(:user) }
let(:pipeline) { create(:ci_pipeline, user: user, status: status) }
subject{ described_class.new(pipeline) }
describe '#execute' do
shared_examples 'sending emails' do
it 'sends an email to pipeline user' do
perform_enqueued_jobs do
subject.execute
end
email = ActionMailer::Base.deliveries.last
expect(email.subject).to include(email_subject)
expect(email.to).to eq([user.email])
end
end
context 'with success pipeline' do
let(:status) { 'success' }
let(:email_subject) { 'Pipeline succeeded for' }
it_behaves_like 'sending emails'
end
context 'with failed pipeline' do
let(:status) { 'failed' }
let(:email_subject) { 'Pipeline failed for' }
it_behaves_like 'sending emails'
end
end
end