Welcome to mirror list, hosted at ThFree Co, Russian Federation.

import_pull_requests_worker_spec.rb « stage « github_import « gitlab « workers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f9b4a8a99f068ce6646c645c31f5c1148df2d0fd (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
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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::GithubImport::Stage::ImportPullRequestsWorker, feature_category: :importers do
  let_it_be(:project) { create(:project) }
  let_it_be(:import_state) { create(:import_state, project: project) }
  let(:options) { { state: 'all', sort: 'number', direction: 'desc', per_page: '1' } }

  let(:worker) { described_class.new }
  let(:importer) { double(:importer) }
  let(:client) { double(:client) }

  it_behaves_like Gitlab::GithubImport::StageMethods

  describe '#import' do
    context 'with pull requests' do
      it 'imports all the pull requests and allocates internal iids' do
        waiter = Gitlab::JobWaiter.new(2, '123')

        expect(Gitlab::GithubImport::Importer::PullRequestsImporter)
          .to receive(:new)
          .with(project, client)
          .and_return(importer)

        expect(importer)
          .to receive(:execute)
          .and_return(waiter)

        expect(import_state)
          .to receive(:refresh_jid_expiration)

        expect(InternalId).to receive(:exists?).and_return(false)

        expect(client).to receive(:each_object).with(
          :pulls, project.import_source, options
        ).and_return([{ number: 4 }].each)

        expect(Gitlab::GithubImport::AdvanceStageWorker)
          .to receive(:perform_async)
          .with(project.id, { '123' => 2 }, :collaborators)

        expect(MergeRequest).to receive(:track_target_project_iid!)

        worker.import(client, project)
      end
    end

    context 'without pull requests' do
      it 'does not allocate internal iids' do
        waiter = Gitlab::JobWaiter.new(2, '123')

        expect(Gitlab::GithubImport::Importer::PullRequestsImporter)
          .to receive(:new)
          .with(project, client)
          .and_return(importer)

        expect(importer)
          .to receive(:execute)
          .and_return(waiter)

        expect(import_state)
          .to receive(:refresh_jid_expiration)

        expect(InternalId).to receive(:exists?).and_return(false)

        expect(client).to receive(:each_object).with(
          :pulls, project.import_source, options
        ).and_return([nil].each)

        expect(Gitlab::GithubImport::AdvanceStageWorker)
          .to receive(:perform_async)
          .with(project.id, { '123' => 2 }, :collaborators)

        expect(MergeRequest).not_to receive(:track_target_project_iid!)

        worker.import(client, project)
      end
    end

    context 'when retrying' do
      it 'does not allocate internal iids' do
        waiter = Gitlab::JobWaiter.new(2, '123')

        expect(Gitlab::GithubImport::Importer::PullRequestsImporter)
          .to receive(:new)
          .with(project, client)
          .and_return(importer)

        expect(importer)
          .to receive(:execute)
          .and_return(waiter)

        expect(import_state)
          .to receive(:refresh_jid_expiration)

        expect(InternalId).to receive(:exists?).and_return(true)

        expect(client).not_to receive(:each_object)
        expect(MergeRequest).not_to receive(:track_target_project_iid!)

        worker.import(client, project)
      end
    end
  end
end