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

import_issues_and_diff_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: c0dd4f488cc804b710663a85b3c6a9748148eb77 (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
74
75
# frozen_string_literal: true

require 'spec_helper'

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

  describe '#import' do
    it 'imports the issues and diff 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 }, :notes)

      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 diff notes importer' 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::IssuesImporter,
            Gitlab::GithubImport::Importer::SingleEndpointDiffNotesImporter
          )
        end
      end

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

          expect(worker.importers(project)).to contain_exactly(
            Gitlab::GithubImport::Importer::IssuesImporter,
            Gitlab::GithubImport::Importer::DiffNotesImporter
          )
        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::IssuesImporter,
          Gitlab::GithubImport::Importer::DiffNotesImporter
        )
      end
    end
  end
end