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

61 lines
1.8 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'spec_helper'
2017-09-10 17:25:29 +05:30
describe WebHook do
let(:hook) { build(:project_hook) }
describe 'associations' do
it { is_expected.to have_many(:web_hook_logs).dependent(:destroy) }
end
describe 'validations' do
2015-04-26 12:48:37 +05:30
it { is_expected.to validate_presence_of(:url) }
2014-09-02 18:07:02 +05:30
2016-06-02 11:05:42 +05:30
describe 'url' do
2017-09-10 17:25:29 +05:30
it { is_expected.to allow_value('http://example.com').for(:url) }
it { is_expected.to allow_value('https://example.com').for(:url) }
it { is_expected.to allow_value(' https://example.com ').for(:url) }
it { is_expected.to allow_value('http://test.com/api').for(:url) }
it { is_expected.to allow_value('http://test.com/api?key=abc').for(:url) }
it { is_expected.to allow_value('http://test.com/api?key=abc&type=def').for(:url) }
2014-09-02 18:07:02 +05:30
2017-09-10 17:25:29 +05:30
it { is_expected.not_to allow_value('example.com').for(:url) }
it { is_expected.not_to allow_value('ftp://example.com').for(:url) }
it { is_expected.not_to allow_value('herp-and-derp').for(:url) }
2016-06-02 11:05:42 +05:30
it 'strips :url before saving it' do
2017-09-10 17:25:29 +05:30
hook.url = ' https://example.com '
hook.save
2016-06-02 11:05:42 +05:30
expect(hook.url).to eq('https://example.com')
end
2014-09-02 18:07:02 +05:30
end
2018-03-17 18:26:18 +05:30
describe 'token' do
it { is_expected.to allow_value("foobar").for(:token) }
it { is_expected.not_to allow_values("foo\nbar", "foo\r\nbar").for(:token) }
end
2014-09-02 18:07:02 +05:30
end
2017-09-10 17:25:29 +05:30
describe 'execute' do
let(:data) { { key: 'value' } }
let(:hook_name) { 'project hook' }
2015-12-23 02:04:40 +05:30
2017-09-10 17:25:29 +05:30
before do
expect(WebHookService).to receive(:new).with(hook, data, hook_name).and_call_original
2015-12-23 02:04:40 +05:30
end
2017-09-10 17:25:29 +05:30
it '#execute' do
expect_any_instance_of(WebHookService).to receive(:execute)
2017-09-10 17:25:29 +05:30
hook.execute(data, hook_name)
end
2017-09-10 17:25:29 +05:30
it '#async_execute' do
expect_any_instance_of(WebHookService).to receive(:async_execute)
2017-09-10 17:25:29 +05:30
hook.async_execute(data, hook_name)
end
2014-09-02 18:07:02 +05:30
end
end