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

115 lines
3.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
feature 'Users', :js do
2015-10-24 18:46:33 +05:30
let(:user) { create(:user, username: 'user1', name: 'User 1', email: 'user1@gitlab.com') }
2015-04-26 12:48:37 +05:30
scenario 'GET /users/sign_in creates a new user account' do
visit new_user_session_path
2016-11-03 12:29:30 +05:30
click_link 'Register'
2017-08-17 22:00:37 +05:30
fill_in 'new_user_name', with: 'Name Surname'
fill_in 'new_user_username', with: 'Great'
fill_in 'new_user_email', with: 'name@mail.com'
fill_in 'new_user_email_confirmation', with: 'name@mail.com'
fill_in 'new_user_password', with: 'password1234'
2016-11-03 12:29:30 +05:30
expect { click_button 'Register' }.to change { User.count }.by(1)
2015-04-26 12:48:37 +05:30
end
scenario 'Successful user signin invalidates password reset token' do
expect(user.reset_password_token).to be_nil
visit new_user_password_path
fill_in 'user_email', with: user.email
click_button 'Reset password'
user.reload
expect(user.reset_password_token).not_to be_nil
2018-03-17 18:26:18 +05:30
find('a[href="#login-pane"]').click
2017-09-10 17:25:29 +05:30
gitlab_sign_in(user)
2015-04-26 12:48:37 +05:30
expect(current_path).to eq root_path
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
user.reload
expect(user.reset_password_token).to be_nil
2014-09-02 18:07:02 +05:30
end
2015-09-11 14:41:01 +05:30
scenario 'Should show one error if email is already taken' do
visit new_user_session_path
2016-11-03 12:29:30 +05:30
click_link 'Register'
2017-08-17 22:00:37 +05:30
fill_in 'new_user_name', with: 'Another user name'
fill_in 'new_user_username', with: 'anotheruser'
fill_in 'new_user_email', with: user.email
fill_in 'new_user_email_confirmation', with: user.email
fill_in 'new_user_password', with: '12341234'
2016-11-03 12:29:30 +05:30
expect { click_button 'Register' }.to change { User.count }.by(0)
2015-09-11 14:41:01 +05:30
expect(page).to have_text('Email has already been taken')
expect(number_of_errors_on_page(page)).to be(1), 'errors on page:\n #{errors_on_page page}'
end
2016-11-03 12:29:30 +05:30
describe 'redirect alias routes' do
2017-09-10 17:25:29 +05:30
before do
expect(user).to be_persisted
end
2016-11-03 12:29:30 +05:30
scenario '/u/user1 redirects to user page' do
visit '/u/user1'
expect(current_path).to eq user_path(user)
expect(page).to have_text(user.name)
end
scenario '/u/user1/groups redirects to user groups page' do
visit '/u/user1/groups'
expect(current_path).to eq user_groups_path(user)
end
scenario '/u/user1/projects redirects to user projects page' do
visit '/u/user1/projects'
expect(current_path).to eq user_projects_path(user)
end
end
feature 'username validation' do
let(:loading_icon) { '.fa.fa-spinner' }
let(:username_input) { 'new_user_username' }
2018-03-17 18:26:18 +05:30
before do
2016-11-03 12:29:30 +05:30
visit new_user_session_path
click_link 'Register'
end
2017-08-17 22:00:37 +05:30
scenario 'doesn\'t show an error border if the username is available' do
fill_in username_input, with: 'new-user'
2017-09-10 17:25:29 +05:30
wait_for_requests
2017-08-17 22:00:37 +05:30
expect(find('.username')).not_to have_css '.gl-field-error-outline'
end
scenario 'does not show an error border if the username contains dots (.)' do
fill_in username_input, with: 'new.user.username'
2017-09-10 17:25:29 +05:30
wait_for_requests
2017-08-17 22:00:37 +05:30
expect(find('.username')).not_to have_css '.gl-field-error-outline'
end
2016-11-03 12:29:30 +05:30
scenario 'shows an error border if the username already exists' do
fill_in username_input, with: user.username
2017-09-10 17:25:29 +05:30
wait_for_requests
2016-11-03 12:29:30 +05:30
expect(find('.username')).to have_css '.gl-field-error-outline'
end
2017-08-17 22:00:37 +05:30
scenario 'shows an error border if the username contains special characters' do
fill_in username_input, with: 'new$user!username'
2017-09-10 17:25:29 +05:30
wait_for_requests
2017-08-17 22:00:37 +05:30
expect(find('.username')).to have_css '.gl-field-error-outline'
2016-11-03 12:29:30 +05:30
end
end
2015-09-11 14:41:01 +05:30
def errors_on_page(page)
2018-03-17 18:26:18 +05:30
page.find('#error_explanation').find('ul').all('li').map { |item| item.text }.join("\n")
2015-09-11 14:41:01 +05:30
end
def number_of_errors_on_page(page)
page.find('#error_explanation').find('ul').all('li').count
end
2014-09-02 18:07:02 +05:30
end