75 lines
2.5 KiB
Ruby
75 lines
2.5 KiB
Ruby
require 'webmock'
|
|
|
|
class Spinach::Features::ProjectHooks < Spinach::FeatureSteps
|
|
include SharedAuthentication
|
|
include SharedProject
|
|
include SharedPaths
|
|
include RSpec::Matchers
|
|
include RSpec::Mocks::ExampleMethods
|
|
include WebMock::API
|
|
|
|
step 'project has hook' do
|
|
@hook = create(:project_hook, project: current_project)
|
|
end
|
|
|
|
step 'I own empty project with hook' do
|
|
@project = create(:empty_project,
|
|
name: 'Empty Project', namespace: @user.namespace)
|
|
@hook = create(:project_hook, project: current_project)
|
|
end
|
|
|
|
step 'I should see project hook' do
|
|
expect(page).to have_content @hook.url
|
|
end
|
|
|
|
step 'I submit new hook' do
|
|
@url = FFaker::Internet.uri("http")
|
|
fill_in "hook_url", with: @url
|
|
expect { click_button "Add Webhook" }.to change(ProjectHook, :count).by(1)
|
|
end
|
|
|
|
step 'I submit new hook with SSL verification enabled' do
|
|
@url = FFaker::Internet.uri("http")
|
|
fill_in "hook_url", with: @url
|
|
check "hook_enable_ssl_verification"
|
|
expect { click_button "Add Webhook" }.to change(ProjectHook, :count).by(1)
|
|
end
|
|
|
|
step 'I should see newly created hook' do
|
|
expect(current_path).to eq namespace_project_hooks_path(current_project.namespace, current_project)
|
|
expect(page).to have_content(@url)
|
|
end
|
|
|
|
step 'I should see newly created hook with SSL verification enabled' do
|
|
expect(current_path).to eq namespace_project_hooks_path(current_project.namespace, current_project)
|
|
expect(page).to have_content(@url)
|
|
expect(page).to have_content("SSL Verification: enabled")
|
|
end
|
|
|
|
step 'I click test hook button' do
|
|
stub_request(:post, @hook.url).to_return(status: 200)
|
|
click_link 'Test'
|
|
end
|
|
|
|
step 'I click test hook button with invalid URL' do
|
|
stub_request(:post, @hook.url).to_raise(SocketError)
|
|
click_link 'Test'
|
|
end
|
|
|
|
step 'hook should be triggered' do
|
|
expect(current_path).to eq namespace_project_hooks_path(current_project.namespace, current_project)
|
|
expect(page).to have_selector '.flash-notice',
|
|
text: 'Hook executed successfully: HTTP 200'
|
|
end
|
|
|
|
step 'I should see hook error message' do
|
|
expect(page).to have_selector '.flash-alert',
|
|
text: 'Hook execution failed. '\
|
|
'Ensure the project has commits.'
|
|
end
|
|
|
|
step 'I should see hook service down error message' do
|
|
expect(page).to have_selector '.flash-alert',
|
|
text: 'Hook execution failed: Exception from'
|
|
end
|
|
end
|