2011-12-14 17:38:52 +01:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe PostReceive do
|
|
|
|
|
|
|
|
context "as a resque worker" do
|
|
|
|
it "reponds to #perform" do
|
2013-01-09 07:14:05 +01:00
|
|
|
PostReceive.new.should respond_to(:perform)
|
2011-12-14 17:38:52 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-03-01 16:43:04 +01:00
|
|
|
context "web hook" do
|
2012-11-06 04:31:55 +01:00
|
|
|
let(:project) { create(:project) }
|
|
|
|
let(:key) { create(:key, user: project.owner) }
|
2013-02-05 11:47:50 +01:00
|
|
|
let(:key_id) { key.shell_id }
|
2012-03-01 16:43:04 +01:00
|
|
|
|
|
|
|
it "fetches the correct project" do
|
2012-12-13 18:20:10 +01:00
|
|
|
Project.should_receive(:find_with_namespace).with(project.path_with_namespace).and_return(project)
|
2013-01-09 07:14:05 +01:00
|
|
|
PostReceive.new.perform(pwd(project), 'sha-old', 'sha-new', 'refs/heads/master', key_id)
|
2012-02-29 22:04:09 +01:00
|
|
|
end
|
2011-12-14 17:38:52 +01:00
|
|
|
|
2012-03-01 16:43:04 +01:00
|
|
|
it "does not run if the author is not in the project" do
|
2013-02-05 11:47:50 +01:00
|
|
|
Key.stub(find_by_id: nil)
|
2012-03-01 16:43:04 +01:00
|
|
|
|
2012-07-15 16:36:06 +02:00
|
|
|
project.should_not_receive(:execute_hooks)
|
2012-03-01 16:43:04 +01:00
|
|
|
|
2013-01-09 07:14:05 +01:00
|
|
|
PostReceive.new.perform(pwd(project), 'sha-old', 'sha-new', 'refs/heads/master', key_id).should be_false
|
2011-12-14 17:38:52 +01:00
|
|
|
end
|
|
|
|
|
2012-11-19 19:44:05 +01:00
|
|
|
it "asks the project to trigger all hooks" do
|
2012-12-13 18:20:10 +01:00
|
|
|
Project.stub(find_with_namespace: project)
|
2012-11-19 19:44:05 +01:00
|
|
|
project.should_receive(:execute_hooks)
|
|
|
|
project.should_receive(:execute_services)
|
|
|
|
project.should_receive(:update_merge_requests)
|
2011-12-14 17:38:52 +01:00
|
|
|
|
2013-01-09 07:14:05 +01:00
|
|
|
PostReceive.new.perform(pwd(project), 'sha-old', 'sha-new', 'refs/heads/master', key_id)
|
2011-12-14 17:38:52 +01:00
|
|
|
end
|
|
|
|
end
|
2012-12-09 09:34:46 +01:00
|
|
|
|
|
|
|
def pwd(project)
|
2013-02-11 19:28:27 +01:00
|
|
|
File.join(Gitlab.config.gitlab_shell.repos_path, project.path_with_namespace)
|
2012-12-09 09:34:46 +01:00
|
|
|
end
|
2011-12-14 17:38:52 +01:00
|
|
|
end
|