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

import_notes_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: adf20d24a7e84ec74a27f8285d418bd531fe2391 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::GithubImport::Stage::ImportNotesWorker do
  let(:project) { create(:project) }
  let(:worker) { described_class.new }

  describe '#import' do
    it 'imports all the notes' do
      client = double(:client)

      worker.importers(project).each do |klass|
        importer = double(:importer)
        waiter = Gitlab::JobWaiter.new(2, '123')

        expect(klass)
          .to receive(:new)
          .with(project, client)
          .and_return(importer)

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

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

      worker.import(client, project)
    end
  end

  describe '#importers' do
    context 'when project group is present' do
      let_it_be(:project) { create(:project) }
      let_it_be(:group) { create(:group, projects: [project]) }

      context 'when feature flag github_importer_single_endpoint_notes_import is enabled' do
        it 'includes single endpoint mr and issue notes importers' do
          project = create(:project)
          group = create(:group, projects: [project])

          stub_feature_flags(github_importer_single_endpoint_notes_import: group)

          expect(worker.importers(project)).to contain_exactly(
            Gitlab::GithubImport::Importer::SingleEndpointMergeRequestNotesImporter,
            Gitlab::GithubImport::Importer::SingleEndpointIssueNotesImporter
          )
        end
      end

      context 'when feature flag github_importer_single_endpoint_notes_import is disabled' do
        it 'includes default notes importer' do
          stub_feature_flags(github_importer_single_endpoint_notes_import: false)

          expect(worker.importers(project)).to contain_exactly(
            Gitlab::GithubImport::Importer::NotesImporter
          )
        end
      end
    end

    context 'when project group is missing' do
      it 'includes default diff notes importer' do
        expect(worker.importers(project)).to contain_exactly(
          Gitlab::GithubImport::Importer::NotesImporter
        )
      end
    end
  end
end