gitlabhq/spec/workers/post_receive_spec.rb

43 lines
1.3 KiB
Ruby
Raw Normal View History

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)
end
end
2012-03-01 16:43:04 +01:00
context "web hook" do
let(:project) { create(:project_with_code) }
let(:key) { create(:key, user: project.owner) }
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
2012-03-01 16:43:04 +01:00
it "does not run if the author is not in the project" do
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
end
it "asks the project to trigger all hooks" do
2012-12-13 18:20:10 +01:00
Project.stub(find_with_namespace: project)
project.should_receive(:execute_hooks)
project.should_receive(:execute_services)
project.should_receive(:update_merge_requests)
2013-01-09 07:14:05 +01:00
PostReceive.new.perform(pwd(project), 'sha-old', 'sha-new', 'refs/heads/master', key_id)
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
end