gitlab-org--gitlab-foss/spec/features/admin/admin_hooks_spec.rb

89 lines
2.1 KiB
Ruby
Raw Normal View History

2012-07-18 21:24:37 +00:00
require 'spec_helper'
describe 'Admin::Hooks', :js do
2012-07-18 21:24:37 +00:00
before do
@project = create(:project)
sign_in(create(:admin))
2012-07-18 21:24:37 +00:00
@system_hook = create(:system_hook)
2012-07-18 21:24:37 +00:00
end
2017-04-20 08:31:37 +00:00
describe 'GET /admin/hooks' do
it 'is ok' do
2012-07-18 21:24:37 +00:00
visit admin_root_path
page.within '.nav-sidebar' do
2017-04-20 08:31:37 +00:00
click_on 'Hooks'
2012-07-18 21:24:37 +00:00
end
expect(current_path).to eq(admin_hooks_path)
2012-07-18 21:24:37 +00:00
end
2017-04-20 08:31:37 +00:00
it 'has hooks list' do
2012-07-18 21:24:37 +00:00
visit admin_hooks_path
expect(page).to have_content(@system_hook.url)
2012-07-18 21:24:37 +00:00
end
end
2017-04-20 08:31:37 +00:00
describe 'New Hook' do
let(:url) { generate(:url) }
it 'adds new hook' do
2012-07-18 21:24:37 +00:00
visit admin_hooks_path
fill_in 'hook_url', with: url
check 'Enable SSL verification'
2012-07-18 21:24:37 +00:00
2017-04-04 22:36:19 +00:00
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)
2012-07-18 21:24:37 +00:00
end
end
2017-04-20 08:31:37 +00: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
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 08:31:37 +00: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 08:31:37 +00:00
end
end
2017-07-20 15:12:06 +00:00
describe 'Test', js: true do
2012-07-18 21:24:37 +00:00
before do
WebMock.stub_request(:post, @system_hook.url)
visit admin_hooks_path
2017-07-20 15:12:06 +00:00
find('.hook-test-button.dropdown').click
click_link 'Push events'
2012-07-18 21:24:37 +00:00
end
it { expect(current_path).to eq(admin_hooks_path) }
2012-07-18 21:24:37 +00:00
end
end