debian-mirror-gitlab/spec/workers/propagate_integration_project_worker_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.4 KiB
Ruby
Raw Normal View History

2021-01-03 14:25:43 +05:30
# 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) }
2021-09-30 23:02:18 +05:30
let_it_be(:integration) { create(:redmine_integration, :instance) }
2021-06-08 01:23:25 +05:30
2021-01-03 14:25:43 +05:30
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
2021-12-11 22:18:48 +05:30
let_it_be(:integration) { create(:redmine_integration, :group, group: group) }
2021-01-03 14:25:43 +05:30
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