debian-mirror-gitlab/spec/features/projects/services/user_activates_jira_spec.rb

88 lines
2.6 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
require 'spec_helper'
2018-03-17 18:26:18 +05:30
describe 'User activates Jira', :js do
2020-05-24 23:13:21 +05:30
include_context 'project service activation'
2017-09-10 17:25:29 +05:30
let(:url) { 'http://jira.example.com' }
let(:test_url) { 'http://jira.example.com/rest/api/2/serverInfo' }
2020-05-24 23:13:21 +05:30
def fill_form(disable: false)
click_active_toggle if disable
2017-09-10 17:25:29 +05:30
fill_in 'service_url', with: url
fill_in 'service_username', with: 'username'
fill_in 'service_password', with: 'password'
fill_in 'service_jira_issue_transition_id', with: '25'
end
describe 'user sets and activates Jira Service' do
context 'when Jira connection test succeeds' do
2018-03-27 19:54:05 +05:30
before do
2017-09-10 17:25:29 +05:30
server_info = { key: 'value' }.to_json
2020-05-24 23:13:21 +05:30
stub_request(:get, test_url).with(basic_auth: %w(username password)).to_return(body: server_info)
2017-09-10 17:25:29 +05:30
2020-05-24 23:13:21 +05:30
visit_project_integration('Jira')
2017-09-10 17:25:29 +05:30
fill_form
2020-05-24 23:13:21 +05:30
click_test_integration
2018-03-27 19:54:05 +05:30
end
2017-09-10 17:25:29 +05:30
2019-09-30 21:07:59 +05:30
it 'activates the Jira service' do
expect(page).to have_content('Jira activated.')
2017-09-10 17:25:29 +05:30
expect(current_path).to eq(project_settings_integrations_path(project))
end
2018-03-27 19:54:05 +05:30
2019-09-30 21:07:59 +05:30
it 'shows the Jira link in the menu' do
2018-03-27 19:54:05 +05:30
page.within('.nav-sidebar') do
2019-09-30 21:07:59 +05:30
expect(page).to have_link('Jira', href: url)
2018-03-27 19:54:05 +05:30
end
end
2017-09-10 17:25:29 +05:30
end
context 'when Jira connection test fails' do
it 'shows errors when some required fields are not filled in' do
2020-05-24 23:13:21 +05:30
visit_project_integration('Jira')
2017-09-10 17:25:29 +05:30
fill_in 'service_password', with: 'password'
2020-05-24 23:13:21 +05:30
click_test_integration
2017-09-10 17:25:29 +05:30
page.within('.service-settings') do
expect(page).to have_content('This field is required.')
end
end
2019-09-30 21:07:59 +05:30
it 'activates the Jira service' do
2020-05-24 23:13:21 +05:30
stub_request(:get, test_url).with(basic_auth: %w(username password))
2017-09-10 17:25:29 +05:30
.to_raise(JIRA::HTTPError.new(double(message: 'message')))
2020-05-24 23:13:21 +05:30
visit_project_integration('Jira')
2017-09-10 17:25:29 +05:30
fill_form
2020-05-24 23:13:21 +05:30
click_test_then_save_integration
2017-09-10 17:25:29 +05:30
2019-09-30 21:07:59 +05:30
expect(page).to have_content('Jira activated.')
2017-09-10 17:25:29 +05:30
expect(current_path).to eq(project_settings_integrations_path(project))
end
end
end
2020-03-13 15:44:24 +05:30
describe 'user disables the Jira Service' do
2018-03-27 19:54:05 +05:30
before do
2020-05-24 23:13:21 +05:30
visit_project_integration('Jira')
fill_form(disable: true)
2018-03-27 19:54:05 +05:30
click_button('Save changes')
end
2017-09-10 17:25:29 +05:30
2019-09-30 21:07:59 +05:30
it 'saves but does not activate the Jira service' do
expect(page).to have_content('Jira settings saved, but not activated.')
2018-03-27 19:54:05 +05:30
expect(current_path).to eq(project_settings_integrations_path(project))
end
2019-09-30 21:07:59 +05:30
it 'does not show the Jira link in the menu' do
2018-03-27 19:54:05 +05:30
page.within('.nav-sidebar') do
2019-09-30 21:07:59 +05:30
expect(page).not_to have_link('Jira', href: url)
2017-09-10 17:25:29 +05:30
end
end
end
end