37 lines
856 B
Ruby
37 lines
856 B
Ruby
|
require 'spec_helper'
|
||
|
|
||
|
describe Deployments::SuccessWorker do
|
||
|
subject { described_class.new.perform(deployment&.id) }
|
||
|
|
||
|
context 'when successful deployment' do
|
||
|
let(:deployment) { create(:deployment, :success) }
|
||
|
|
||
|
it 'executes UpdateDeploymentService' do
|
||
|
expect(UpdateDeploymentService)
|
||
|
.to receive(:new).with(deployment).and_call_original
|
||
|
|
||
|
subject
|
||
|
end
|
||
|
end
|
||
|
|
||
|
context 'when canceled deployment' do
|
||
|
let(:deployment) { create(:deployment, :canceled) }
|
||
|
|
||
|
it 'does not execute UpdateDeploymentService' do
|
||
|
expect(UpdateDeploymentService).not_to receive(:new)
|
||
|
|
||
|
subject
|
||
|
end
|
||
|
end
|
||
|
|
||
|
context 'when deploy record does not exist' do
|
||
|
let(:deployment) { nil }
|
||
|
|
||
|
it 'does not execute UpdateDeploymentService' do
|
||
|
expect(UpdateDeploymentService).not_to receive(:new)
|
||
|
|
||
|
subject
|
||
|
end
|
||
|
end
|
||
|
end
|