mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
83 lines
2.5 KiB
Ruby
83 lines
2.5 KiB
Ruby
module Devise
|
|
module TestHelpers
|
|
def self.included(base)
|
|
base.class_eval do
|
|
setup :setup_controller_for_warden, :warden if respond_to?(:setup)
|
|
end
|
|
end
|
|
|
|
# This is a Warden::Proxy customized for functional tests. It's meant to
|
|
# some of Warden::Manager responsibilities, as retrieving configuration
|
|
# options and calling the FailureApp.
|
|
class TestWarden < Warden::Proxy #:nodoc:
|
|
attr_reader :controller
|
|
|
|
def initialize(controller)
|
|
@controller = controller
|
|
manager = Warden::Manager.new(nil) do |config|
|
|
Devise.configure_warden(config)
|
|
end
|
|
super(controller.request.env, manager)
|
|
end
|
|
|
|
def authenticate!(*args)
|
|
catch_with_redirect { super }
|
|
end
|
|
|
|
def catch_with_redirect(&block)
|
|
result = catch(:warden, &block)
|
|
|
|
if result.is_a?(Hash) && !custom_failure? && !@controller.send(:performed?)
|
|
result[:action] ||= :unauthenticated
|
|
|
|
env = @controller.request.env
|
|
env["PATH_INFO"] = "/#{result[:action]}"
|
|
env["warden.options"] = result
|
|
Warden::Manager._before_failure.each{ |hook| hook.call(env, result) }
|
|
|
|
status, headers, body = Devise::FailureApp.call(env).to_a
|
|
@controller.send :redirect_to, headers["Location"]
|
|
else
|
|
result
|
|
end
|
|
end
|
|
end
|
|
|
|
# We need to setup the environment variables and the response in the controller.
|
|
def setup_controller_for_warden #:nodoc:
|
|
@request.env['action_controller.instance'] = @controller
|
|
end
|
|
|
|
# Quick access to Warden::Proxy.
|
|
def warden #:nodoc:
|
|
@warden ||= (@request.env['warden'] = TestWarden.new(@controller))
|
|
end
|
|
|
|
# sign_in a given resource by storing its keys in the session.
|
|
#
|
|
# Examples:
|
|
#
|
|
# sign_in :user, @user # sign_in(scope, resource)
|
|
# sign_in @user # sign_in(resource)
|
|
#
|
|
def sign_in(resource_or_scope, resource=nil)
|
|
scope ||= Devise::Mapping.find_scope!(resource_or_scope)
|
|
resource ||= resource_or_scope
|
|
warden.session_serializer.store(resource, scope)
|
|
end
|
|
|
|
# Sign out a given resource or scope by calling logout on Warden.
|
|
#
|
|
# Examples:
|
|
#
|
|
# sign_out :user # sign_out(scope)
|
|
# sign_out @user # sign_out(resource)
|
|
#
|
|
def sign_out(resource_or_scope)
|
|
scope = Devise::Mapping.find_scope!(resource_or_scope)
|
|
@controller.instance_variable_set(:"@current_#{scope}", nil)
|
|
warden.logout(scope)
|
|
end
|
|
|
|
end
|
|
end
|