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

112 lines
2.7 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'spec_helper'
2018-03-17 18:26:18 +05:30
describe 'Profile account page', :js do
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
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
2018-03-17 18:26:18 +05:30
it 'deletes user', :js do
click_button 'Delete account'
fill_in 'password', with: '12345678'
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
2018-11-08 19:23:39 +05:30
describe 'when I reset feed token' do
2017-09-10 17:25:29 +05:30
before do
2018-03-17 18:26:18 +05:30
visit profile_personal_access_tokens_path
2017-09-10 17:25:29 +05:30
end
2018-11-08 19:23:39 +05:30
it 'resets feed token' do
within('.feed-token-reset') do
previous_token = find("#feed_token").value
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
accept_confirm { click_link('reset it') }
2018-11-08 19:23:39 +05:30
expect(find('#feed_token').value).not_to eq(previous_token)
2018-03-17 18:26:18 +05:30
end
2017-09-10 17:25:29 +05:30
2018-11-08 19:23:39 +05:30
expect(page).to have_content 'Feed token was successfully reset'
2017-09-10 17:25:29 +05:30
end
end
2017-08-17 22:00:37 +05:30
describe 'when I reset incoming email token' do
before do
allow(Gitlab.config.incoming_email).to receive(:enabled).and_return(true)
2018-03-17 18:26:18 +05:30
visit profile_personal_access_tokens_path
2017-08-17 22:00:37 +05:30
end
it 'resets incoming email token' do
2018-03-17 18:26:18 +05:30
within('.incoming-email-token-reset') do
previous_token = find('#incoming_email_token').value
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
accept_confirm { click_link('reset it') }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(find('#incoming_email_token').value).not_to eq(previous_token)
end
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
2018-05-09 12:01:36 +05:30
page.find('[data-target="#username-change-confirmation-modal"]').click
page.within('.modal') do
find('.js-modal-primary-action').click
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