2013-02-21 06:09:47 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-06-28 16:19:52 -04:00
|
|
|
feature 'Users', feature: true do
|
2015-09-29 12:08:55 -04:00
|
|
|
let(:user) { create(:user, username: 'user1', name: 'User 1', email: 'user1@gitlab.com') }
|
2015-09-28 10:00:53 -04:00
|
|
|
|
2015-04-08 14:26:04 -04:00
|
|
|
scenario 'GET /users/sign_in creates a new user account' do
|
|
|
|
visit new_user_session_path
|
2016-04-19 16:00:45 -04:00
|
|
|
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_password', with: 'password1234'
|
2015-04-08 14:26:04 -04:00
|
|
|
expect { click_button 'Sign up' }.to change { User.count }.by(1)
|
|
|
|
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
|
|
|
|
|
|
|
|
login_with(user)
|
|
|
|
expect(current_path).to eq root_path
|
|
|
|
|
|
|
|
user.reload
|
|
|
|
expect(user.reset_password_token).to be_nil
|
2013-02-21 06:09:47 -05:00
|
|
|
end
|
2015-06-15 11:35:41 -04:00
|
|
|
|
|
|
|
scenario 'Should show one error if email is already taken' do
|
|
|
|
visit new_user_session_path
|
2016-04-19 16:00:45 -04:00
|
|
|
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_password', with: '12341234'
|
2015-06-15 11:35:41 -04:00
|
|
|
expect { click_button 'Sign up' }.to change { User.count }.by(0)
|
|
|
|
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
|
|
|
|
|
|
|
|
def errors_on_page(page)
|
|
|
|
page.find('#error_explanation').find('ul').all('li').map{ |item| item.text }.join("\n")
|
|
|
|
end
|
|
|
|
|
|
|
|
def number_of_errors_on_page(page)
|
|
|
|
page.find('#error_explanation').find('ul').all('li').count
|
|
|
|
end
|
|
|
|
|
2013-02-21 06:09:47 -05:00
|
|
|
end
|