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

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

require 'spec_helper'

RSpec.describe Gitlab::GithubImport::Importer::PullRequestsReviewsImporter do
  let(:client) { double }
  let(:project) { create(:project, import_source: 'github/repo') }

  subject { described_class.new(project, client) }

  it { is_expected.to include_module(Gitlab::GithubImport::ParallelScheduling) }

  describe '#representation_class' do
    it { expect(subject.representation_class).to eq(Gitlab::GithubImport::Representation::PullRequestReview) }
  end

  describe '#importer_class' do
    it { expect(subject.importer_class).to eq(Gitlab::GithubImport::Importer::PullRequestReviewImporter) }
  end

  describe '#collection_method' do
    it { expect(subject.collection_method).to eq(:pull_request_reviews) }
  end

  describe '#id_for_already_imported_cache' do
    it { expect(subject.id_for_already_imported_cache(double(github_id: 1))).to eq(1) }
  end

  describe '#each_object_to_import' do
    it 'fetchs the merged pull requests data' do
      merge_request = create(:merge_request, source_project: project)
      review = double

      expect(review)
        .to receive(:merge_request_id=)
        .with(merge_request.id)

      allow(client)
        .to receive(:pull_request_reviews)
        .with('github/repo', merge_request.iid)
        .and_return([review])

      expect { |b| subject.each_object_to_import(&b) }.to yield_with_args(review)
    end
  end
end