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

graphql_spec.rb « clients « bulk_imports « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 58e6992698c307daf9d6c3358514df25396a1b0f (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe BulkImports::Clients::Graphql, feature_category: :importers do
  let_it_be(:config) { create(:bulk_import_configuration) }

  subject { described_class.new(url: config.url, token: config.access_token) }

  describe '#execute' do
    let(:query) { '{ metadata { version } }' }
    let(:graphql_client_double) { double }
    let(:response_double) { double }
    let(:version) { '14.0.0' }

    before do
      stub_const('BulkImports::MINIMUM_COMPATIBLE_MAJOR_VERSION', version)
    end

    describe 'source instance validation' do
      before do
        allow(graphql_client_double).to receive(:execute)
        allow(subject).to receive(:client).and_return(graphql_client_double)
        allow(graphql_client_double).to receive(:execute).with(query).and_return(response_double)
        allow(response_double).to receive_message_chain(:data, :metadata, :version).and_return(version)
      end

      context 'when source instance is compatible' do
        it 'marks source instance as compatible' do
          subject.execute('test')

          expect(subject.instance_variable_get(:@compatible_instance_version)).to eq(true)
        end
      end

      context 'when source instance is incompatible' do
        let(:version) { '13.0.0' }

        it 'raises an error' do
          expect { subject.execute('test') }.to raise_error(::BulkImports::Error, "Unsupported GitLab version. Source instance must run GitLab version #{BulkImport::MIN_MAJOR_VERSION} or later.")
        end
      end
    end

    describe 'network errors' do
      before do
        allow(Gitlab::HTTP)
          .to receive(:post)
          .and_return(response_double)
      end

      context 'when response cannot be parsed' do
        let(:response_double) { instance_double(HTTParty::Response, body: 'invalid', success?: true) }

        it 'raises network error' do
          expect { subject.execute('test') }.to raise_error(BulkImports::NetworkError, /unexpected character/)
        end
      end

      context 'when response is unsuccessful' do
        let(:response_double) { instance_double(HTTParty::Response, success?: false, code: 503) }

        it 'raises network error' do
          allow(response_double).to receive_message_chain(:request, :path, :path).and_return('foo/bar')

          expect { subject.execute('test') }.to raise_error(BulkImports::NetworkError, 'Unsuccessful response 503 from foo/bar')
        end
      end
    end
  end
end