summaryrefslogtreecommitdiff
path: root/spec/workers/gitlab/github_import/import_collaborator_worker_spec.rb
blob: b9463fb9a2da1ceb30f53bc3e0f246bb5bc4d2bc (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::GithubImport::ImportCollaboratorWorker, feature_category: :importers do
  let(:worker) { described_class.new }

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

    let(:import_state) { build_stubbed(:import_state, :started) }
    let(:client) { instance_double('Gitlab::GithubImport::Client') }
    let(:importer) { instance_double('Gitlab::GithubImport::Importer::NoteAttachmentsImporter') }

    it 'imports a collaborator' do
      expect(Gitlab::GithubImport::Importer::CollaboratorImporter)
        .to receive(:new)
        .with(
          an_instance_of(Gitlab::GithubImport::Representation::Collaborator),
          project,
          client
        )
        .and_return(importer)

      expect(importer).to receive(:execute)

      expect(Gitlab::GithubImport::ObjectCounter)
        .to receive(:increment)
        .and_call_original

      worker.import(
        project, client, { 'id' => 100500, 'login' => 'alice', 'role_name' => 'maintainer' }
      )
    end
  end
end