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

require 'spec_helper'

RSpec.describe JiraConnect::SyncBranchWorker do
  include AfterNextHelpers

  describe '#perform' do
    let_it_be(:group) { create(:group) }
    let_it_be(:project) { create(:project, :repository, group: group) }
    let_it_be(:subscription) { create(:jira_connect_subscription, installation: create(:jira_connect_installation), namespace: group) }

    let(:project_id) { project.id }
    let(:branch_name) { 'master' }
    let(:commit_shas) { %w(b83d6e3 5a62481) }
    let(:update_sequence_id) { 1 }

    def expect_jira_sync_service_execute(args)
      expect_next_instances_of(JiraConnect::SyncService, IdempotentWorkerHelper::WORKER_EXEC_TIMES) do |instance|
        expect(instance).to receive(:execute).with(args)
      end
    end

    it_behaves_like 'an idempotent worker' do
      let(:job_args) { [project_id, branch_name, commit_shas, update_sequence_id] }

      before do
        stub_request(:post, 'https://sample.atlassian.net/rest/devinfo/0.10/bulk').to_return(status: 200, body: '', headers: {})
      end

      it 'calls JiraConnect::SyncService#execute' do
        expect_jira_sync_service_execute(
          branches: [instance_of(Gitlab::Git::Branch)],
          commits: project.commits_by(oids: commit_shas),
          update_sequence_id: update_sequence_id
        )

        subject
      end

      context 'without branch name' do
        let(:branch_name) { nil }

        it 'calls JiraConnect::SyncService#execute' do
          expect_jira_sync_service_execute(
            branches: nil,
            commits: project.commits_by(oids: commit_shas),
            update_sequence_id: update_sequence_id
          )

          subject
        end
      end

      context 'without commits' do
        let(:commit_shas) { nil }

        it 'calls JiraConnect::SyncService#execute' do
          expect_jira_sync_service_execute(
            branches: [instance_of(Gitlab::Git::Branch)],
            commits: nil,
            update_sequence_id: update_sequence_id
          )

          subject
        end
      end

      context 'when project no longer exists' do
        let(:project_id) { non_existing_record_id }

        it 'does not call JiraConnect::SyncService' do
          expect(JiraConnect::SyncService).not_to receive(:new)

          subject
        end
      end
    end
  end
end