Sha256: 6a4e0523e88eef80f9a34265b30b5cf17de022dabcf48e01614f85d1c38182cb

Contents?: true

Size: 1.61 KB

Versions: 17

Compression:

Stored size: 1.61 KB

Contents

module Shoulda # :nodoc:
  module Matchers
    module ActionController # :nodoc:
      # Ensures a controller redirected to the given url.
      #
      # Example:
      #
      #   it { should redirect_to('http://somewhere.com')  }
      #   it { should redirect_to(users_path)  }
      def redirect_to(url_or_description, &block)
        RedirectToMatcher.new(url_or_description, self, &block)
      end

      class RedirectToMatcher # :nodoc:
        attr_reader :failure_message_for_should, :failure_message_for_should_not

        def initialize(url_or_description, context, &block)
          if block
            @url_block = block
            @location = url_or_description
          else
            @url = url_or_description
            @location = @url
          end
          @context = context
        end

        def in_context(context)
          @context = context
          self
        end

        def matches?(controller)
          @controller = controller
          redirects_to_url?
        end

        def description
          "redirect to #{@location}"
        end

        private

        def redirects_to_url?
          begin
            @context.send(:assert_redirected_to, url)
            @failure_message_for_should_not = "Didn't expect to redirect to #{url}"
            true
          rescue Shoulda::Matchers::AssertionError => error
            @failure_message_for_should = error.message
            false
          end
        end

        def url
          if @url_block
            @context.instance_eval(&@url_block)
          else
            @url
          end
        end
      end
    end
  end
end

Version data entries

17 entries across 16 versions & 2 rubygems

Version Path
shoulda-matchers-2.4.0 lib/shoulda/matchers/action_controller/redirect_to_matcher.rb
shoulda-matchers-2.4.0.rc1 lib/shoulda/matchers/action_controller/redirect_to_matcher.rb
shoulda-matchers-2.3.0 lib/shoulda/matchers/action_controller/redirect_to_matcher.rb
challah-1.0.0 vendor/bundle/gems/shoulda-matchers-2.2.0/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb
shoulda-matchers-2.2.0 lib/shoulda/matchers/action_controller/redirect_to_matcher.rb
challah-1.0.0.beta3 vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb
challah-1.0.0.beta3 vendor/bundle/gems/shoulda-matchers-1.5.6/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb
shoulda-matchers-2.1.0 lib/shoulda/matchers/action_controller/redirect_to_matcher.rb
challah-1.0.0.beta2 vendor/bundle/gems/shoulda-matchers-1.5.6/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb
challah-1.0.0.beta vendor/bundle/gems/shoulda-matchers-1.5.6/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb
shoulda-matchers-2.0.0 lib/shoulda/matchers/action_controller/redirect_to_matcher.rb
shoulda-matchers-1.5.6 lib/shoulda/matchers/action_controller/redirect_to_matcher.rb
shoulda-matchers-1.5.5 lib/shoulda/matchers/action_controller/redirect_to_matcher.rb
shoulda-matchers-1.5.4 lib/shoulda/matchers/action_controller/redirect_to_matcher.rb
shoulda-matchers-1.5.2 lib/shoulda/matchers/action_controller/redirect_to_matcher.rb
shoulda-matchers-1.5.1 lib/shoulda/matchers/action_controller/redirect_to_matcher.rb
shoulda-matchers-1.5.0 lib/shoulda/matchers/action_controller/redirect_to_matcher.rb