debian-mirror-gitlab/spec/workers/merge_requests/create_pipeline_worker_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

87 lines
2.6 KiB
Ruby
Raw Normal View History

2021-04-29 21:17:54 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe MergeRequests::CreatePipelineWorker do
describe '#perform' do
let(:user) { create(:user) }
let(:project) { create(:project) }
let(:merge_request) { create(:merge_request) }
2022-07-23 23:45:48 +05:30
let(:worker) { described_class.new }
subject { worker.perform(project.id, user.id, merge_request.id) }
2021-04-29 21:17:54 +05:30
context 'when the objects exist' do
it 'calls the merge request create pipeline service and calls update head pipeline' do
aggregate_failures do
2022-07-23 23:45:48 +05:30
expect_next_instance_of(MergeRequests::CreatePipelineService,
project: project,
current_user: user,
params: { push_options: nil }) do |service|
2021-04-29 21:17:54 +05:30
expect(service).to receive(:execute).with(merge_request)
end
expect(MergeRequest).to receive(:find_by_id).with(merge_request.id).and_return(merge_request)
expect(merge_request).to receive(:update_head_pipeline)
2022-07-23 23:45:48 +05:30
subject
end
end
context 'when push options are passed as Hash to the worker' do
let(:extra_params) { { 'push_options' => { 'ci' => { 'skip' => true } } } }
subject { worker.perform(project.id, user.id, merge_request.id, extra_params) }
it 'calls the merge request create pipeline service and calls update head pipeline' do
aggregate_failures do
expect_next_instance_of(MergeRequests::CreatePipelineService,
project: project,
current_user: user,
params: { push_options: { ci: { skip: true } } }) do |service|
expect(service).to receive(:execute).with(merge_request)
end
expect(MergeRequest).to receive(:find_by_id).with(merge_request.id).and_return(merge_request)
expect(merge_request).to receive(:update_head_pipeline)
subject
end
2021-04-29 21:17:54 +05:30
end
end
end
shared_examples 'when object does not exist' do
it 'does not call the create pipeline service' do
expect(MergeRequests::CreatePipelineService).not_to receive(:new)
2022-07-23 23:45:48 +05:30
expect { subject }.not_to raise_exception
2021-04-29 21:17:54 +05:30
end
end
context 'when the project does not exist' do
before do
project.destroy!
end
it_behaves_like 'when object does not exist'
end
context 'when the user does not exist' do
before do
user.destroy!
end
it_behaves_like 'when object does not exist'
end
context 'when the merge request does not exist' do
before do
merge_request.destroy!
end
it_behaves_like 'when object does not exist'
end
end
end