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

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

require 'spec_helper'

RSpec.describe BulkImports::StuckImportWorker, feature_category: :importers do
  let_it_be(:created_bulk_import) { create(:bulk_import, :created) }
  let_it_be(:started_bulk_import) { create(:bulk_import, :started) }
  let_it_be(:stale_created_bulk_import) { create(:bulk_import, :created, created_at: 3.days.ago) }
  let_it_be(:stale_started_bulk_import) { create(:bulk_import, :started, created_at: 3.days.ago) }
  let_it_be(:stale_created_bulk_import_entity) { create(:bulk_import_entity, :created, created_at: 3.days.ago) }
  let_it_be(:stale_started_bulk_import_entity) { create(:bulk_import_entity, :started, created_at: 3.days.ago) }

  let_it_be(:started_bulk_import_tracker) do
    create(:bulk_import_tracker, :started, entity: stale_started_bulk_import_entity)
  end

  subject { described_class.new.perform }

  describe 'perform' do
    it 'updates the status of bulk imports to timeout' do
      expect_next_instance_of(BulkImports::Logger) do |logger|
        allow(logger).to receive(:error)
        expect(logger).to receive(:error).with(
          message: 'BulkImport stale',
          bulk_import_id: stale_created_bulk_import.id
        )
        expect(logger).to receive(:error).with(
          message: 'BulkImport stale',
          bulk_import_id: stale_started_bulk_import.id
        )
      end

      expect { subject }.to change { stale_created_bulk_import.reload.status_name }.from(:created).to(:timeout)
                        .and change { stale_started_bulk_import.reload.status_name }.from(:started).to(:timeout)
    end

    it 'updates the status of bulk import entities to timeout' do
      expect_next_instance_of(BulkImports::Logger) do |logger|
        allow(logger).to receive(:error)
        expect(logger).to receive(:error).with(
          message: 'BulkImports::Entity stale',
          bulk_import_entity_id: stale_created_bulk_import_entity.id,
          bulk_import_id: stale_created_bulk_import_entity.bulk_import_id
        )
        expect(logger).to receive(:error).with(
          message: 'BulkImports::Entity stale',
          bulk_import_entity_id: stale_started_bulk_import_entity.id,
          bulk_import_id: stale_started_bulk_import_entity.bulk_import_id
        )
      end

      expect { subject }.to change { stale_created_bulk_import_entity.reload.status_name }.from(:created).to(:timeout)
                        .and change { stale_started_bulk_import_entity.reload.status_name }.from(:started).to(:timeout)
    end

    it 'updates the status of stale entities trackers to timeout' do
      expect { subject }.to change { started_bulk_import_tracker.reload.status_name }.from(:started).to(:timeout)
    end

    it 'does not update the status of non-stale records' do
      expect { subject }.to not_change { created_bulk_import.reload.status }
                        .and not_change { started_bulk_import.reload.status }
    end
  end
end