2017-09-10 17:25:29 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
describe 'Projects > Settings > Repository settings' do
|
2017-09-10 17:25:29 +05:30
|
|
|
let(:project) { create(:project_empty_repo) }
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:role) { :developer }
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
before do
|
2018-03-17 18:26:18 +05:30
|
|
|
project.add_role(user, role)
|
2017-09-10 17:25:29 +05:30
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for developer' do
|
2018-10-15 14:42:47 +05:30
|
|
|
let(:role) { :developer }
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
it 'is not allowed to view' do
|
2017-09-10 17:25:29 +05:30
|
|
|
visit project_settings_repository_path(project)
|
|
|
|
|
|
|
|
expect(page.status_code).to eq(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
context 'for maintainer' do
|
|
|
|
let(:role) { :maintainer }
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
context 'Deploy Keys', :js do
|
2017-09-10 17:25:29 +05:30
|
|
|
let(:private_deploy_key) { create(:deploy_key, title: 'private_deploy_key', public: false) }
|
|
|
|
let(:public_deploy_key) { create(:another_deploy_key, title: 'public_deploy_key', public: true) }
|
|
|
|
let(:new_ssh_key) { attributes_for(:key)[:key] }
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
it 'get list of keys' do
|
2017-09-10 17:25:29 +05:30
|
|
|
project.deploy_keys << private_deploy_key
|
|
|
|
project.deploy_keys << public_deploy_key
|
|
|
|
|
|
|
|
visit project_settings_repository_path(project)
|
|
|
|
|
|
|
|
expect(page).to have_content('private_deploy_key')
|
|
|
|
expect(page).to have_content('public_deploy_key')
|
|
|
|
end
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
it 'add a new deploy key' do
|
2017-09-10 17:25:29 +05:30
|
|
|
visit project_settings_repository_path(project)
|
|
|
|
|
|
|
|
fill_in 'deploy_key_title', with: 'new_deploy_key'
|
|
|
|
fill_in 'deploy_key_key', with: new_ssh_key
|
2018-03-17 18:26:18 +05:30
|
|
|
check 'deploy_key_deploy_keys_projects_attributes_0_can_push'
|
2017-09-10 17:25:29 +05:30
|
|
|
click_button 'Add key'
|
|
|
|
|
|
|
|
expect(page).to have_content('new_deploy_key')
|
|
|
|
expect(page).to have_content('Write access allowed')
|
|
|
|
end
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
it 'edit an existing deploy key' do
|
2017-09-10 17:25:29 +05:30
|
|
|
project.deploy_keys << private_deploy_key
|
|
|
|
visit project_settings_repository_path(project)
|
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
find('.deploy-key', text: private_deploy_key.title).find('.ic-pencil').click
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
fill_in 'deploy_key_title', with: 'updated_deploy_key'
|
2018-03-17 18:26:18 +05:30
|
|
|
check 'deploy_key_deploy_keys_projects_attributes_0_can_push'
|
2017-09-10 17:25:29 +05:30
|
|
|
click_button 'Save changes'
|
|
|
|
|
|
|
|
expect(page).to have_content('updated_deploy_key')
|
|
|
|
expect(page).to have_content('Write access allowed')
|
|
|
|
end
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
it 'edit a deploy key from projects user has access to' do
|
2017-09-10 17:25:29 +05:30
|
|
|
project2 = create(:project_empty_repo)
|
2018-03-17 18:26:18 +05:30
|
|
|
project2.add_role(user, role)
|
2017-09-10 17:25:29 +05:30
|
|
|
project2.deploy_keys << private_deploy_key
|
|
|
|
|
|
|
|
visit project_settings_repository_path(project)
|
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
find('.js-deployKeys-tab-available_project_keys').click
|
2018-10-15 14:42:47 +05:30
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
find('.deploy-key', text: private_deploy_key.title).find('.ic-pencil').click
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
fill_in 'deploy_key_title', with: 'updated_deploy_key'
|
|
|
|
click_button 'Save changes'
|
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
find('.js-deployKeys-tab-available_project_keys').click
|
2018-10-15 14:42:47 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(page).to have_content('updated_deploy_key')
|
|
|
|
end
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
it 'remove an existing deploy key' do
|
2017-09-10 17:25:29 +05:30
|
|
|
project.deploy_keys << private_deploy_key
|
|
|
|
visit project_settings_repository_path(project)
|
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
accept_confirm { find('.deploy-key', text: private_deploy_key.title).find('.ic-remove').click }
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
expect(page).not_to have_content(private_deploy_key.title)
|
|
|
|
end
|
|
|
|
end
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
context 'Deploy tokens' do
|
|
|
|
let!(:deploy_token) { create(:deploy_token, projects: [project]) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
stub_container_registry_config(enabled: true)
|
|
|
|
visit project_settings_repository_path(project)
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'view deploy tokens' do
|
2018-05-09 12:01:36 +05:30
|
|
|
within('.deploy-tokens') do
|
|
|
|
expect(page).to have_content(deploy_token.name)
|
|
|
|
expect(page).to have_content('read_repository')
|
|
|
|
expect(page).to have_content('read_registry')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'add a new deploy token' do
|
2018-05-09 12:01:36 +05:30
|
|
|
fill_in 'deploy_token_name', with: 'new_deploy_key'
|
|
|
|
fill_in 'deploy_token_expires_at', with: (Date.today + 1.month).to_s
|
|
|
|
check 'deploy_token_read_repository'
|
|
|
|
check 'deploy_token_read_registry'
|
|
|
|
click_button 'Create deploy token'
|
|
|
|
|
|
|
|
expect(page).to have_content('Your new project deploy token has been created')
|
|
|
|
end
|
|
|
|
end
|
2018-10-15 14:42:47 +05:30
|
|
|
|
|
|
|
context 'remote mirror settings' do
|
|
|
|
let(:user2) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
2018-11-18 11:00:15 +05:30
|
|
|
project.add_maintainer(user2)
|
2018-10-15 14:42:47 +05:30
|
|
|
|
|
|
|
visit project_settings_repository_path(project)
|
|
|
|
end
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
it 'shows push mirror settings', :js do
|
|
|
|
expect(page).to have_selector('#mirror_direction')
|
2018-10-15 14:42:47 +05:30
|
|
|
end
|
2019-02-15 15:39:39 +05:30
|
|
|
|
|
|
|
it 'creates a push mirror that mirrors all branches', :js do
|
|
|
|
expect(find('.js-mirror-protected-hidden', visible: false).value).to eq('0')
|
|
|
|
|
|
|
|
fill_in 'url', with: 'ssh://user@localhost/project.git'
|
|
|
|
select 'SSH public key', from: 'Authentication method'
|
|
|
|
|
|
|
|
select_direction
|
|
|
|
|
|
|
|
Sidekiq::Testing.fake! do
|
|
|
|
click_button 'Mirror repository'
|
|
|
|
end
|
|
|
|
|
|
|
|
project.reload
|
|
|
|
|
|
|
|
expect(page).to have_content('Mirroring settings were successfully updated')
|
|
|
|
expect(project.remote_mirrors.first.only_protected_branches).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a push mirror that only mirrors protected branches', :js do
|
|
|
|
find('#only_protected_branches').click
|
|
|
|
|
|
|
|
expect(find('.js-mirror-protected-hidden', visible: false).value).to eq('1')
|
|
|
|
|
|
|
|
fill_in 'url', with: 'ssh://user@localhost/project.git'
|
|
|
|
select 'SSH public key', from: 'Authentication method'
|
|
|
|
|
|
|
|
select_direction
|
|
|
|
|
|
|
|
Sidekiq::Testing.fake! do
|
|
|
|
click_button 'Mirror repository'
|
|
|
|
end
|
|
|
|
|
|
|
|
project.reload
|
|
|
|
|
|
|
|
expect(page).to have_content('Mirroring settings were successfully updated')
|
|
|
|
expect(project.remote_mirrors.first.only_protected_branches).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'generates an SSH public key on submission', :js do
|
|
|
|
fill_in 'url', with: 'ssh://user@localhost/project.git'
|
|
|
|
select 'SSH public key', from: 'Authentication method'
|
|
|
|
|
|
|
|
select_direction
|
|
|
|
|
|
|
|
Sidekiq::Testing.fake! do
|
|
|
|
click_button 'Mirror repository'
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_content('Mirroring settings were successfully updated')
|
|
|
|
expect(page).to have_selector('[title="Copy SSH public key"]')
|
|
|
|
end
|
|
|
|
|
|
|
|
def select_direction(direction = 'push')
|
|
|
|
direction_select = find('#mirror_direction')
|
|
|
|
|
|
|
|
# In CE, this select box is disabled, but in EE, it is enabled
|
|
|
|
if direction_select.disabled?
|
|
|
|
expect(direction_select.value).to eq(direction)
|
|
|
|
else
|
|
|
|
direction_select.select(direction.capitalize)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'repository cleanup settings' do
|
|
|
|
let(:object_map_file) { Rails.root.join('spec', 'fixtures', 'bfg_object_map.txt') }
|
|
|
|
|
|
|
|
it 'uploads an object map file', :js do
|
|
|
|
visit project_settings_repository_path(project)
|
|
|
|
|
|
|
|
expect(page).to have_content('Repository cleanup')
|
|
|
|
|
|
|
|
page.within('#cleanup') do
|
|
|
|
attach_file('project[bfg_object_map]', object_map_file, visible: false)
|
|
|
|
|
|
|
|
Sidekiq::Testing.fake! do
|
|
|
|
click_button 'Start cleanup'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_content('Repository cleanup has started')
|
|
|
|
expect(RepositoryCleanupWorker.jobs.count).to eq(1)
|
|
|
|
end
|
2018-10-15 14:42:47 +05:30
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
end
|