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 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe JiraConnect::SyncProjectWorker, factory_default: :keep, feature_category: :integrations do
include AfterNextHelpers
it_behaves_like 'worker with data consistency', described_class, data_consistency: :delayed
describe '#perform' do
let_it_be(:project) { create_default(:project, :repository).freeze }
let!(:mr_with_jira_title) { create(:merge_request, :unique_branches, title: 'TEST-123') }
let!(:mr_with_jira_description) { create(:merge_request, :unique_branches, description: 'TEST-323') }
let!(:mr_with_other_title) { create(:merge_request, :unique_branches) }
let!(:jira_subscription) { create(:jira_connect_subscription, namespace: project.namespace) }
let(:jira_referencing_branch_name) { 'TEST-123_my-feature-branch' }
let(:jira_connect_sync_service) { JiraConnect::SyncService.new(project) }
let(:job_args) { [project.id, update_sequence_id] }
let(:update_sequence_id) { 1 }
let(:request_path) { '/rest/devinfo/0.10/bulk' }
let(:request_body) do
{
repositories: [
Atlassian::JiraConnect::Serializers::RepositoryEntity.represent(
project,
merge_requests: [mr_with_jira_description, mr_with_jira_title],
branches: [project.repository.find_branch(jira_referencing_branch_name)],
update_sequence_id: update_sequence_id
)
]
}
end
def perform(project_id, update_sequence_id)
described_class.new.perform(project_id, update_sequence_id)
end
before do
stub_request(:post, 'https://sample.atlassian.net/rest/devinfo/0.10/bulk').to_return(status: 200, body: '', headers: {})
jira_connect_sync_service
allow(JiraConnect::SyncService).to receive(:new) { jira_connect_sync_service }
end
context 'when the project is not found' do
it 'does not raise an error' do
expect { perform('non_existing_record_id', update_sequence_id) }.not_to raise_error
end
end
it 'avoids N+1 database queries' do
control = ActiveRecord::QueryRecorder.new { perform(project.id, update_sequence_id) }
create(:merge_request, :unique_branches, title: 'TEST-123')
expect { perform(project.id, update_sequence_id) }.not_to exceed_query_limit(control)
end
context 'with branches to sync' do
context 'on a single branch' do
it 'sends the request with custom update_sequence_id' do
project.repository.create_branch(jira_referencing_branch_name)
allow_next(Atlassian::JiraConnect::Client).to receive(:post)
.with(request_path, request_body)
perform(project.id, update_sequence_id)
end
end
context 'on multiple branches' do
after do
project.repository.rm_branch(project.owner, 'TEST-2_my-feature-branch')
project.repository.rm_branch(project.owner, 'TEST-3_my-feature-branch')
project.repository.rm_branch(project.owner, 'TEST-4_my-feature-branch')
end
it 'does not requests a lot from Gitaly', :request_store do
# NOTE: Gitaly N+1 calls when processing stats and diffs on commits.
# This should be reduced as we work on reducing Gitaly calls.
# See https://gitlab.com/gitlab-org/gitlab/-/issues/354370
described_class.new.perform(project.id, update_sequence_id)
project.repository.create_branch('TEST-2_my-feature-branch')
project.repository.create_branch('TEST-3_my-feature-branch')
project.repository.create_branch('TEST-4_my-feature-branch')
expect { described_class.new.perform(project.id, update_sequence_id) }
.to change { Gitlab::GitalyClient.get_request_count }.by(13)
end
end
end
context 'when the number of items to sync is higher than the limit' do
let!(:most_recent_merge_request) { create(:merge_request, :unique_branches, description: 'TEST-323', title: 'TEST-123') }
before do
stub_const("#{described_class}::MAX_RECORDS_LIMIT", 1)
project.repository.create_branch('TEST-321_new-branch')
end
it 'syncs only the most recent merge requests and branches within the limit' do
expect(jira_connect_sync_service).to receive(:execute)
.with(
merge_requests: [most_recent_merge_request],
branches: [have_attributes(name: jira_referencing_branch_name)],
update_sequence_id: update_sequence_id
)
perform(project.id, update_sequence_id)
end
end
end
end
|