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

remote_mirror_notification_worker_spec.rb « workers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e3db10ed645d96e598c981af2cff3ad824103bc4 (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
require 'spec_helper'

describe RemoteMirrorNotificationWorker, :mailer do
  set(:project) { create(:project, :repository, :remote_mirror) }
  set(:mirror) { project.remote_mirrors.first }

  describe '#execute' do
    it 'calls NotificationService#remote_mirror_update_failed when the mirror exists' do
      mirror.update_column(:last_error, "There was a problem fetching")

      expect(NotificationService).to receive_message_chain(:new, :remote_mirror_update_failed)

      subject.perform(mirror.id)

      expect(mirror.reload.error_notification_sent?).to be_truthy
    end

    it 'does nothing when the mirror has no errors' do
      expect(NotificationService).not_to receive(:new)

      subject.perform(mirror.id)
    end

    it 'does nothing when the mirror does not exist' do
      expect(NotificationService).not_to receive(:new)

      subject.perform(RemoteMirror.maximum(:id).to_i.succ)
    end

    it 'does nothing when a notification has already been sent' do
      mirror.update_columns(last_error: "There was a problem fetching",
                            error_notification_sent: true)

      expect(NotificationService).not_to receive(:new)

      subject.perform(mirror.id)
    end
  end
end