2017-07-20 11:12:06 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe TestHooks::ProjectService do
|
|
|
|
let(:current_user) { create(:user) }
|
|
|
|
|
|
|
|
describe '#execute' do
|
|
|
|
let(:project) { create(:project, :repository) }
|
|
|
|
let(:hook) { create(:project_hook, project: project) }
|
|
|
|
let(:service) { described_class.new(hook, current_user, trigger) }
|
|
|
|
let(:sample_data) { { data: 'sample' } }
|
|
|
|
let(:success_result) { { status: :success, http_status: 200, message: 'ok' } }
|
|
|
|
|
|
|
|
context 'hook with not implemented test' do
|
|
|
|
let(:trigger) { 'not_implemented_events' }
|
|
|
|
|
|
|
|
it 'returns error message' do
|
|
|
|
expect(hook).not_to receive(:execute)
|
|
|
|
expect(service.execute).to include({ status: :error, message: 'Testing not available for this hook' })
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'push_events' do
|
|
|
|
let(:trigger) { 'push_events' }
|
2017-09-07 07:29:12 -04:00
|
|
|
let(:trigger_key) { :push_hooks }
|
2017-07-20 11:12:06 -04:00
|
|
|
|
|
|
|
it 'returns error message if not enough data' do
|
|
|
|
allow(project).to receive(:empty_repo?).and_return(true)
|
|
|
|
|
|
|
|
expect(hook).not_to receive(:execute)
|
|
|
|
expect(service.execute).to include({ status: :error, message: 'Ensure the project has at least one commit.' })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'executes hook' do
|
|
|
|
allow(project).to receive(:empty_repo?).and_return(false)
|
|
|
|
allow(Gitlab::DataBuilder::Push).to receive(:build_sample).and_return(sample_data)
|
|
|
|
|
2017-09-07 07:29:12 -04:00
|
|
|
expect(hook).to receive(:execute).with(sample_data, trigger_key).and_return(success_result)
|
2017-07-20 11:12:06 -04:00
|
|
|
expect(service.execute).to include(success_result)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'tag_push_events' do
|
|
|
|
let(:trigger) { 'tag_push_events' }
|
2017-09-07 07:29:12 -04:00
|
|
|
let(:trigger_key) { :tag_push_hooks }
|
2017-07-20 11:12:06 -04:00
|
|
|
|
|
|
|
it 'returns error message if not enough data' do
|
|
|
|
allow(project).to receive(:empty_repo?).and_return(true)
|
|
|
|
|
|
|
|
expect(hook).not_to receive(:execute)
|
|
|
|
expect(service.execute).to include({ status: :error, message: 'Ensure the project has at least one commit.' })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'executes hook' do
|
|
|
|
allow(project).to receive(:empty_repo?).and_return(false)
|
|
|
|
allow(Gitlab::DataBuilder::Push).to receive(:build_sample).and_return(sample_data)
|
|
|
|
|
2017-09-07 07:29:12 -04:00
|
|
|
expect(hook).to receive(:execute).with(sample_data, trigger_key).and_return(success_result)
|
2017-07-20 11:12:06 -04:00
|
|
|
expect(service.execute).to include(success_result)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'note_events' do
|
|
|
|
let(:trigger) { 'note_events' }
|
2017-09-07 07:29:12 -04:00
|
|
|
let(:trigger_key) { :note_hooks }
|
2017-07-20 11:12:06 -04:00
|
|
|
|
|
|
|
it 'returns error message if not enough data' do
|
|
|
|
expect(hook).not_to receive(:execute)
|
|
|
|
expect(service.execute).to include({ status: :error, message: 'Ensure the project has notes.' })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'executes hook' do
|
|
|
|
allow(project).to receive(:notes).and_return([Note.new])
|
|
|
|
allow(Gitlab::DataBuilder::Note).to receive(:build).and_return(sample_data)
|
|
|
|
|
2017-09-07 07:29:12 -04:00
|
|
|
expect(hook).to receive(:execute).with(sample_data, trigger_key).and_return(success_result)
|
2017-07-20 11:12:06 -04:00
|
|
|
expect(service.execute).to include(success_result)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'issues_events' do
|
|
|
|
let(:trigger) { 'issues_events' }
|
2017-09-07 07:29:12 -04:00
|
|
|
let(:trigger_key) { :issue_hooks }
|
2017-07-20 11:12:06 -04:00
|
|
|
let(:issue) { build(:issue) }
|
|
|
|
|
|
|
|
it 'returns error message if not enough data' do
|
|
|
|
expect(hook).not_to receive(:execute)
|
|
|
|
expect(service.execute).to include({ status: :error, message: 'Ensure the project has issues.' })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'executes hook' do
|
|
|
|
allow(project).to receive(:issues).and_return([issue])
|
|
|
|
allow(issue).to receive(:to_hook_data).and_return(sample_data)
|
|
|
|
|
2017-09-07 07:29:12 -04:00
|
|
|
expect(hook).to receive(:execute).with(sample_data, trigger_key).and_return(success_result)
|
2017-07-20 11:12:06 -04:00
|
|
|
expect(service.execute).to include(success_result)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'confidential_issues_events' do
|
|
|
|
let(:trigger) { 'confidential_issues_events' }
|
2017-09-07 07:29:12 -04:00
|
|
|
let(:trigger_key) { :confidential_issue_hooks }
|
2017-07-20 11:12:06 -04:00
|
|
|
let(:issue) { build(:issue) }
|
|
|
|
|
|
|
|
it 'returns error message if not enough data' do
|
|
|
|
expect(hook).not_to receive(:execute)
|
|
|
|
expect(service.execute).to include({ status: :error, message: 'Ensure the project has issues.' })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'executes hook' do
|
|
|
|
allow(project).to receive(:issues).and_return([issue])
|
|
|
|
allow(issue).to receive(:to_hook_data).and_return(sample_data)
|
|
|
|
|
2017-09-07 07:29:12 -04:00
|
|
|
expect(hook).to receive(:execute).with(sample_data, trigger_key).and_return(success_result)
|
2017-07-20 11:12:06 -04:00
|
|
|
expect(service.execute).to include(success_result)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'merge_requests_events' do
|
|
|
|
let(:trigger) { 'merge_requests_events' }
|
2017-09-07 07:29:12 -04:00
|
|
|
let(:trigger_key) { :merge_request_hooks }
|
2017-07-20 11:12:06 -04:00
|
|
|
|
|
|
|
it 'returns error message if not enough data' do
|
|
|
|
expect(hook).not_to receive(:execute)
|
|
|
|
expect(service.execute).to include({ status: :error, message: 'Ensure the project has merge requests.' })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'executes hook' do
|
|
|
|
create(:merge_request, source_project: project)
|
|
|
|
allow_any_instance_of(MergeRequest).to receive(:to_hook_data).and_return(sample_data)
|
|
|
|
|
2017-09-07 07:29:12 -04:00
|
|
|
expect(hook).to receive(:execute).with(sample_data, trigger_key).and_return(success_result)
|
2017-07-20 11:12:06 -04:00
|
|
|
expect(service.execute).to include(success_result)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'job_events' do
|
|
|
|
let(:trigger) { 'job_events' }
|
2017-09-07 07:29:12 -04:00
|
|
|
let(:trigger_key) { :job_hooks }
|
2017-07-20 11:12:06 -04:00
|
|
|
|
|
|
|
it 'returns error message if not enough data' do
|
|
|
|
expect(hook).not_to receive(:execute)
|
|
|
|
expect(service.execute).to include({ status: :error, message: 'Ensure the project has CI jobs.' })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'executes hook' do
|
|
|
|
create(:ci_build, project: project)
|
|
|
|
allow(Gitlab::DataBuilder::Build).to receive(:build).and_return(sample_data)
|
|
|
|
|
2017-09-07 07:29:12 -04:00
|
|
|
expect(hook).to receive(:execute).with(sample_data, trigger_key).and_return(success_result)
|
2017-07-20 11:12:06 -04:00
|
|
|
expect(service.execute).to include(success_result)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'pipeline_events' do
|
|
|
|
let(:trigger) { 'pipeline_events' }
|
2017-09-07 07:29:12 -04:00
|
|
|
let(:trigger_key) { :pipeline_hooks }
|
2017-07-20 11:12:06 -04:00
|
|
|
|
|
|
|
it 'returns error message if not enough data' do
|
|
|
|
expect(hook).not_to receive(:execute)
|
|
|
|
expect(service.execute).to include({ status: :error, message: 'Ensure the project has CI pipelines.' })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'executes hook' do
|
|
|
|
create(:ci_empty_pipeline, project: project)
|
|
|
|
allow(Gitlab::DataBuilder::Pipeline).to receive(:build).and_return(sample_data)
|
|
|
|
|
2017-09-07 07:29:12 -04:00
|
|
|
expect(hook).to receive(:execute).with(sample_data, trigger_key).and_return(success_result)
|
2017-07-20 11:12:06 -04:00
|
|
|
expect(service.execute).to include(success_result)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'wiki_page_events' do
|
|
|
|
let(:trigger) { 'wiki_page_events' }
|
2017-09-07 07:29:12 -04:00
|
|
|
let(:trigger_key) { :wiki_page_hooks }
|
2017-07-20 11:12:06 -04:00
|
|
|
|
|
|
|
it 'returns error message if wiki disabled' do
|
|
|
|
allow(project).to receive(:wiki_enabled?).and_return(false)
|
|
|
|
|
|
|
|
expect(hook).not_to receive(:execute)
|
|
|
|
expect(service.execute).to include({ status: :error, message: 'Ensure the wiki is enabled and has pages.' })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns error message if not enough data' do
|
|
|
|
expect(hook).not_to receive(:execute)
|
|
|
|
expect(service.execute).to include({ status: :error, message: 'Ensure the wiki is enabled and has pages.' })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'executes hook' do
|
|
|
|
create(:wiki_page, wiki: project.wiki)
|
|
|
|
allow(Gitlab::DataBuilder::WikiPage).to receive(:build).and_return(sample_data)
|
|
|
|
|
2017-09-07 07:29:12 -04:00
|
|
|
expect(hook).to receive(:execute).with(sample_data, trigger_key).and_return(success_result)
|
2017-07-20 11:12:06 -04:00
|
|
|
expect(service.execute).to include(success_result)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|