2012-08-23 05:19:40 -04:00
|
|
|
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)
|
2014-06-17 15:51:43 -04:00
|
|
|
@user = create(role)
|
2013-06-22 11:57:34 -04:00
|
|
|
|
2012-08-23 05:19:40 -04:00
|
|
|
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 10:10:14 -04:00
|
|
|
fill_in "user_login", with: user.email
|
2013-11-25 13:07:55 -05:00
|
|
|
fill_in "user_password", with: "12345678"
|
2012-08-23 05:19:40 -04:00
|
|
|
click_button "Sign in"
|
2013-05-30 19:16:49 -04:00
|
|
|
Thread.current[:current_user] = user
|
2012-08-23 05:19:40 -04:00
|
|
|
end
|
|
|
|
|
2014-07-04 03:26:59 -04:00
|
|
|
# Requires Javascript driver.
|
2012-08-23 05:19:40 -04:00
|
|
|
def logout
|
2014-10-01 18:21:29 -04:00
|
|
|
find(:css, ".fa.fa-sign-out").click
|
2012-08-23 05:19:40 -04:00
|
|
|
end
|
|
|
|
end
|