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

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

shared_examples 'include import workers modules' do
  it { expect(described_class).to include_module(ApplicationWorker) }
  it { expect(described_class).to include_module(Gitlab::JiraImport::QueueOptions) }

  if described_class == Gitlab::JiraImport::Stage::StartImportWorker
    it { expect(described_class).to include_module(ProjectStartImport) }
    it { expect(described_class).to include_module(ProjectImportOptions) }
  else
    it { expect(described_class).to include_module(Gitlab::JiraImport::ImportWorker) }
  end
end

shared_examples 'exit import not started' do
  it 'does nothing, and exits' do
    expect(Gitlab::JiraImport::AdvanceStageWorker).not_to receive(:perform_async)

    worker.perform(project.id)
  end
end

shared_examples 'advance to next stage' do |next_stage|
  let(:job_waiter) { Gitlab::JobWaiter.new(2, 'some-job-key') }

  it "advances to #{next_stage} stage" do
    expect(Gitlab::JobWaiter).to receive(:new).and_return(job_waiter)
    expect(Gitlab::JiraImport::AdvanceStageWorker).to receive(:perform_async).with(project.id, { job_waiter.key => job_waiter.jobs_remaining }, next_stage.to_sym)

    worker.perform(project.id)
  end
end