2017-04-21 17:05:19 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2017-06-29 00:13:10 -04:00
|
|
|
feature 'Profile > Account' do
|
2017-04-21 17:05:19 -04:00
|
|
|
given(:user) { create(:user, username: 'foo') }
|
|
|
|
|
|
|
|
before do
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(user)
|
2017-04-21 17:05:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'Change username' do
|
|
|
|
given(:new_username) { 'bar' }
|
|
|
|
given(:new_user_path) { "/#{new_username}" }
|
|
|
|
given(:old_user_path) { "/#{user.username}" }
|
|
|
|
|
|
|
|
scenario 'the user is accessible via the new path' do
|
|
|
|
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
|
|
|
|
|
|
|
|
scenario 'the old user path redirects to the new path' do
|
|
|
|
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
|
2017-08-02 15:55:11 -04:00
|
|
|
given!(:project) { create(:project, namespace: user.namespace) }
|
2017-04-21 17:05:19 -04:00
|
|
|
given(:new_project_path) { "/#{new_username}/#{project.path}" }
|
|
|
|
given(:old_project_path) { "/#{user.username}/#{project.path}" }
|
|
|
|
|
2017-06-14 14:18:56 -04:00
|
|
|
before(:context) do
|
|
|
|
TestEnv.clean_test_path
|
|
|
|
end
|
|
|
|
|
2017-08-10 18:31:42 -04:00
|
|
|
after do
|
2017-06-14 14:18:56 -04:00
|
|
|
TestEnv.clean_test_path
|
|
|
|
end
|
2017-04-21 17:05:19 -04:00
|
|
|
|
|
|
|
scenario 'the project is accessible via the new path' do
|
|
|
|
update_username(new_username)
|
|
|
|
visit new_project_path
|
|
|
|
expect(current_path).to eq(new_project_path)
|
2017-08-14 10:11:31 -04:00
|
|
|
expect(find('.breadcrumbs-sub-title')).to have_content(project.path)
|
2017-04-21 17:05:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
scenario 'the old project path redirects to the new path' do
|
|
|
|
update_username(new_username)
|
|
|
|
visit old_project_path
|
|
|
|
expect(current_path).to eq(new_project_path)
|
2017-08-14 10:11:31 -04:00
|
|
|
expect(find('.breadcrumbs-sub-title')).to have_content(project.path)
|
2017-04-21 17:05:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_username(new_username)
|
|
|
|
allow(user.namespace).to receive(:move_dir)
|
|
|
|
visit profile_account_path
|
|
|
|
fill_in 'user_username', with: new_username
|
|
|
|
click_button 'Update username'
|
|
|
|
end
|