gitlab-org--gitlab-foss/spec/support/login_helpers.rb

28 lines
636 B
Ruby
Raw Normal View History

module LoginHelpers
# Internal: Create and log in as a user of the specified role
#
# role - User role (e.g., :admin, :user)
def login_as(role)
ActiveRecord::Base.observers.enable(:user_observer) do
@user = create(role)
end
login_with(@user)
end
# Internal: Login as the specified user
#
# user - User instance to login with
def login_with(user)
visit new_user_session_path
2013-03-25 14:10:14 +00:00
fill_in "user_login", with: user.email
fill_in "user_password", with: "123456"
click_button "Sign in"
Thread.current[:current_user] = user
end
def logout
click_link "Logout" rescue nil
end
end