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

require 'spec_helper'

RSpec.describe PropagateIntegrationGroupWorker do
  describe '#perform' do
    let_it_be(:group1) { create(:group) }
    let_it_be(:group2) { create(:group) }
    let_it_be(:integration) { create(:redmine_service, :instance) }

    before do
      allow(BulkCreateIntegrationService).to receive(:new)
        .with(integration, match_array([group1, group2]), 'group')
        .and_return(double(execute: nil))
    end

    it_behaves_like 'an idempotent worker' do
      let(:job_args) { [integration.id, group1.id, group2.id] }

      it 'calls to BulkCreateIntegrationService' do
        expect(BulkCreateIntegrationService).to receive(:new)
          .with(integration, match_array([group1, group2]), 'group')
          .and_return(double(execute: nil))

        subject
      end
    end

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

        subject.perform(0, group1.id, group2.id)
      end
    end
  end
end