Sha256: b278650c5cde6d6221e9e427f14ebf298135f018bf5f41b6fd702cd7509b28a3

Contents?: true

Size: 1.08 KB

Versions: 7

Compression:

Stored size: 1.08 KB

Contents

# encoding: utf-8

module Warden
  module Test
    # A collection of test helpers for testing full stack rack applications using Warden
    # These provide the ability to login and logout on any given request
    # Note: During the teardown phase of your specs you should include: Warden.test_reset!
    module Helpers
      def self.included(base)
        ::Warden.test_mode!
      end

      # A helper method that will peform a login of a user in warden for the next request
      # Provide it the same options as you would to Warden::Proxy#set_user
      # @see Warden::Proxy#set_user
      # @api public
      def login_as(user, opts = {})
        Warden.on_next_request do |proxy|
          proxy.set_user(user, opts)
        end
      end

      # Logs out a user from the session.
      # Without arguments, all users will be logged out
      # Provide a list of scopes to only log out users with that scope.
      # @see Warden::Proxy#logout
      # @api public
      def logout(*scopes)
        Warden.on_next_request do |proxy|
          proxy.logout(*scopes)
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
warden-0.10.3 lib/warden/test/helpers.rb
warden-0.10.2 lib/warden/test/helpers.rb
warden-0.10.1 lib/warden/test/helpers.rb
warden-0.10.0 lib/warden/test/helpers.rb
warden-0.9.7 lib/warden/test/helpers.rb
warden-0.9.6 lib/warden/test/helpers.rb
warden-0.9.5 lib/warden/test/helpers.rb