2019-03-30 03:15:48 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2011-12-14 11:38:52 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe PostReceive do
|
2015-03-15 10:42:31 -04:00
|
|
|
let(:changes) { "123456 789012 refs/heads/tést\n654321 210987 refs/tags/tag" }
|
|
|
|
let(:wrongly_encoded_changes) { changes.encode("ISO-8859-1").force_encoding("UTF-8") }
|
|
|
|
let(:base64_changes) { Base64.encode64(wrongly_encoded_changes) }
|
2017-06-19 18:37:15 -04:00
|
|
|
let(:gl_repository) { "project-#{project.id}" }
|
2016-04-11 06:46:19 -04:00
|
|
|
let(:key) { create(:key, user: project.owner) }
|
2018-10-22 09:18:45 -04:00
|
|
|
let!(:key_id) { key.shell_id }
|
2015-08-28 04:23:56 -04:00
|
|
|
|
2017-05-02 09:27:24 -04:00
|
|
|
let(:project) do
|
|
|
|
create(:project, :repository, auto_cancel_pending_pipelines: 'disabled')
|
|
|
|
end
|
|
|
|
|
2017-05-02 22:36:13 -04:00
|
|
|
context "as a sidekiq worker" do
|
2017-05-02 09:27:24 -04:00
|
|
|
it "responds to #perform" do
|
2017-05-01 11:13:33 -04:00
|
|
|
expect(described_class.new).to respond_to(:perform)
|
2011-12-14 11:38:52 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-02 17:15:12 -04:00
|
|
|
context 'with a non-existing project' do
|
2017-06-19 18:37:15 -04:00
|
|
|
let(:gl_repository) { "project-123456789" }
|
2017-05-02 17:15:12 -04:00
|
|
|
let(:error_message) do
|
2017-06-19 18:37:15 -04:00
|
|
|
"Triggered hook for non-existing project with gl_repository \"#{gl_repository}\""
|
2017-05-02 17:15:12 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns false and logs an error" do
|
|
|
|
expect(Gitlab::GitLogger).to receive(:error).with("POST-RECEIVE: #{error_message}")
|
2017-06-19 18:37:15 -04:00
|
|
|
expect(described_class.new.perform(gl_repository, key_id, base64_changes)).to be(false)
|
2017-05-02 17:15:12 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-11 06:46:19 -04:00
|
|
|
describe "#process_project_changes" do
|
2018-10-22 09:18:45 -04:00
|
|
|
context 'empty changes' do
|
|
|
|
it "does not call any PushService but runs after project hooks" do
|
2019-03-22 13:01:48 -04:00
|
|
|
expect(Git::BranchPushService).not_to receive(:new)
|
2019-03-22 12:44:14 -04:00
|
|
|
expect(Git::TagPushService).not_to receive(:new)
|
2018-10-22 09:18:45 -04:00
|
|
|
expect_next_instance_of(SystemHooksService) { |service| expect(service).to receive(:execute_hooks) }
|
|
|
|
|
|
|
|
described_class.new.perform(gl_repository, key_id, "")
|
|
|
|
end
|
2016-04-11 06:46:19 -04:00
|
|
|
end
|
2012-03-01 10:43:04 -05:00
|
|
|
|
2018-10-25 06:09:53 -04:00
|
|
|
context 'unidentified user' do
|
|
|
|
let!(:key_id) { "" }
|
|
|
|
|
|
|
|
it 'returns false' do
|
2019-03-22 13:01:48 -04:00
|
|
|
expect(Git::BranchPushService).not_to receive(:new)
|
2019-03-22 12:44:14 -04:00
|
|
|
expect(Git::TagPushService).not_to receive(:new)
|
2018-10-25 06:09:53 -04:00
|
|
|
|
|
|
|
expect(described_class.new.perform(gl_repository, key_id, base64_changes)).to be false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-22 09:18:45 -04:00
|
|
|
context 'with changes' do
|
|
|
|
before do
|
|
|
|
allow_any_instance_of(Gitlab::GitPostReceive).to receive(:identify).and_return(project.owner)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "branches" do
|
|
|
|
let(:changes) { "123456 789012 refs/heads/tést" }
|
2016-04-11 06:46:19 -04:00
|
|
|
|
2019-03-22 13:01:48 -04:00
|
|
|
it "calls Git::BranchPushService" do
|
2019-03-28 10:59:24 -04:00
|
|
|
expect_next_instance_of(Git::BranchPushService) do |service|
|
|
|
|
expect(service).to receive(:execute).and_return(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(Git::TagPushService).not_to receive(:new)
|
|
|
|
|
2018-10-22 09:18:45 -04:00
|
|
|
described_class.new.perform(gl_repository, key_id, base64_changes)
|
|
|
|
end
|
2016-04-11 06:46:19 -04:00
|
|
|
end
|
|
|
|
|
2018-10-22 09:18:45 -04:00
|
|
|
context "tags" do
|
|
|
|
let(:changes) { "123456 789012 refs/tags/tag" }
|
2016-04-11 06:46:19 -04:00
|
|
|
|
2019-03-22 12:44:14 -04:00
|
|
|
it "calls Git::TagPushService" do
|
2019-03-28 10:59:24 -04:00
|
|
|
expect(Git::BranchPushService).not_to receive(:execute)
|
|
|
|
|
|
|
|
expect_next_instance_of(Git::TagPushService) do |service|
|
|
|
|
expect(service).to receive(:execute).and_return(true)
|
|
|
|
end
|
|
|
|
|
2018-10-22 09:18:45 -04:00
|
|
|
described_class.new.perform(gl_repository, key_id, base64_changes)
|
|
|
|
end
|
2016-04-11 06:46:19 -04:00
|
|
|
end
|
|
|
|
|
2018-10-22 09:18:45 -04:00
|
|
|
context "merge-requests" do
|
|
|
|
let(:changes) { "123456 789012 refs/merge-requests/123" }
|
2016-04-11 06:46:19 -04:00
|
|
|
|
2018-10-22 09:18:45 -04:00
|
|
|
it "does not call any of the services" do
|
2019-03-28 10:59:24 -04:00
|
|
|
expect(Git::BranchPushService).not_to receive(:new)
|
|
|
|
expect(Git::TagPushService).not_to receive(:new)
|
|
|
|
|
2018-10-22 09:18:45 -04:00
|
|
|
described_class.new.perform(gl_repository, key_id, base64_changes)
|
|
|
|
end
|
2016-04-11 06:46:19 -04:00
|
|
|
end
|
2016-05-19 14:48:57 -04:00
|
|
|
|
2018-10-22 09:18:45 -04:00
|
|
|
context "gitlab-ci.yml" do
|
2019-04-10 05:04:51 -04:00
|
|
|
let(:changes) do
|
|
|
|
<<-EOF.strip_heredoc
|
|
|
|
123456 789012 refs/heads/feature
|
|
|
|
654321 210987 refs/tags/tag
|
|
|
|
123456 789012 refs/heads/feature2
|
|
|
|
123458 789013 refs/heads/feature3
|
|
|
|
123459 789015 refs/heads/feature4
|
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:changes_count) { changes.lines.count }
|
2017-10-10 04:11:19 -04:00
|
|
|
|
2018-10-22 09:18:45 -04:00
|
|
|
subject { described_class.new.perform(gl_repository, key_id, base64_changes) }
|
2016-05-19 14:48:57 -04:00
|
|
|
|
2019-04-10 05:04:51 -04:00
|
|
|
context "with valid .gitlab-ci.yml" do
|
2018-10-22 09:18:45 -04:00
|
|
|
before do
|
|
|
|
stub_ci_pipeline_to_return_yaml_file
|
|
|
|
|
|
|
|
allow_any_instance_of(Project)
|
|
|
|
.to receive(:commit)
|
|
|
|
.and_return(project.commit)
|
2017-09-26 03:36:45 -04:00
|
|
|
|
2018-10-22 09:18:45 -04:00
|
|
|
allow_any_instance_of(Repository)
|
|
|
|
.to receive(:branch_exists?)
|
|
|
|
.and_return(true)
|
|
|
|
end
|
2017-09-26 03:36:45 -04:00
|
|
|
|
2019-04-10 05:04:51 -04:00
|
|
|
context 'when git_push_create_all_pipelines is disabled' do
|
|
|
|
before do
|
|
|
|
stub_feature_flags(git_push_create_all_pipelines: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "creates pipeline for branches and tags" do
|
|
|
|
subject
|
|
|
|
|
|
|
|
expect(Ci::Pipeline.pluck(:ref)).to contain_exactly("feature", "tag", "feature2", "feature3")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "creates exactly #{described_class::PIPELINE_PROCESS_LIMIT} pipelines" do
|
|
|
|
expect(changes_count).to be > described_class::PIPELINE_PROCESS_LIMIT
|
|
|
|
|
|
|
|
expect { subject }.to change { Ci::Pipeline.count }.by(described_class::PIPELINE_PROCESS_LIMIT)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when git_push_create_all_pipelines is enabled' do
|
|
|
|
before do
|
|
|
|
stub_feature_flags(git_push_create_all_pipelines: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "creates all pipelines" do
|
|
|
|
expect { subject }.to change { Ci::Pipeline.count }.by(changes_count)
|
|
|
|
end
|
|
|
|
end
|
2016-08-11 09:22:35 -04:00
|
|
|
end
|
2016-05-19 14:48:57 -04:00
|
|
|
|
2018-10-22 09:18:45 -04:00
|
|
|
context "does not create a Ci::Pipeline" do
|
|
|
|
before do
|
|
|
|
stub_ci_pipeline_yaml_file(nil)
|
|
|
|
end
|
2016-05-19 14:48:57 -04:00
|
|
|
|
2018-10-22 09:18:45 -04:00
|
|
|
it { expect { subject }.not_to change { Ci::Pipeline.count } }
|
2017-06-14 14:18:56 -04:00
|
|
|
end
|
2016-05-19 14:48:57 -04:00
|
|
|
end
|
2016-04-11 06:46:19 -04:00
|
|
|
|
2018-10-22 09:18:45 -04:00
|
|
|
context 'after project changes hooks' do
|
|
|
|
let(:changes) { '123456 789012 refs/heads/tést' }
|
|
|
|
let(:fake_hook_data) { Hash.new(event_name: 'repository_update') }
|
2017-05-02 22:36:13 -04:00
|
|
|
|
2018-10-22 09:18:45 -04:00
|
|
|
before do
|
|
|
|
allow_any_instance_of(Gitlab::DataBuilder::Repository).to receive(:update).and_return(fake_hook_data)
|
|
|
|
# silence hooks so we can isolate
|
|
|
|
allow_any_instance_of(Key).to receive(:post_create_hook).and_return(true)
|
2019-03-28 10:59:24 -04:00
|
|
|
expect_next_instance_of(Git::BranchPushService) do |service|
|
|
|
|
expect(service).to receive(:execute).and_return(true)
|
|
|
|
end
|
2018-10-22 09:18:45 -04:00
|
|
|
end
|
2017-05-02 22:36:13 -04:00
|
|
|
|
2018-10-22 09:18:45 -04:00
|
|
|
it 'calls SystemHooksService' do
|
|
|
|
expect_any_instance_of(SystemHooksService).to receive(:execute_hooks).with(fake_hook_data, :repository_update_hooks).and_return(true)
|
2017-05-02 22:36:13 -04:00
|
|
|
|
2018-10-22 09:18:45 -04:00
|
|
|
described_class.new.perform(gl_repository, key_id, base64_changes)
|
|
|
|
end
|
2017-06-05 19:37:52 -04:00
|
|
|
end
|
2017-05-02 22:36:13 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-07 15:16:14 -05:00
|
|
|
describe '#process_wiki_changes' do
|
|
|
|
let(:gl_repository) { "wiki-#{project.id}" }
|
|
|
|
|
|
|
|
it 'updates project activity' do
|
2019-02-07 01:21:24 -05:00
|
|
|
# Force Project#set_timestamps_for_create to initialize timestamps
|
|
|
|
project
|
2018-03-07 15:16:14 -05:00
|
|
|
|
2019-02-07 01:21:24 -05:00
|
|
|
# MySQL drops milliseconds in the timestamps, so advance at least
|
|
|
|
# a second to ensure we see changes.
|
|
|
|
Timecop.freeze(1.second.from_now) do
|
|
|
|
expect do
|
|
|
|
described_class.new.perform(gl_repository, key_id, base64_changes)
|
|
|
|
project.reload
|
|
|
|
end.to change(project, :last_activity_at)
|
|
|
|
.and change(project, :last_repository_updated_at)
|
|
|
|
end
|
2018-03-07 15:16:14 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-11 06:46:19 -04:00
|
|
|
context "webhook" do
|
2012-03-01 10:43:04 -05:00
|
|
|
it "fetches the correct project" do
|
2017-05-02 17:15:12 -04:00
|
|
|
expect(Project).to receive(:find_by).with(id: project.id.to_s)
|
2017-06-19 18:37:15 -04:00
|
|
|
described_class.new.perform(gl_repository, key_id, base64_changes)
|
2012-02-29 16:04:09 -05:00
|
|
|
end
|
2011-12-14 11:38:52 -05:00
|
|
|
|
2012-03-01 10:43:04 -05:00
|
|
|
it "does not run if the author is not in the project" do
|
2017-06-21 09:48:12 -04:00
|
|
|
allow_any_instance_of(Gitlab::GitPostReceive)
|
|
|
|
.to receive(:identify_using_ssh_key)
|
|
|
|
.and_return(nil)
|
2012-03-01 10:43:04 -05:00
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(project).not_to receive(:execute_hooks)
|
2012-03-01 10:43:04 -05:00
|
|
|
|
2017-06-19 18:37:15 -04:00
|
|
|
expect(described_class.new.perform(gl_repository, key_id, base64_changes)).to be_falsey
|
2011-12-14 11:38:52 -05:00
|
|
|
end
|
|
|
|
|
2012-11-19 13:44:05 -05:00
|
|
|
it "asks the project to trigger all hooks" do
|
2017-05-02 17:15:12 -04:00
|
|
|
allow(Project).to receive(:find_by).and_return(project)
|
2017-08-15 06:27:37 -04:00
|
|
|
|
2015-03-15 10:42:31 -04:00
|
|
|
expect(project).to receive(:execute_hooks).twice
|
|
|
|
expect(project).to receive(:execute_services).twice
|
2016-10-10 03:40:14 -04:00
|
|
|
|
2017-06-19 18:37:15 -04:00
|
|
|
described_class.new.perform(gl_repository, key_id, base64_changes)
|
2016-10-10 03:40:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "enqueues a UpdateMergeRequestsWorker job" do
|
2017-05-02 17:15:12 -04:00
|
|
|
allow(Project).to receive(:find_by).and_return(project)
|
2017-08-15 06:27:37 -04:00
|
|
|
|
2016-10-10 03:40:14 -04:00
|
|
|
expect(UpdateMergeRequestsWorker).to receive(:perform_async).with(project.id, project.owner.id, any_args)
|
2011-12-14 11:38:52 -05:00
|
|
|
|
2017-06-19 18:37:15 -04:00
|
|
|
described_class.new.perform(gl_repository, key_id, base64_changes)
|
2011-12-14 11:38:52 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|