2019-07-25 01:24:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-11 07:06:37 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-16 14:09:01 -04:00
|
|
|
RSpec.describe 'Profile account page', :js do
|
2013-02-11 07:06:37 -05:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
2021-11-11 07:10:41 -05:00
|
|
|
stub_feature_flags(bootstrap_confirmation_modals: false)
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(user)
|
2013-02-11 07:06:37 -05:00
|
|
|
end
|
|
|
|
|
2017-08-17 07:52:46 -04:00
|
|
|
describe 'when I delete my account' do
|
2013-02-11 07:06:37 -05:00
|
|
|
before do
|
2013-10-09 12:03:09 -04:00
|
|
|
visit profile_account_path
|
2020-10-23 14:08:31 -04:00
|
|
|
|
|
|
|
# Scroll page to the bottom to make Delete account button visible
|
|
|
|
execute_script('window.scrollTo(0, document.body.scrollHeight)')
|
2013-02-11 07:06:37 -05:00
|
|
|
end
|
2013-04-01 11:35:29 -04:00
|
|
|
|
2017-10-06 16:40:41 -04:00
|
|
|
it { expect(page).to have_content('Delete account') }
|
2013-04-01 11:35:29 -04:00
|
|
|
|
2017-10-06 16:40:41 -04:00
|
|
|
it 'does not immediately delete the account' do
|
|
|
|
click_button 'Delete account'
|
|
|
|
|
|
|
|
expect(User.exists?(user.id)).to be_truthy
|
|
|
|
end
|
|
|
|
|
2019-10-23 05:06:03 -04:00
|
|
|
it 'deletes user', :js, :sidekiq_might_not_need_inline do
|
2017-10-06 16:40:41 -04:00
|
|
|
click_button 'Delete account'
|
|
|
|
|
2022-01-10 10:14:26 -05:00
|
|
|
fill_in 'password', with: Gitlab::Password.test_default
|
2017-10-06 16:40:41 -04:00
|
|
|
|
2017-12-11 13:43:28 -05:00
|
|
|
page.within '.modal' do
|
2017-10-06 16:40:41 -04:00
|
|
|
click_button 'Delete account'
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_content('Account scheduled for removal')
|
|
|
|
expect(User.exists?(user.id)).to be_falsy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows invalid password flash message', :js do
|
|
|
|
click_button 'Delete account'
|
|
|
|
|
|
|
|
fill_in 'password', with: 'testing123'
|
|
|
|
|
2017-12-11 13:43:28 -05:00
|
|
|
page.within '.modal' do
|
2017-10-06 16:40:41 -04:00
|
|
|
click_button 'Delete account'
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_content('Invalid password')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not show delete button when user owns a group' do
|
|
|
|
group = create(:group)
|
|
|
|
group.add_owner(user)
|
|
|
|
|
|
|
|
visit profile_account_path
|
|
|
|
|
|
|
|
expect(page).not_to have_button('Delete account')
|
|
|
|
expect(page).to have_content("Your account is currently an owner in these groups: #{group.name}")
|
2013-02-11 07:06:37 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-01-17 10:16:12 -05:00
|
|
|
it 'allows resetting of feed token' do
|
|
|
|
visit profile_personal_access_tokens_path
|
2021-12-15 19:15:50 -05:00
|
|
|
|
2022-01-17 10:16:12 -05:00
|
|
|
within('[data-testid="feed-token-container"]') do
|
|
|
|
previous_token = find_field('Feed token').value
|
2021-12-15 19:15:50 -05:00
|
|
|
|
2022-01-17 10:16:12 -05:00
|
|
|
accept_confirm { click_link('reset this token') }
|
2021-12-15 19:15:50 -05:00
|
|
|
|
2022-01-17 10:16:12 -05:00
|
|
|
click_button('Click to reveal')
|
2021-12-15 19:15:50 -05:00
|
|
|
|
2022-01-17 10:16:12 -05:00
|
|
|
expect(find_field('Feed token').value).not_to eq(previous_token)
|
2017-05-23 11:02:05 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-01-17 10:16:12 -05:00
|
|
|
it 'allows resetting of incoming email token' do
|
|
|
|
allow(Gitlab.config.incoming_email).to receive(:enabled).and_return(true)
|
2021-12-15 19:15:50 -05:00
|
|
|
|
2022-01-17 10:16:12 -05:00
|
|
|
visit profile_personal_access_tokens_path
|
2021-12-15 19:15:50 -05:00
|
|
|
|
2022-01-17 10:16:12 -05:00
|
|
|
within('[data-testid="incoming-email-token-container"]') do
|
|
|
|
previous_token = find_field('Incoming email token').value
|
2016-10-18 14:03:31 -04:00
|
|
|
|
2022-01-17 10:16:12 -05:00
|
|
|
accept_confirm { click_link('reset this token') }
|
2021-12-15 19:15:50 -05:00
|
|
|
|
2022-01-17 10:16:12 -05:00
|
|
|
click_button('Click to reveal')
|
2016-10-18 14:03:31 -04:00
|
|
|
|
2022-01-17 10:16:12 -05:00
|
|
|
expect(find_field('Incoming email token').value).not_to eq(previous_token)
|
2016-10-18 14:03:31 -04:00
|
|
|
end
|
|
|
|
end
|
2017-02-28 12:14:57 -05:00
|
|
|
|
|
|
|
describe 'when I change my username' do
|
|
|
|
before do
|
|
|
|
visit profile_account_path
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'changes my username' do
|
2018-04-06 05:36:22 -04:00
|
|
|
fill_in 'username-change-input', with: 'new-username'
|
2017-02-28 12:14:57 -05:00
|
|
|
|
2020-10-21 11:10:28 -04:00
|
|
|
page.find('[data-testid="username-change-confirmation-modal"]').click
|
2018-04-06 05:36:22 -04:00
|
|
|
|
|
|
|
page.within('.modal') do
|
2020-10-21 11:10:28 -04:00
|
|
|
find('.js-modal-action-primary').click
|
2018-04-06 05:36:22 -04:00
|
|
|
end
|
2017-02-28 12:14:57 -05:00
|
|
|
|
|
|
|
expect(page).to have_content('new-username')
|
|
|
|
end
|
|
|
|
end
|
2013-04-01 11:35:29 -04:00
|
|
|
end
|