summaryrefslogtreecommitdiff
path: root/spec/workers/propagate_integration_project_worker_spec.rb
blob: 0302af2acc9fc59f51d7a60d1a1bb30c8c958144 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe PropagateIntegrationProjectWorker do
  describe '#perform' do
    let_it_be(:group) { create(:group) }
    let_it_be(:project1) { create(:project) }
    let_it_be(:project2) { create(:project, group: group) }
    let_it_be(:project3) { create(:project, group: group) }
    let_it_be(:integration) { create(:redmine_service, :instance) }
    let(:job_args) { [integration.id, project1.id, project3.id] }

    it_behaves_like 'an idempotent worker' do
      it 'calls to BulkCreateIntegrationService' do
        expect(BulkCreateIntegrationService).to receive(:new)
          .with(integration, match_array([project1, project2, project3]), 'project').twice
          .and_return(double(execute: nil))

        subject
      end

      context 'with a group integration' do
        let_it_be(:integration) { create(:redmine_service, group: group, project: nil) }

        it 'calls to BulkCreateIntegrationService' do
          expect(BulkCreateIntegrationService).to receive(:new)
            .with(integration, match_array([project2, project3]), 'project').twice
            .and_return(double(execute: nil))

          subject
        end
      end
    end

    context 'with an invalid integration id' do
      it 'returns without failure' do
        expect(BulkCreateIntegrationService).not_to receive(:new)

        subject.perform(0, 1, 100)
      end
    end
  end
end