debian-mirror-gitlab/spec/features/profile_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

113 lines
2.9 KiB
Ruby
Raw Normal View History

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
2014-09-02 18:07:02 +05:30
let(:user) { create(:user) }
before do
2021-12-11 22:18:48 +05:30
stub_feature_flags(bootstrap_confirmation_modals: false)
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
2019-12-26 22:10:19 +05:30
it 'deletes user', :js, :sidekiq_might_not_need_inline do
2018-03-17 18:26:18 +05:30
click_button 'Delete account'
2022-04-01 21:47:47 +05:30
fill_in 'password', with: '12345678'
2018-03-17 18:26:18 +05:30
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
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-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-03-02 08:16:31 +05:30
accept_confirm { click_link('reset this token') }
2022-01-26 12:08:38 +05:30
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-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-03-02 08:16:31 +05:30
accept_confirm { click_link('reset this token') }
2022-01-26 12:08:38 +05:30
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