2013-02-11 07:06:37 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
describe 'Profile account page', feature: true do
|
2013-02-11 07:06:37 -05:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
2016-11-11 01:27:43 -05:00
|
|
|
login_as(user)
|
2013-02-11 07:06:37 -05:00
|
|
|
end
|
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
describe 'when signup is enabled' do
|
2013-02-11 07:06:37 -05:00
|
|
|
before do
|
2015-07-01 17:21:51 -04:00
|
|
|
stub_application_setting(signup_enabled: true)
|
2013-10-09 12:03:09 -04:00
|
|
|
visit profile_account_path
|
2013-02-11 07:06:37 -05:00
|
|
|
end
|
2013-04-01 11:35:29 -04:00
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
it { expect(page).to have_content('Remove account') }
|
2013-04-01 11:35:29 -04:00
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'deletes the account' do
|
2016-11-11 01:27:43 -05:00
|
|
|
expect { click_link 'Delete account' }.to change { User.where(id: user.id).count }.by(-1)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(current_path).to eq(new_user_session_path)
|
2013-02-11 07:06:37 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
describe 'when signup is disabled' do
|
2013-02-11 07:06:37 -05:00
|
|
|
before do
|
2015-07-01 17:21:51 -04:00
|
|
|
stub_application_setting(signup_enabled: false)
|
2013-10-09 12:03:09 -04:00
|
|
|
visit profile_account_path
|
2013-02-11 07:06:37 -05:00
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'does not have option to remove account' do
|
2015-02-12 13:53:23 -05:00
|
|
|
expect(page).not_to have_content('Remove account')
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(current_path).to eq(profile_account_path)
|
2013-02-11 07:06:37 -05:00
|
|
|
end
|
|
|
|
end
|
2016-10-18 14:03:31 -04:00
|
|
|
|
|
|
|
describe 'when I reset private token' do
|
|
|
|
before do
|
|
|
|
visit profile_account_path
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'resets private token' do
|
|
|
|
previous_token = find("#private-token").value
|
|
|
|
|
|
|
|
click_link('Reset private token')
|
|
|
|
|
|
|
|
expect(find('#private-token').value).not_to eq(previous_token)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when I reset incoming email token' do
|
|
|
|
before do
|
|
|
|
allow(Gitlab.config.incoming_email).to receive(:enabled).and_return(true)
|
|
|
|
visit profile_account_path
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'resets incoming email token' do
|
|
|
|
previous_token = find('#incoming-email-token').value
|
|
|
|
|
|
|
|
click_link('Reset incoming email token')
|
|
|
|
|
|
|
|
expect(find('#incoming-email-token').value).not_to eq(previous_token)
|
|
|
|
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
|
|
|
|
fill_in 'user_username', with: 'new-username'
|
|
|
|
|
|
|
|
click_button('Update username')
|
|
|
|
|
|
|
|
expect(page).to have_content('new-username')
|
|
|
|
end
|
|
|
|
end
|
2013-04-01 11:35:29 -04:00
|
|
|
end
|