2d54dfb251
Signed-off-by: Rémy Coutable <remy@rymai.me>
141 lines
4 KiB
Ruby
141 lines
4 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'Projects > Settings > Integration settings' do
|
|
let(:project) { create(:project) }
|
|
let(:user) { create(:user) }
|
|
let(:role) { :developer }
|
|
let(:integrations_path) { project_settings_integrations_path(project) }
|
|
|
|
before do
|
|
sign_in(user)
|
|
project.add_role(user, role)
|
|
end
|
|
|
|
context 'for developer' do
|
|
let(:role) { :developer }
|
|
|
|
it 'to be disallowed to view' do
|
|
visit integrations_path
|
|
|
|
expect(page.status_code).to eq(404)
|
|
end
|
|
end
|
|
|
|
context 'for master' do
|
|
let(:role) { :master }
|
|
|
|
context 'Webhooks' do
|
|
let(:hook) { create(:project_hook, :all_events_enabled, enable_ssl_verification: true, project: project) }
|
|
let(:url) { generate(:url) }
|
|
|
|
it 'show list of webhooks' do
|
|
hook
|
|
|
|
visit integrations_path
|
|
|
|
expect(page.status_code).to eq(200)
|
|
expect(page).to have_content(hook.url)
|
|
expect(page).to have_content('SSL Verification: enabled')
|
|
expect(page).to have_content('Push events')
|
|
expect(page).to have_content('Tag push events')
|
|
expect(page).to have_content('Issues events')
|
|
expect(page).to have_content('Confidential issues events')
|
|
expect(page).to have_content('Note events')
|
|
expect(page).to have_content('Merge requests events')
|
|
expect(page).to have_content('Pipeline events')
|
|
expect(page).to have_content('Wiki page events')
|
|
end
|
|
|
|
it 'create webhook' do
|
|
visit integrations_path
|
|
|
|
fill_in 'hook_url', with: url
|
|
check 'Tag push events'
|
|
check 'Enable SSL verification'
|
|
check 'Job events'
|
|
|
|
click_button 'Add webhook'
|
|
|
|
expect(page).to have_content(url)
|
|
expect(page).to have_content('SSL Verification: enabled')
|
|
expect(page).to have_content('Push events')
|
|
expect(page).to have_content('Tag push events')
|
|
expect(page).to have_content('Job events')
|
|
end
|
|
|
|
it 'edit existing webhook' do
|
|
hook
|
|
visit integrations_path
|
|
|
|
click_link 'Edit'
|
|
fill_in 'hook_url', with: url
|
|
check 'Enable SSL verification'
|
|
click_button 'Save changes'
|
|
|
|
expect(page).to have_content 'SSL Verification: enabled'
|
|
expect(page).to have_content(url)
|
|
end
|
|
|
|
it 'test existing webhook', :js do
|
|
WebMock.stub_request(:post, hook.url)
|
|
visit integrations_path
|
|
|
|
find('.hook-test-button.dropdown').click
|
|
click_link 'Push events'
|
|
|
|
expect(current_path).to eq(integrations_path)
|
|
end
|
|
|
|
context 'remove existing webhook' do
|
|
it 'from webhooks list page' do
|
|
hook
|
|
visit integrations_path
|
|
|
|
expect { click_link 'Remove' }.to change(ProjectHook, :count).by(-1)
|
|
end
|
|
|
|
it 'from webhook edit page' do
|
|
hook
|
|
visit integrations_path
|
|
click_link 'Edit'
|
|
|
|
expect { click_link 'Remove' }.to change(ProjectHook, :count).by(-1)
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'Webhook logs' do
|
|
let(:hook) { create(:project_hook, project: project) }
|
|
let(:hook_log) { create(:web_hook_log, web_hook: hook, internal_error_message: 'some error') }
|
|
|
|
it 'show list of hook logs' do
|
|
hook_log
|
|
visit edit_project_hook_path(project, hook)
|
|
|
|
expect(page).to have_content('Recent Deliveries')
|
|
expect(page).to have_content(hook_log.url)
|
|
end
|
|
|
|
it 'show hook log details' do
|
|
hook_log
|
|
visit edit_project_hook_path(project, hook)
|
|
click_link 'View details'
|
|
|
|
expect(page).to have_content("POST #{hook_log.url}")
|
|
expect(page).to have_content(hook_log.internal_error_message)
|
|
expect(page).to have_content('Resend Request')
|
|
end
|
|
|
|
it 'retry hook log' do
|
|
WebMock.stub_request(:post, hook.url)
|
|
|
|
hook_log
|
|
visit edit_project_hook_path(project, hook)
|
|
click_link 'View details'
|
|
click_link 'Resend Request'
|
|
|
|
expect(current_path).to eq(edit_project_hook_path(project, hook))
|
|
end
|
|
end
|
|
end
|
|
end
|