debian-mirror-gitlab/spec/models/hooks/service_hook_spec.rb

37 lines
1 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require "spec_helper"
2015-12-23 02:04:40 +05:30
describe ServiceHook, models: true do
2014-09-02 18:07:02 +05:30
describe "Associations" do
2015-04-26 12:48:37 +05:30
it { is_expected.to belong_to :service }
2014-09-02 18:07:02 +05:30
end
2015-09-11 14:41:01 +05:30
describe "execute" do
before(:each) do
@service_hook = create(:service_hook)
@data = { project_id: 1, data: {} }
WebMock.stub_request(:post, @service_hook.url)
end
2016-06-02 11:05:42 +05:30
it "POSTs to the webhook URL" do
2015-09-11 14:41:01 +05:30
@service_hook.execute(@data)
expect(WebMock).to have_requested(:post, @service_hook.url).with(
2016-06-02 11:05:42 +05:30
headers: { 'Content-Type' => 'application/json', 'X-Gitlab-Event' => 'Service Hook' }
2015-09-11 14:41:01 +05:30
).once
end
it "POSTs the data as JSON" do
@service_hook.execute(@data)
expect(WebMock).to have_requested(:post, @service_hook.url).with(
2016-06-02 11:05:42 +05:30
headers: { 'Content-Type' => 'application/json', 'X-Gitlab-Event' => 'Service Hook' }
2015-09-11 14:41:01 +05:30
).once
end
it "catches exceptions" do
expect(WebHook).to receive(:post).and_raise("Some HTTP Post error")
expect { @service_hook.execute(@data) }.to raise_error(RuntimeError)
end
end
2014-09-02 18:07:02 +05:30
end