2012-07-18 17:24:37 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-08-14 10:11:31 -04:00
|
|
|
describe 'Admin::Hooks', :js do
|
2012-07-18 17:24:37 -04:00
|
|
|
before do
|
2017-08-02 15:55:11 -04:00
|
|
|
@project = create(:project)
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(create(:admin))
|
2012-07-18 17:24:37 -04:00
|
|
|
|
2012-11-05 22:31:55 -05:00
|
|
|
@system_hook = create(:system_hook)
|
2012-07-18 17:24:37 -04:00
|
|
|
end
|
|
|
|
|
2017-04-20 04:31:37 -04:00
|
|
|
describe 'GET /admin/hooks' do
|
|
|
|
it 'is ok' do
|
2012-07-18 17:24:37 -04:00
|
|
|
visit admin_root_path
|
2016-06-15 11:47:43 -04:00
|
|
|
|
2017-08-14 10:11:31 -04:00
|
|
|
page.within '.nav-sidebar' do
|
2017-04-20 04:31:37 -04:00
|
|
|
click_on 'Hooks'
|
2012-07-18 17:24:37 -04:00
|
|
|
end
|
2016-06-15 11:47:43 -04:00
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(current_path).to eq(admin_hooks_path)
|
2012-07-18 17:24:37 -04:00
|
|
|
end
|
|
|
|
|
2017-04-20 04:31:37 -04:00
|
|
|
it 'has hooks list' do
|
2012-07-18 17:24:37 -04:00
|
|
|
visit admin_hooks_path
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(page).to have_content(@system_hook.url)
|
2012-07-18 17:24:37 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-20 04:31:37 -04:00
|
|
|
describe 'New Hook' do
|
2017-03-23 09:08:39 -04:00
|
|
|
let(:url) { generate(:url) }
|
2016-12-05 13:50:13 -05:00
|
|
|
|
|
|
|
it 'adds new hook' do
|
2012-07-18 17:24:37 -04:00
|
|
|
visit admin_hooks_path
|
2016-12-05 13:50:13 -05:00
|
|
|
fill_in 'hook_url', with: url
|
|
|
|
check 'Enable SSL verification'
|
2012-07-18 17:24:37 -04:00
|
|
|
|
2017-04-04 18:36:19 -04:00
|
|
|
expect { click_button 'Add system hook' }.to change(SystemHook, :count).by(1)
|
2016-12-05 13:50:13 -05:00
|
|
|
expect(page).to have_content 'SSL Verification: enabled'
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(current_path).to eq(admin_hooks_path)
|
2016-12-05 13:50:13 -05:00
|
|
|
expect(page).to have_content(url)
|
2012-07-18 17:24:37 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-20 04:31:37 -04:00
|
|
|
describe 'Update existing hook' do
|
|
|
|
let(:new_url) { generate(:url) }
|
|
|
|
|
|
|
|
it 'updates existing hook' do
|
|
|
|
visit admin_hooks_path
|
|
|
|
|
|
|
|
click_link 'Edit'
|
|
|
|
fill_in 'hook_url', with: new_url
|
|
|
|
check 'Enable SSL verification'
|
|
|
|
click_button 'Save changes'
|
|
|
|
|
|
|
|
expect(page).to have_content 'SSL Verification: enabled'
|
|
|
|
expect(current_path).to eq(admin_hooks_path)
|
|
|
|
expect(page).to have_content(new_url)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'Remove existing hook' do
|
2017-04-27 06:08:57 -04:00
|
|
|
context 'removes existing hook' do
|
|
|
|
it 'from hooks list page' do
|
|
|
|
visit admin_hooks_path
|
|
|
|
|
|
|
|
expect { click_link 'Remove' }.to change(SystemHook, :count).by(-1)
|
|
|
|
end
|
2017-04-20 04:31:37 -04:00
|
|
|
|
2017-04-27 06:08:57 -04:00
|
|
|
it 'from hook edit page' do
|
|
|
|
visit admin_hooks_path
|
|
|
|
click_link 'Edit'
|
|
|
|
|
|
|
|
expect { click_link 'Remove' }.to change(SystemHook, :count).by(-1)
|
|
|
|
end
|
2017-04-20 04:31:37 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-03 04:35:01 -04:00
|
|
|
describe 'Test', :js do
|
2012-07-18 17:24:37 -04:00
|
|
|
before do
|
|
|
|
WebMock.stub_request(:post, @system_hook.url)
|
|
|
|
visit admin_hooks_path
|
2017-07-20 11:12:06 -04:00
|
|
|
|
|
|
|
find('.hook-test-button.dropdown').click
|
|
|
|
click_link 'Push events'
|
2012-07-18 17:24:37 -04:00
|
|
|
end
|
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(current_path).to eq(admin_hooks_path) }
|
2012-07-18 17:24:37 -04:00
|
|
|
end
|
|
|
|
end
|