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

repository_pipeline_spec.rb « pipelines « projects « bulk_imports « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af39ec7a11ce5f180269716777513a11715a74b6 (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 BulkImports::Projects::Pipelines::RepositoryPipeline do
  describe '#run' do
    let_it_be(:user) { create(:user) }
    let_it_be(:parent) { create(:project) }
    let_it_be(:bulk_import) { create(:bulk_import, user: user) }
    let_it_be(:bulk_import_configuration) { create(:bulk_import_configuration, bulk_import: bulk_import) }

    let_it_be(:entity) do
      create(
        :bulk_import_entity,
        :project_entity,
        bulk_import: bulk_import,
        source_full_path: 'source/full/path',
        destination_name: 'My Destination Repository',
        destination_namespace: parent.full_path,
        project: parent
      )
    end

    let_it_be(:tracker) { create(:bulk_import_tracker, entity: entity) }
    let_it_be(:context) { BulkImports::Pipeline::Context.new(tracker) }

    context 'successfully imports repository' do
      let(:project_data) do
        {
          'httpUrlToRepo' => 'http://test.git'
        }
      end

      subject { described_class.new(context) }

      it 'imports new repository into destination project' do
        allow_next_instance_of(BulkImports::Common::Extractors::GraphqlExtractor) do |extractor|
          allow(extractor).to receive(:extract).and_return(BulkImports::Pipeline::ExtractedData.new(data: project_data))
        end

        expect_next_instance_of(Gitlab::GitalyClient::RepositoryService) do |repository_service|
          url = project_data['httpUrlToRepo'].sub("://", "://oauth2:#{bulk_import_configuration.access_token}@")
          expect(repository_service).to receive(:import_repository).with(url).and_return 0
        end

        subject.run
      end
    end

    context 'blocked local networks' do
      let(:project_data) do
        {
          'httpUrlToRepo' => 'http://localhost/foo.git'
        }
      end

      before do
        allow(Gitlab.config.gitlab).to receive(:host).and_return('notlocalhost.gitlab.com')
        allow(Gitlab::CurrentSettings).to receive(:allow_local_requests_from_web_hooks_and_services?).and_return(false)
        allow_next_instance_of(BulkImports::Common::Extractors::GraphqlExtractor) do |extractor|
          allow(extractor).to receive(:extract).and_return(BulkImports::Pipeline::ExtractedData.new(data: project_data))
        end
      end

      subject { described_class.new(context) }

      it 'imports new repository into destination project' do
        subject.run
        expect(context.entity.failed?).to be_truthy
      end
    end
  end
end