2009-01-04 00:02:29 -05:00
|
|
|
require 'abstract_unit'
|
|
|
|
|
|
|
|
class MiddlewareStackTest < ActiveSupport::TestCase
|
|
|
|
class FooMiddleware; end
|
|
|
|
class BarMiddleware; end
|
|
|
|
class BazMiddleware; end
|
2010-09-11 17:30:21 -04:00
|
|
|
class BlockMiddleware
|
|
|
|
attr_reader :block
|
|
|
|
def initialize(&block)
|
|
|
|
@block = block
|
|
|
|
end
|
|
|
|
end
|
2009-01-04 00:02:29 -05:00
|
|
|
|
|
|
|
def setup
|
2009-01-27 19:54:01 -05:00
|
|
|
@stack = ActionDispatch::MiddlewareStack.new
|
2009-01-04 00:02:29 -05:00
|
|
|
@stack.use FooMiddleware
|
|
|
|
@stack.use BarMiddleware
|
|
|
|
end
|
|
|
|
|
|
|
|
test "use should push middleware as class onto the stack" do
|
|
|
|
assert_difference "@stack.size" do
|
|
|
|
@stack.use BazMiddleware
|
|
|
|
end
|
|
|
|
assert_equal BazMiddleware, @stack.last.klass
|
|
|
|
end
|
|
|
|
|
|
|
|
test "use should push middleware as a string onto the stack" do
|
2015-08-07 17:26:21 -04:00
|
|
|
assert_deprecated do
|
|
|
|
assert_difference "@stack.size" do
|
|
|
|
@stack.use "MiddlewareStackTest::BazMiddleware"
|
|
|
|
end
|
|
|
|
assert_equal BazMiddleware, @stack.last.klass
|
2009-01-04 00:02:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "use should push middleware as a symbol onto the stack" do
|
2015-08-07 17:26:21 -04:00
|
|
|
assert_deprecated do
|
|
|
|
assert_difference "@stack.size" do
|
|
|
|
@stack.use :"MiddlewareStackTest::BazMiddleware"
|
|
|
|
end
|
|
|
|
assert_equal BazMiddleware, @stack.last.klass
|
2009-01-04 00:02:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "use should push middleware class with arguments onto the stack" do
|
|
|
|
assert_difference "@stack.size" do
|
|
|
|
@stack.use BazMiddleware, true, :foo => "bar"
|
|
|
|
end
|
|
|
|
assert_equal BazMiddleware, @stack.last.klass
|
|
|
|
assert_equal([true, {:foo => "bar"}], @stack.last.args)
|
|
|
|
end
|
2012-05-18 02:41:52 -04:00
|
|
|
|
2010-09-11 17:30:21 -04:00
|
|
|
test "use should push middleware class with block arguments onto the stack" do
|
|
|
|
proc = Proc.new {}
|
|
|
|
assert_difference "@stack.size" do
|
|
|
|
@stack.use(BlockMiddleware, &proc)
|
|
|
|
end
|
|
|
|
assert_equal BlockMiddleware, @stack.last.klass
|
|
|
|
assert_equal proc, @stack.last.block
|
|
|
|
end
|
2012-05-18 02:41:52 -04:00
|
|
|
|
2009-01-04 00:02:29 -05:00
|
|
|
test "insert inserts middleware at the integer index" do
|
|
|
|
@stack.insert(1, BazMiddleware)
|
|
|
|
assert_equal BazMiddleware, @stack[1].klass
|
|
|
|
end
|
|
|
|
|
|
|
|
test "insert_after inserts middleware after the integer index" do
|
|
|
|
@stack.insert_after(1, BazMiddleware)
|
|
|
|
assert_equal BazMiddleware, @stack[2].klass
|
|
|
|
end
|
|
|
|
|
|
|
|
test "insert_before inserts middleware before another middleware class" do
|
|
|
|
@stack.insert_before(BarMiddleware, BazMiddleware)
|
|
|
|
assert_equal BazMiddleware, @stack[1].klass
|
|
|
|
end
|
|
|
|
|
|
|
|
test "insert_after inserts middleware after another middleware class" do
|
|
|
|
@stack.insert_after(BarMiddleware, BazMiddleware)
|
|
|
|
assert_equal BazMiddleware, @stack[2].klass
|
|
|
|
end
|
|
|
|
|
2009-01-20 21:19:52 -05:00
|
|
|
test "swaps one middleware out for another" do
|
|
|
|
assert_equal FooMiddleware, @stack[0].klass
|
|
|
|
@stack.swap(FooMiddleware, BazMiddleware)
|
|
|
|
assert_equal BazMiddleware, @stack[0].klass
|
|
|
|
end
|
|
|
|
|
2012-02-03 22:08:39 -05:00
|
|
|
test "swaps one middleware out for same middleware class" do
|
|
|
|
assert_equal FooMiddleware, @stack[0].klass
|
|
|
|
@stack.swap(FooMiddleware, FooMiddleware, Proc.new { |env| [500, {}, ['error!']] })
|
|
|
|
assert_equal FooMiddleware, @stack[0].klass
|
|
|
|
end
|
|
|
|
|
2012-05-18 02:41:52 -04:00
|
|
|
test "unshift adds a new middleware at the beginning of the stack" do
|
2015-08-07 17:26:21 -04:00
|
|
|
assert_deprecated do
|
|
|
|
@stack.unshift :"MiddlewareStackTest::BazMiddleware"
|
|
|
|
assert_equal BazMiddleware, @stack.first.klass
|
|
|
|
end
|
2012-05-18 02:41:52 -04:00
|
|
|
end
|
|
|
|
|
2010-07-21 09:17:04 -04:00
|
|
|
test "raise an error on invalid index" do
|
|
|
|
assert_raise RuntimeError do
|
|
|
|
@stack.insert("HiyaMiddleware", BazMiddleware)
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_raise RuntimeError do
|
|
|
|
@stack.insert_after("HiyaMiddleware", BazMiddleware)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-02-19 22:21:34 -05:00
|
|
|
test "lazy evaluates middleware class" do
|
2015-08-07 17:26:21 -04:00
|
|
|
assert_deprecated do
|
|
|
|
assert_difference "@stack.size" do
|
|
|
|
@stack.use "MiddlewareStackTest::BazMiddleware"
|
|
|
|
end
|
|
|
|
assert_equal BazMiddleware, @stack.last.klass
|
2009-02-19 22:21:34 -05:00
|
|
|
end
|
2010-01-25 16:59:08 -05:00
|
|
|
end
|
2009-01-04 00:02:29 -05:00
|
|
|
end
|