2012-11-19 13:14:05 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: web_hooks
|
|
|
|
#
|
2013-12-03 12:11:10 -05:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# url :string(255)
|
|
|
|
# project_id :integer
|
2014-04-09 08:05:03 -04:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2013-12-03 12:11:10 -05:00
|
|
|
# type :string(255) default("ProjectHook")
|
|
|
|
# service_id :integer
|
|
|
|
# push_events :boolean default(TRUE), not null
|
|
|
|
# issues_events :boolean default(FALSE), not null
|
|
|
|
# merge_requests_events :boolean default(FALSE), not null
|
2014-04-09 08:05:03 -04:00
|
|
|
# tag_push_events :boolean default(FALSE)
|
2015-05-16 02:33:31 -04:00
|
|
|
# note_events :boolean default(FALSE), not null
|
2012-11-19 13:14:05 -05:00
|
|
|
#
|
|
|
|
|
|
|
|
require "spec_helper"
|
|
|
|
|
2015-12-09 04:50:51 -05:00
|
|
|
describe ServiceHook, models: true do
|
2012-11-19 13:14:05 -05:00
|
|
|
describe "Associations" do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to belong_to :service }
|
2012-11-19 13:14:05 -05:00
|
|
|
end
|
2015-01-23 19:10:43 -05:00
|
|
|
|
|
|
|
describe "execute" do
|
|
|
|
before(:each) do
|
|
|
|
@service_hook = create(:service_hook)
|
2015-06-22 14:41:00 -04:00
|
|
|
@data = { project_id: 1, data: {} }
|
2015-01-23 19:10:43 -05:00
|
|
|
|
|
|
|
WebMock.stub_request(:post, @service_hook.url)
|
|
|
|
end
|
|
|
|
|
2016-03-10 14:48:29 -05:00
|
|
|
it "POSTs to the webhook URL" do
|
2015-01-23 19:10:43 -05:00
|
|
|
@service_hook.execute(@data)
|
|
|
|
expect(WebMock).to have_requested(:post, @service_hook.url).with(
|
2016-05-10 22:58:06 -04:00
|
|
|
headers: { 'Content-Type' => 'application/json', 'X-Gitlab-Event' => 'Service Hook' }
|
2015-01-23 19:10:43 -05:00
|
|
|
).once
|
|
|
|
end
|
|
|
|
|
|
|
|
it "POSTs the data as JSON" do
|
|
|
|
@service_hook.execute(@data)
|
|
|
|
expect(WebMock).to have_requested(:post, @service_hook.url).with(
|
2016-05-10 22:58:06 -04:00
|
|
|
headers: { 'Content-Type' => 'application/json', 'X-Gitlab-Event' => 'Service Hook' }
|
2015-01-23 19:10:43 -05:00
|
|
|
).once
|
|
|
|
end
|
|
|
|
|
|
|
|
it "catches exceptions" do
|
|
|
|
expect(WebHook).to receive(:post).and_raise("Some HTTP Post error")
|
|
|
|
|
2015-06-23 04:44:03 -04:00
|
|
|
expect { @service_hook.execute(@data) }.to raise_error(RuntimeError)
|
2015-01-23 19:10:43 -05:00
|
|
|
end
|
|
|
|
end
|
2012-11-19 13:14:05 -05:00
|
|
|
end
|