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

wiki_pipeline_examples.rb « pipelines « common « bulk_imports « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c1f505d30087b548415fea30fc116279cff983e (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# frozen_string_literal: true

RSpec.shared_examples 'wiki pipeline imports a wiki for an entity' do
  describe '#run' do
    let_it_be(:bulk_import_configuration) { create(:bulk_import_configuration, bulk_import: bulk_import) }

    let_it_be_with_reload(:tracker) { create(:bulk_import_tracker, entity: entity) }

    let(:context) { BulkImports::Pipeline::Context.new(tracker) }

    let(:extracted_data) { BulkImports::Pipeline::ExtractedData.new(data: {}) }

    subject { described_class.new(context) }

    before do
      allow_next_instance_of(BulkImports::Common::Extractors::GraphqlExtractor) do |extractor|
        allow(extractor).to receive(:extract).and_return(extracted_data)
      end
    end

    context 'when wiki exists' do
      it 'imports new wiki into destination project' do
        expect(subject).to receive(:source_wiki_exists?).and_return(true)

        expect_next_instance_of(Gitlab::GitalyClient::RepositoryService) do |repository_service|
          url = "https://oauth2:token@gitlab.example/#{entity.source_full_path}.wiki.git"
          expect(repository_service).to receive(:fetch_remote).with(url, any_args).and_return 0
        end

        subject.run
      end
    end

    context 'when wiki does not exist' do
      it 'does not import wiki' do
        expect(subject).to receive(:source_wiki_exists?).and_return(false)

        expect(parent.wiki).not_to receive(:create_wiki_repository)
        expect(parent.wiki.repository).not_to receive(:ensure_repository)

        expect { subject.run }.not_to raise_error
      end
    end

    context 'when scheme is blocked' do
      it 'prevents import' do
        # Force bulk_import_configuration to have a file:// URL
        bulk_import_configuration.url = 'file://example.com'
        bulk_import_configuration.save!(validate: false)

        expect(subject).to receive(:source_wiki_exists?).and_return(true)

        subject.run

        expect(tracker.entity.failures.first).to be_present
        expect(tracker.entity.failures.first.exception_message).to eq('Only allowed schemes are http, https')
      end
    end

    context 'when wiki is disabled' do
      before do
        allow_next_instance_of(BulkImports::Clients::HTTP) do |client|
          allow(client)
            .to receive(:get)
            .and_raise(
              BulkImports::NetworkError.new(
                'Unsuccessful response 403 from ...',
                response: response_double
              )
            )
        end
      end

      describe 'unsuccessful response' do
        shared_examples 'does not raise an error' do
          it 'does not raise an error' do
            expect(parent.wiki).not_to receive(:create_wiki_repository)
            expect(parent.wiki.repository).not_to receive(:ensure_repository)

            expect { subject.run }.not_to raise_error
          end
        end

        context 'when response is forbidden' do
          let(:response_double) { instance_double(HTTParty::Response, forbidden?: true, code: 403) }

          include_examples 'does not raise an error'
        end

        context 'when response is not found' do
          let(:response_double) { instance_double(HTTParty::Response, forbidden?: false, not_found?: true) }

          include_examples 'does not raise an error'
        end

        context 'when response is not 403' do
          let(:response_double) { instance_double(HTTParty::Response, forbidden?: false, not_found?: false, code: 301) }

          include_examples 'does not raise an error'
        end
      end
    end
  end
end