debian-mirror-gitlab/spec/features/admin/admin_hooks_spec.rb

89 lines
2 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 'Admin::Hooks' do
2014-09-02 18:07:02 +05:30
before do
@project = create(:project)
2017-09-10 17:25:29 +05:30
sign_in(create(:admin))
2014-09-02 18:07:02 +05:30
@system_hook = create(:system_hook)
end
2017-08-17 22:00:37 +05:30
describe 'GET /admin/hooks' do
it 'is ok' do
2014-09-02 18:07:02 +05:30
visit admin_root_path
2017-08-17 22:00:37 +05:30
page.within '.layout-nav' do
click_on 'Hooks'
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
expect(current_path).to eq(admin_hooks_path)
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
it 'has hooks list' do
2014-09-02 18:07:02 +05:30
visit admin_hooks_path
2015-04-26 12:48:37 +05:30
expect(page).to have_content(@system_hook.url)
2014-09-02 18:07:02 +05:30
end
end
2017-08-17 22:00:37 +05:30
describe 'New Hook' do
let(:url) { generate(:url) }
it 'adds new hook' do
2014-09-02 18:07:02 +05:30
visit admin_hooks_path
2017-08-17 22:00:37 +05:30
fill_in 'hook_url', with: url
check 'Enable SSL verification'
expect { click_button 'Add system hook' }.to change(SystemHook, :count).by(1)
expect(page).to have_content 'SSL Verification: enabled'
expect(current_path).to eq(admin_hooks_path)
expect(page).to have_content(url)
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
end
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'
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
expect(page).to have_content 'SSL Verification: enabled'
2015-04-26 12:48:37 +05:30
expect(current_path).to eq(admin_hooks_path)
2017-08-17 22:00:37 +05:30
expect(page).to have_content(new_url)
end
end
describe 'Remove existing hook' do
2017-09-10 17:25:29 +05:30
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-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
it 'from hook edit page' do
visit admin_hooks_path
click_link 'Edit'
expect { click_link 'Remove' }.to change(SystemHook, :count).by(-1)
end
2014-09-02 18:07:02 +05:30
end
end
2017-09-10 17:25:29 +05:30
describe 'Test', js: true do
2014-09-02 18:07:02 +05:30
before do
WebMock.stub_request(:post, @system_hook.url)
visit admin_hooks_path
2017-09-10 17:25:29 +05:30
find('.hook-test-button.dropdown').click
click_link 'Push events'
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
it { expect(current_path).to eq(admin_hooks_path) }
2014-09-02 18:07:02 +05:30
end
end