Sha256: ba4ffa5def755014bf716561a1be83452769654775ef2b27523c6fae0edbc146

Contents?: true

Size: 1.8 KB

Versions: 10

Compression:

Stored size: 1.8 KB

Contents

module Shoulda # :nodoc:
  module ActionController # :nodoc:
    module Matchers

      # Ensures that a session key was set to the expected value.
      #
      # Example:
      #
      #   it { should set_session(:message) }
      #   it { should set_session(:user_id).to(@user.id) }
      #   it { should_not set_session(:user_id) }
      def set_session(key)
        SetSessionMatcher.new(key)
      end

      class SetSessionMatcher # :nodoc:

        def initialize(key)
          @key = key.to_s
        end

        def to(value)
          @value = value
          self
        end

        def matches?(controller)
          @controller = controller
          assigned_value? && assigned_correct_value?
        end

        def failure_message
          "Expected #{expectation}, but #{result}"
        end

        def negative_failure_message
          "Didn't expect #{expectation}, but #{result}"
        end

        def description
          description = "set session variable #{@key.inspect}"
          description << " to #{@value.inspect}" if @value
          description
        end

        private

        def assigned_value?
          !assigned_value.blank?
        end

        def assigned_correct_value?
          return true if @value.nil?
          assigned_value == @value
        end

        def assigned_value
          session[@key]
        end

        def session
          @controller.response.session.data
        end

        def expectation
          expectation = "session variable #{@key} to be set"
          expectation << " to #{@value.inspect}" if @value
          expectation
        end

        def result
          if session.empty?
            "no session variables were set"
          else
            "the session was #{session.inspect}"
          end
        end

      end

    end
  end
end

Version data entries

10 entries across 10 versions & 5 rubygems

Version Path
gnip-gnip-1.1.1 test/lib/shoulda/action_controller/matchers/set_session_matcher.rb
technicalpickles-shoulda-2.10.0 lib/shoulda/action_controller/matchers/set_session_matcher.rb
thoughtbot-shoulda-2.10.0 lib/shoulda/action_controller/matchers/set_session_matcher.rb
thoughtbot-shoulda-2.9.2 lib/shoulda/action_controller/matchers/set_session_matcher.rb
shoulda-2.9.2 lib/shoulda/action_controller/matchers/set_session_matcher.rb
shoulda-2.10.0 lib/shoulda/action_controller/matchers/set_session_matcher.rb
gnip-0.4.2 test/lib/shoulda/action_controller/matchers/set_session_matcher.rb
gnip-1.0.0 test/lib/shoulda/action_controller/matchers/set_session_matcher.rb
gnip-1.1.2 test/lib/shoulda/action_controller/matchers/set_session_matcher.rb
gnip-1.1.1 test/lib/shoulda/action_controller/matchers/set_session_matcher.rb