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

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

require 'spec_helper'

RSpec.describe Gitlab::JiraImport::Stage::StartImportWorker do
  let_it_be(:project) { create(:project, import_type: 'jira') }
  let_it_be(:jid) { '12345678' }
  let(:worker) { described_class.new }

  describe 'modules' do
    it_behaves_like 'include import workers modules'
  end

  describe '#perform' do
    let_it_be(:jira_import, reload: true) { create(:jira_import_state, project: project, jid: jid) }

    context 'when import is not scheduled' do
      it 'exits because import not started' do
        expect(Gitlab::JiraImport::Stage::ImportLabelsWorker).not_to receive(:perform_async)

        worker.perform(project.id)
      end
    end

    context 'when import is scheduled' do
      before do
        jira_import.schedule!
      end

      it 'advances to importing labels' do
        expect(Gitlab::JiraImport::Stage::ImportLabelsWorker).to receive(:perform_async)

        worker.perform(project.id)
      end
    end

    context 'when import is started' do
      before do
        jira_import.update!(status: :started)
      end

      context 'when this is the same worker that stated import' do
        it 'advances to importing labels' do
          allow(worker).to receive(:jid).and_return(jid)
          expect(Gitlab::JiraImport::Stage::ImportLabelsWorker).to receive(:perform_async)

          worker.perform(project.id)
        end
      end

      context 'when this is a different worker that stated import' do
        it 'advances to importing labels' do
          allow(worker).to receive(:jid).and_return('87654321')
          expect(Gitlab::JiraImport::Stage::ImportLabelsWorker).not_to receive(:perform_async)

          worker.perform(project.id)
        end
      end
    end

    context 'when import is finished' do
      before do
        jira_import.update!(status: :finished)
      end

      it 'advances to importing labels' do
        allow(worker).to receive(:jid).and_return(jid)
        expect(Gitlab::JiraImport::Stage::ImportLabelsWorker).not_to receive(:perform_async)

        worker.perform(project.id)
      end
    end
  end
end