debian-mirror-gitlab/spec/features/profiles/account_spec.rb

75 lines
2 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2019-12-04 20:38:33 +05:30
require 'spec_helper'
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
describe 'Profile > Account', :js do
let(:user) { create(:user, username: 'foo') }
2017-08-17 22:00:37 +05:30
before do
2017-09-10 17:25:29 +05:30
sign_in(user)
2017-08-17 22:00:37 +05:30
end
describe 'Change username' do
2018-11-08 19:23:39 +05:30
let(:new_username) { 'bar' }
let(:new_user_path) { "/#{new_username}" }
let(:old_user_path) { "/#{user.username}" }
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
it 'the user is accessible via the new path' do
2017-08-17 22:00:37 +05:30
update_username(new_username)
visit new_user_path
expect(current_path).to eq(new_user_path)
expect(find('.user-info')).to have_content(new_username)
end
2018-11-08 19:23:39 +05:30
it 'the old user path redirects to the new path' do
2017-08-17 22:00:37 +05:30
update_username(new_username)
visit old_user_path
expect(current_path).to eq(new_user_path)
expect(find('.user-info')).to have_content(new_username)
end
context 'with a project' do
2018-11-08 19:23:39 +05:30
let!(:project) { create(:project, namespace: user.namespace) }
let(:new_project_path) { "/#{new_username}/#{project.path}" }
let(:old_project_path) { "/#{user.username}/#{project.path}" }
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
before(:context) do
TestEnv.clean_test_path
end
2018-03-17 18:26:18 +05:30
after do
2017-09-10 17:25:29 +05:30
TestEnv.clean_test_path
end
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
it 'the project is accessible via the new path' do
2017-08-17 22:00:37 +05:30
update_username(new_username)
visit new_project_path
expect(current_path).to eq(new_project_path)
2018-05-09 12:01:36 +05:30
expect(find('.breadcrumbs-sub-title')).to have_content('Details')
2017-08-17 22:00:37 +05:30
end
2018-11-08 19:23:39 +05:30
it 'the old project path redirects to the new path' do
2017-08-17 22:00:37 +05:30
update_username(new_username)
visit old_project_path
expect(current_path).to eq(new_project_path)
2018-05-09 12:01:36 +05:30
expect(find('.breadcrumbs-sub-title')).to have_content('Details')
2017-08-17 22:00:37 +05:30
end
end
end
end
def update_username(new_username)
allow(user.namespace).to receive(:move_dir)
visit profile_account_path
2018-05-09 12:01:36 +05:30
fill_in 'username-change-input', with: new_username
page.find('[data-target="#username-change-confirmation-modal"]').click
page.within('.modal') do
find('.js-modal-primary-action').click
end
2018-11-08 19:23:39 +05:30
wait_for_requests
2017-08-17 22:00:37 +05:30
end