2011-12-14 11:38:52 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe PostReceive do
|
|
|
|
context "as a resque worker" do
|
|
|
|
it "reponds to #perform" do
|
2013-01-09 01:14:05 -05:00
|
|
|
PostReceive.new.should respond_to(:perform)
|
2011-12-14 11:38:52 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-03-01 10:43:04 -05:00
|
|
|
context "web hook" do
|
2014-01-22 14:03:52 -05:00
|
|
|
let(:project) { create(:project) }
|
2012-11-05 22:31:55 -05:00
|
|
|
let(:key) { create(:key, user: project.owner) }
|
2013-02-05 05:47:50 -05:00
|
|
|
let(:key_id) { key.shell_id }
|
2012-03-01 10:43:04 -05:00
|
|
|
|
|
|
|
it "fetches the correct project" do
|
2012-12-13 12:20:10 -05:00
|
|
|
Project.should_receive(:find_with_namespace).with(project.path_with_namespace).and_return(project)
|
2014-09-02 04:05:51 -04:00
|
|
|
PostReceive.new.perform(pwd(project), key_id, 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
|
2014-01-19 13:55:59 -05:00
|
|
|
Key.stub(:find_by).with(hash_including(id: anything())) { nil }
|
2012-03-01 10:43:04 -05:00
|
|
|
|
2012-07-15 10:36:06 -04:00
|
|
|
project.should_not_receive(:execute_hooks)
|
2012-03-01 10:43:04 -05:00
|
|
|
|
2014-09-02 04:05:51 -04:00
|
|
|
PostReceive.new.perform(pwd(project), key_id, changes).should be_false
|
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
|
2012-12-13 12:20:10 -05:00
|
|
|
Project.stub(find_with_namespace: project)
|
2012-11-19 13:44:05 -05:00
|
|
|
project.should_receive(:execute_hooks)
|
|
|
|
project.should_receive(:execute_services)
|
|
|
|
project.should_receive(:update_merge_requests)
|
2011-12-14 11:38:52 -05:00
|
|
|
|
2014-09-02 04:05:51 -04:00
|
|
|
PostReceive.new.perform(pwd(project), key_id, changes)
|
2011-12-14 11:38:52 -05:00
|
|
|
end
|
|
|
|
end
|
2012-12-09 03:34:46 -05:00
|
|
|
|
|
|
|
def pwd(project)
|
2013-02-11 13:28:27 -05:00
|
|
|
File.join(Gitlab.config.gitlab_shell.repos_path, project.path_with_namespace)
|
2012-12-09 03:34:46 -05:00
|
|
|
end
|
2014-09-02 04:05:51 -04:00
|
|
|
|
|
|
|
def changes
|
|
|
|
'd14d6c0abdd253381df51a723d58691b2ee1ab08 570e7b2abdd848b95f2f578043fc23bd6f6fd24d refs/heads/master'
|
|
|
|
end
|
2011-12-14 11:38:52 -05:00
|
|
|
end
|