Welcome to mirror list, hosted at ThFree Co, Russian Federation.

send_pipeline_notification_service_spec.rb « ci « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb53ba8b051546590e07bff46c001857951216e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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([user.email])
        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