debian-mirror-gitlab/spec/workers/stage_update_worker_spec.rb

34 lines
907 B
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe StageUpdateWorker do
2018-03-17 18:26:18 +05:30
describe '#perform' do
context 'when stage exists' do
let(:stage) { create(:ci_stage_entity) }
it 'updates stage status' do
2020-03-13 15:44:24 +05:30
expect_any_instance_of(Ci::Stage).to receive(:set_status).with('skipped')
2018-03-17 18:26:18 +05:30
described_class.new.perform(stage.id)
end
2020-05-24 23:13:21 +05:30
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
2018-03-17 18:26:18 +05:30
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