summaryrefslogtreecommitdiff
path: root/spec/workers/stuck_import_jobs_worker_spec.rb
blob: e94d2be9850c73824f6b52e8db563541b3116f68 (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
require 'spec_helper'

describe StuckImportJobsWorker do
  let(:worker) { described_class.new }

  shared_examples 'project import job detection' do
    context 'when the job has completed' do
      context 'when the import status was already updated' do
        before do
          allow(Gitlab::SidekiqStatus).to receive(:completed_jids) do
            import_state.start
            import_state.finish

            [import_state.jid]
          end
        end

        it 'does not mark the project as failed' do
          worker.perform

          expect(import_state.reload.status).to eq('finished')
        end
      end

      context 'when the import status was not updated' do
        before do
          allow(Gitlab::SidekiqStatus).to receive(:completed_jids).and_return([import_state.jid])
        end

        it 'marks the project as failed' do
          worker.perform

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

    context 'when the job is still in Sidekiq' do
      before do
        allow(Gitlab::SidekiqStatus).to receive(:completed_jids).and_return([])
      end

      it 'does not mark the project as failed' do
        expect { worker.perform }.not_to change { import_state.reload.status }
      end
    end
  end

  describe 'with scheduled import_status' do
    it_behaves_like 'project import job detection' do
      let(:import_state) { create(:project, :import_scheduled).import_state }

      before do
        import_state.update(jid: '123')
      end
    end
  end

  describe 'with started import_status' do
    it_behaves_like 'project import job detection' do
      let(:import_state) { create(:project, :import_started).import_state }

      before do
        import_state.update(jid: '123')
      end
    end
  end
end