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

74 lines
1.6 KiB
Ruby
Raw Normal View History

2016-08-24 12:49:21 +05:30
require 'rails_helper'
2018-11-08 19:23:39 +05:30
describe 'Admin disables Git access protocol' do
2017-08-17 22:00:37 +05:30
include StubENV
2017-09-10 17:25:29 +05:30
let(:project) { create(:project, :empty_repo) }
2016-08-24 12:49:21 +05:30
let(:admin) { create(:admin) }
2018-11-08 19:23:39 +05:30
before do
2017-08-17 22:00:37 +05:30
stub_env('IN_MEMORY_APPLICATION_SETTINGS', 'false')
2017-09-10 17:25:29 +05:30
sign_in(admin)
2016-08-24 12:49:21 +05:30
end
context 'with HTTP disabled' do
2018-11-08 19:23:39 +05:30
before do
2016-08-24 12:49:21 +05:30
disable_http_protocol
end
2018-11-08 19:23:39 +05:30
it 'shows only SSH url' do
2016-08-24 12:49:21 +05:30
visit_project
expect(page).to have_content("git clone #{project.ssh_url_to_repo}")
expect(page).not_to have_selector('#clone-dropdown')
end
end
context 'with SSH disabled' do
2018-11-08 19:23:39 +05:30
before do
2016-08-24 12:49:21 +05:30
disable_ssh_protocol
end
2018-11-08 19:23:39 +05:30
it 'shows only HTTP url' do
2016-08-24 12:49:21 +05:30
visit_project
2017-09-10 17:25:29 +05:30
expect(page).to have_content("git clone #{project.http_url_to_repo}")
2016-08-24 12:49:21 +05:30
expect(page).not_to have_selector('#clone-dropdown')
end
end
context 'with nothing disabled' do
2018-11-08 19:23:39 +05:30
before do
2016-08-24 12:49:21 +05:30
create(:personal_key, user: admin)
end
2018-11-08 19:23:39 +05:30
it 'shows default SSH url and protocol selection dropdown' do
2016-08-24 12:49:21 +05:30
visit_project
expect(page).to have_content("git clone #{project.ssh_url_to_repo}")
expect(page).to have_selector('#clone-dropdown')
end
end
def visit_project
2017-09-10 17:25:29 +05:30
visit project_path(project)
2016-08-24 12:49:21 +05:30
end
def disable_http_protocol
2018-05-09 12:01:36 +05:30
switch_git_protocol(2)
2016-08-24 12:49:21 +05:30
end
def disable_ssh_protocol
2018-05-09 12:01:36 +05:30
switch_git_protocol(3)
end
def switch_git_protocol(value)
2016-08-24 12:49:21 +05:30
visit admin_application_settings_path
2018-05-09 12:01:36 +05:30
page.within('.as-visibility-access') do
find('#application_setting_enabled_git_access_protocol').find(:xpath, "option[#{value}]").select_option
click_on 'Save'
end
2016-08-24 12:49:21 +05:30
end
end