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

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

# This shared_example requires the following variables:
# - job_args (if not given, will fallback to call perform without arguments)
#
# Usage:
#
#   include_examples 'an idempotent worker' do
#     it 'checks the side-effects for multiple calls' do
#       # it'll call the job's perform method 3 times
#       # by default.
#       subject
#
#       expect(model.state).to eq('state')
#     end
#   end
#
RSpec.shared_examples 'an idempotent worker' do
  let(:worker_exec_times) { IdempotentWorkerHelper::WORKER_EXEC_TIMES }

  # Avoid stubbing calls for a more accurate run.
  subject do
    defined?(job_args) ? perform_multiple(job_args) : perform_multiple
  end

  it 'is labeled as idempotent' do
    expect(described_class).to be_idempotent
  end

  it 'performs multiple times sequentially without raising an exception' do
    expect { subject }.not_to raise_error
  end
end