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: 9c840967aedc247fab806d6d2cade824d9a428f0 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
require 'spec_helper'

describe Ci::SendPipelineNotificationService, services: true do
  let(:pipeline) do
    create(:ci_pipeline,
           project: project,
           sha: project.commit('master').sha,
           user: user,
           status: status)
  end

  let(:project) { create(:project) }
  let(:user) { create(:user) }
  let(:pusher) { user }
  let(:watcher) { pusher }

  describe '#execute' do
    before do
      reset_delivered_emails!
      pipeline.project.team << [watcher, Gitlab::Access::DEVELOPER]
    end

    shared_examples 'sending emails' do
      it 'sends emails' do
        perform_enqueued_jobs do
          subject.execute([user.email])
        end

        expected_receivers = [pusher, watcher].uniq.sort_by(&:email)
        actual = ActionMailer::Base.deliveries.sort_by(&:to)

        expect(expected_receivers.size).to eq(actual.size)

        actual.zip(expected_receivers).each do |(email, receiver)|
          expect(email.subject).to include(email_subject)
          expect(email.to).to eq([receiver.email])
        end
      end
    end

    context 'with success pipeline' do
      let(:status) { 'success' }
      let(:email_subject) { "Pipeline ##{pipeline.id} has succeeded" }

      it_behaves_like 'sending emails'

      context 'with pipeline from someone else' do
        let(:pusher) { create(:user) }

        context 'with success pipeline notification on' do
          let(:watcher) { user }

          before do
            watcher.global_notification_setting.
              update(level: 'custom', success_pipeline: true)
          end

          it_behaves_like 'sending emails'
        end

        context 'with success pipeline notification off' do
          before do
            watcher.global_notification_setting.
              update(level: 'custom', success_pipeline: false)
          end

          it_behaves_like 'sending emails'
        end
      end
    end

    context 'with failed pipeline' do
      let(:status) { 'failed' }
      let(:email_subject) { "Pipeline ##{pipeline.id} has failed" }

      it_behaves_like 'sending emails'

      context 'with pipeline from someone else' do
        let(:pusher) { create(:user) }

        context 'with failed pipeline notification on' do
          let(:watcher) { user }

          before do
            watcher.global_notification_setting.
              update(level: 'custom', failed_pipeline: true)
          end

          it_behaves_like 'sending emails'
        end

        context 'with failed pipeline notification off' do
          before do
            watcher.global_notification_setting.
              update(level: 'custom', failed_pipeline: false)
          end

          it_behaves_like 'sending emails'
        end
      end
    end
  end
end