2009-11-16 11:58:14 -05:00
|
|
|
require 'test/test_helper'
|
|
|
|
|
|
|
|
class TestHelpersTest < ActionController::TestCase
|
|
|
|
tests UsersController
|
|
|
|
include Devise::TestHelpers
|
|
|
|
|
|
|
|
test "redirects if attempting to access a page unauthenticated" do
|
2009-12-14 16:48:15 -05:00
|
|
|
get :show
|
2009-11-16 11:58:14 -05:00
|
|
|
assert_redirected_to "/users/sign_in?unauthenticated=true"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "redirects if attempting to access a page with a unconfirmed account" do
|
|
|
|
swap Devise, :confirm_within => 0 do
|
|
|
|
sign_in create_user
|
2009-12-14 16:48:15 -05:00
|
|
|
get :show
|
2009-11-16 11:58:14 -05:00
|
|
|
assert_redirected_to "/users/sign_in?unconfirmed=true"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "does not redirect with valid user" do
|
|
|
|
user = create_user
|
|
|
|
user.confirm!
|
|
|
|
|
|
|
|
sign_in user
|
2009-12-14 16:48:15 -05:00
|
|
|
get :show
|
2009-11-16 11:58:14 -05:00
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
|
|
|
test "redirects if valid user signed out" do
|
|
|
|
user = create_user
|
|
|
|
user.confirm!
|
|
|
|
|
|
|
|
sign_in user
|
2009-12-14 16:48:15 -05:00
|
|
|
get :show
|
2009-11-16 11:58:14 -05:00
|
|
|
|
|
|
|
sign_out user
|
2009-12-14 16:48:15 -05:00
|
|
|
get :show
|
2009-11-16 11:58:14 -05:00
|
|
|
assert_redirected_to "/users/sign_in?unauthenticated=true"
|
|
|
|
end
|
|
|
|
|
2009-12-14 16:48:15 -05:00
|
|
|
test "allows to sign in with different users" do
|
2009-12-21 15:10:23 -05:00
|
|
|
first_user = create_user
|
2009-12-14 16:48:15 -05:00
|
|
|
first_user.confirm!
|
|
|
|
|
|
|
|
sign_in first_user
|
|
|
|
get :show
|
|
|
|
assert_equal first_user.id.to_s, @response.body
|
|
|
|
sign_out first_user
|
|
|
|
|
2009-12-21 15:10:23 -05:00
|
|
|
second_user = create_user
|
2009-12-14 16:48:15 -05:00
|
|
|
second_user.confirm!
|
|
|
|
|
|
|
|
sign_in second_user
|
|
|
|
get :show
|
|
|
|
assert_equal second_user.id.to_s, @response.body
|
|
|
|
end
|
2009-11-16 11:58:14 -05:00
|
|
|
end
|