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

94 lines
2.2 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'spec_helper'
2017-09-10 17:25:29 +05:30
describe 'Profile account page' 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
2015-04-26 12:48:37 +05:30
describe 'when signup is enabled' do
2014-09-02 18:07:02 +05:30
before do
2015-09-11 14:41:01 +05:30
stub_application_setting(signup_enabled: true)
2014-09-02 18:07:02 +05:30
visit profile_account_path
end
2015-04-26 12:48:37 +05:30
it { expect(page).to have_content('Remove account') }
2014-09-02 18:07:02 +05:30
2016-09-13 17:45:13 +05:30
it 'deletes the account' do
2017-08-17 22:00:37 +05:30
expect { click_link 'Delete account' }.to change { User.where(id: user.id).count }.by(-1)
2015-04-26 12:48:37 +05:30
expect(current_path).to eq(new_user_session_path)
2014-09-02 18:07:02 +05:30
end
end
2015-04-26 12:48:37 +05:30
describe 'when signup is disabled' do
2014-09-02 18:07:02 +05:30
before do
2015-09-11 14:41:01 +05:30
stub_application_setting(signup_enabled: false)
2014-09-02 18:07:02 +05:30
visit profile_account_path
end
2016-09-13 17:45:13 +05:30
it 'does not have option to remove account' do
2015-04-26 12:48:37 +05:30
expect(page).not_to have_content('Remove account')
expect(current_path).to eq(profile_account_path)
2014-09-02 18:07:02 +05:30
end
end
2017-08-17 22:00:37 +05:30
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
2017-09-10 17:25:29 +05:30
describe 'when I reset RSS token' do
before do
visit profile_account_path
end
it 'resets RSS token' do
previous_token = find("#rss-token").value
click_link('Reset RSS token')
expect(page).to have_content 'RSS token was successfully reset'
expect(find('#rss-token').value).not_to eq(previous_token)
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)
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
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
2014-09-02 18:07:02 +05:30
end