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

import_review_request_worker_spec.rb « pull_requests « github_import « gitlab « workers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fdcbfb18beb69b348a765196892a9a0c945d81b1 (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::PullRequests::ImportReviewRequestWorker do
  subject(:worker) { described_class.new }

  describe '#import' do
    let(:import_state) { build_stubbed(:import_state, :started) }

    let(:project) do
      instance_double('Project', full_path: 'foo/bar', id: 1, import_state: import_state)
    end

    let(:client) { instance_double('Gitlab::GithubImport::Client') }
    let(:importer) { instance_double('Gitlab::GithubImport::Importer::IssueEventImporter') }

    let(:review_request_hash) do
      {
        'merge_request_id' => 6501124486,
        'users' => [
          { 'id' => 4, 'login' => 'alice' },
          { 'id' => 5, 'login' => 'bob' }
        ]
      }
    end

    it 'imports an pull request review requests' do
      expect(Gitlab::GithubImport::Importer::PullRequests::ReviewRequestImporter)
        .to receive(:new)
        .with(
          an_instance_of(Gitlab::GithubImport::Representation::PullRequests::ReviewRequests),
          project,
          client
        )
        .and_return(importer)

      expect(importer).to receive(:execute)

      expect(Gitlab::GithubImport::ObjectCounter)
        .to receive(:increment).with(project, :pull_request_review_request, :imported)

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