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) }
|
2016-04-11 06:46:19 -04:00
|
|
|
let(:project) { create(:project) }
|
|
|
|
let(:key) { create(:key, user: project.owner) }
|
|
|
|
let(:key_id) { key.shell_id }
|
2015-08-28 04:23:56 -04:00
|
|
|
|
2011-12-14 11:38:52 -05:00
|
|
|
context "as a resque worker" do
|
|
|
|
it "reponds to #perform" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(PostReceive.new).to respond_to(:perform)
|
2011-12-14 11:38:52 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-11 06:46:19 -04:00
|
|
|
describe "#process_project_changes" do
|
|
|
|
before do
|
|
|
|
allow_any_instance_of(Gitlab::GitPostReceive).to receive(:identify).and_return(project.owner)
|
|
|
|
end
|
2012-03-01 10:43:04 -05:00
|
|
|
|
2016-04-11 06:46:19 -04:00
|
|
|
context "branches" do
|
|
|
|
let(:changes) { "123456 789012 refs/heads/tést" }
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it "calls GitTagPushService" do
|
2016-04-11 06:46:19 -04:00
|
|
|
expect_any_instance_of(GitPushService).to receive(:execute).and_return(true)
|
|
|
|
expect_any_instance_of(GitTagPushService).not_to receive(:execute)
|
|
|
|
PostReceive.new.perform(pwd(project), key_id, base64_changes)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "tags" do
|
|
|
|
let(:changes) { "123456 789012 refs/tags/tag" }
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it "calls GitTagPushService" do
|
2016-04-11 06:46:19 -04:00
|
|
|
expect_any_instance_of(GitPushService).not_to receive(:execute)
|
|
|
|
expect_any_instance_of(GitTagPushService).to receive(:execute).and_return(true)
|
|
|
|
PostReceive.new.perform(pwd(project), key_id, base64_changes)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "merge-requests" do
|
|
|
|
let(:changes) { "123456 789012 refs/merge-requests/123" }
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it "does not call any of the services" do
|
2016-04-11 06:46:19 -04:00
|
|
|
expect_any_instance_of(GitPushService).not_to receive(:execute)
|
|
|
|
expect_any_instance_of(GitTagPushService).not_to receive(:execute)
|
|
|
|
PostReceive.new.perform(pwd(project), key_id, base64_changes)
|
|
|
|
end
|
|
|
|
end
|
2016-05-19 14:48:57 -04:00
|
|
|
|
|
|
|
context "gitlab-ci.yml" do
|
|
|
|
subject { PostReceive.new.perform(pwd(project), key_id, base64_changes) }
|
|
|
|
|
2016-06-02 10:19:18 -04:00
|
|
|
context "creates a Ci::Pipeline for every change" do
|
2016-08-11 09:22:35 -04:00
|
|
|
before do
|
|
|
|
allow_any_instance_of(Ci::CreatePipelineService).to receive(:commit) do
|
|
|
|
OpenStruct.new(id: '123456')
|
|
|
|
end
|
|
|
|
allow_any_instance_of(Ci::CreatePipelineService).to receive(:branch?).and_return(true)
|
|
|
|
stub_ci_pipeline_to_return_yaml_file
|
|
|
|
end
|
2016-05-19 14:48:57 -04:00
|
|
|
|
2016-06-02 10:19:18 -04:00
|
|
|
it { expect{ subject }.to change{ Ci::Pipeline.count }.by(2) }
|
2016-05-19 14:48:57 -04:00
|
|
|
end
|
|
|
|
|
2016-06-02 10:19:18 -04:00
|
|
|
context "does not create a Ci::Pipeline" do
|
2016-06-03 10:22:26 -04:00
|
|
|
before { stub_ci_pipeline_yaml_file(nil) }
|
2016-05-19 14:48:57 -04:00
|
|
|
|
2016-06-02 10:19:18 -04:00
|
|
|
it { expect{ subject }.not_to change{ Ci::Pipeline.count } }
|
2016-05-19 14:48:57 -04:00
|
|
|
end
|
|
|
|
end
|
2016-04-11 06:46:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "webhook" do
|
2012-03-01 10:43:04 -05:00
|
|
|
it "fetches the correct project" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(Project).to receive(:find_with_namespace).with(project.path_with_namespace).and_return(project)
|
2015-03-15 10:42:31 -04:00
|
|
|
PostReceive.new.perform(pwd(project), 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
|
2016-10-04 12:03:10 -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
|
|
|
|
2015-03-15 10:42:31 -04:00
|
|
|
expect(PostReceive.new.perform(pwd(project), 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
|
2015-05-21 17:49:06 -04:00
|
|
|
allow(Project).to receive(:find_with_namespace).and_return(project)
|
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
|
|
|
|
|
|
|
PostReceive.new.perform(pwd(project), key_id, base64_changes)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "enqueues a UpdateMergeRequestsWorker job" do
|
|
|
|
allow(Project).to receive(:find_with_namespace).and_return(project)
|
|
|
|
expect(UpdateMergeRequestsWorker).to receive(:perform_async).with(project.id, project.owner.id, any_args)
|
2011-12-14 11:38:52 -05:00
|
|
|
|
2015-03-15 10:42:31 -04:00
|
|
|
PostReceive.new.perform(pwd(project), key_id, base64_changes)
|
2011-12-14 11:38:52 -05:00
|
|
|
end
|
|
|
|
end
|
2012-12-09 03:34:46 -05:00
|
|
|
|
|
|
|
def pwd(project)
|
2016-06-22 17:04:51 -04:00
|
|
|
File.join(Gitlab.config.repositories.storages.default, project.path_with_namespace)
|
2012-12-09 03:34:46 -05:00
|
|
|
end
|
2011-12-14 11:38:52 -05:00
|
|
|
end
|