summaryrefslogtreecommitdiff
path: root/spec/workers/stage_update_worker_spec.rb
blob: dc7158cfd2fb443815eeb1d0c295159272d16614 (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

require 'spec_helper'

describe StageUpdateWorker do
  describe '#perform' do
    context 'when stage exists' do
      let(:stage) { create(:ci_stage_entity) }

      it 'updates stage status' do
        expect_any_instance_of(Ci::Stage).to receive(:set_status).with('skipped')

        described_class.new.perform(stage.id)
      end

      it_behaves_like 'an idempotent worker' do
        let(:job_args) { [stage.id] }

        it 'results in the stage getting the skipped status' do
          expect { subject }.to change { stage.reload.status }.from('pending').to('skipped')
          expect { subject }.not_to change { stage.reload.status }
        end
      end
    end

    context 'when stage does not exist' do
      it 'does not raise exception' do
        expect { described_class.new.perform(123) }
          .not_to raise_error
      end
    end
  end
end