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