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

import_failure_service_spec.rb « import « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c16d4a7c80450ee126ae2ae3eb3e1abeb571929f (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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Import::ImportFailureService, :aggregate_failures do
  let_it_be(:import_type) { 'import_type' }
  let_it_be(:project) { create(:project, :import_started, import_type: import_type) }

  let(:exception) { StandardError.new('some error') }
  let(:arguments) { { project_id: project.id } }
  let(:base_arguments) { { error_source: 'SomeImporter', exception: exception }.merge(arguments) }
  let(:exe_arguments) { { fail_import: false, metrics: false } }

  describe '.track' do
    context 'with all arguments provided' do
      let(:instance) { double(:failure_service) }
      let(:instance_arguments) do
        {
          exception: exception,
          import_state: '_import_state_',
          project_id: '_project_id_',
          error_source: '_error_source_'
        }
      end

      let(:exe_arguments) do
        {
          fail_import: '_fail_import_',
          metrics: '_metrics_'
        }
      end

      it 'invokes a new instance and executes' do
        expect(described_class).to receive(:new).with(**instance_arguments).and_return(instance)
        expect(instance).to receive(:execute).with(**exe_arguments)

        described_class.track(**instance_arguments.merge(exe_arguments))
      end
    end

    context 'with only necessary arguments utilizing defaults' do
      let(:instance) { double(:failure_service) }
      let(:instance_arguments) do
        {
          exception: exception,
          import_state: nil,
          project_id: nil,
          error_source: nil
        }
      end

      let(:exe_arguments) do
        {
          fail_import: false,
          metrics: false
        }
      end

      it 'invokes a new instance and executes' do
        expect(described_class).to receive(:new).with(**instance_arguments).and_return(instance)
        expect(instance).to receive(:execute).with(**exe_arguments)

        described_class.track(exception: exception)
      end
    end
  end

  describe '#execute' do
    subject(:service) { described_class.new(**base_arguments) }

    shared_examples 'logs the exception and fails the import' do
      it 'when the failure does not abort the import' do
        expect(Gitlab::ErrorTracking)
          .to receive(:track_exception)
          .with(
            exception,
            project_id: project.id,
            import_type: import_type,
            source: 'SomeImporter'
          )

        expect(Gitlab::Import::Logger)
          .to receive(:error)
          .with(
            message: 'importer failed',
            'error.message': 'some error',
            project_id: project.id,
            import_type: import_type,
            source: 'SomeImporter'
          )

        service.execute(**exe_arguments)

        expect(project.import_state.reload.status).to eq('failed')

        expect(project.import_failures).not_to be_empty
        expect(project.import_failures.last.exception_class).to eq('StandardError')
        expect(project.import_failures.last.exception_message).to eq('some error')
      end
    end

    shared_examples 'logs the exception and does not fail the import' do
      it 'when the failure does not abort the import' do
        expect(Gitlab::ErrorTracking)
          .to receive(:track_exception)
          .with(
            exception,
            project_id: project.id,
            import_type: import_type,
            source: 'SomeImporter'
          )

        expect(Gitlab::Import::Logger)
          .to receive(:error)
          .with(
            message: 'importer failed',
            'error.message': 'some error',
            project_id: project.id,
            import_type: import_type,
            source: 'SomeImporter'
          )

        service.execute(**exe_arguments)

        expect(project.import_state.reload.status).to eq('started')

        expect(project.import_failures).not_to be_empty
        expect(project.import_failures.last.exception_class).to eq('StandardError')
        expect(project.import_failures.last.exception_message).to eq('some error')
      end
    end

    context 'when tracking metrics' do
      let(:exe_arguments) { { fail_import: false, metrics: true } }

      it 'tracks the failed import' do
        metrics = double(:metrics)

        expect(Gitlab::Import::Metrics).to receive(:new).with("#{project.import_type}_importer", project).and_return(metrics)
        expect(metrics).to receive(:track_failed_import)

        service.execute(**exe_arguments)
      end
    end

    context 'when using the project as reference' do
      context 'when it fails the import' do
        let(:exe_arguments) { { fail_import: true, metrics: false } }

        it_behaves_like 'logs the exception and fails the import'
      end

      context 'when it does not fail the import' do
        it_behaves_like 'logs the exception and does not fail the import'
      end
    end

    context 'when using the import_state as reference' do
      let(:arguments) { { import_state: project.import_state } }

      context 'when it fails the import' do
        let(:exe_arguments) { { fail_import: true, metrics: false } }

        it_behaves_like 'logs the exception and fails the import'
      end

      context 'when it does not fail the import' do
        it_behaves_like 'logs the exception and does not fail the import'
      end
    end
  end
end