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

import_pull_requests_review_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: 41c0b29df7c74af16ad227ccf4b4adb4c123f20f (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::GithubImport::Stage::ImportPullRequestsReviewRequestsWorker, feature_category: :importers do
  subject(:worker) { described_class.new }

  let(:project) { instance_double(Project, id: 1, import_state: import_state) }
  let(:import_state) { instance_double(ProjectImportState, refresh_jid_expiration: true) }
  let(:client) { instance_double(Gitlab::GithubImport::Client) }
  let(:importer) { instance_double(Gitlab::GithubImport::Importer::PullRequests::ReviewRequestsImporter) }
  let(:waiter) { Gitlab::JobWaiter.new(2, '123') }

  describe '#import' do
    it 'imports all PR review requests' do
      expect(Gitlab::GithubImport::Importer::PullRequests::ReviewRequestsImporter)
        .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(Gitlab::GithubImport::AdvanceStageWorker)
        .to receive(:perform_async)
        .with(project.id, { '123' => 2 }, :pull_request_reviews)

      worker.import(client, project)
    end
  end
end