2009-09-19 13:10:41 -04:00
|
|
|
require 'abstract_unit'
|
2009-09-12 14:51:15 -04:00
|
|
|
|
|
|
|
module MiddlewareTest
|
|
|
|
class MyMiddleware
|
|
|
|
def initialize(app)
|
|
|
|
@app = app
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(env)
|
|
|
|
result = @app.call(env)
|
|
|
|
result[1]["Middleware-Test"] = "Success"
|
|
|
|
result[1]["Middleware-Order"] = "First"
|
|
|
|
result
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class ExclaimerMiddleware
|
|
|
|
def initialize(app)
|
|
|
|
@app = app
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(env)
|
|
|
|
result = @app.call(env)
|
|
|
|
result[1]["Middleware-Order"] << "!"
|
|
|
|
result
|
|
|
|
end
|
|
|
|
end
|
2012-10-27 10:03:18 -04:00
|
|
|
|
2010-09-11 17:30:21 -04:00
|
|
|
class BlockMiddleware
|
|
|
|
attr_accessor :configurable_message
|
|
|
|
def initialize(app, &block)
|
|
|
|
@app = app
|
|
|
|
yield(self) if block_given?
|
|
|
|
end
|
2012-10-27 10:03:18 -04:00
|
|
|
|
2010-09-11 17:30:21 -04:00
|
|
|
def call(env)
|
|
|
|
result = @app.call(env)
|
|
|
|
result[1]["Configurable-Message"] = configurable_message
|
|
|
|
result
|
|
|
|
end
|
|
|
|
end
|
2009-09-12 14:51:15 -04:00
|
|
|
|
|
|
|
class MyController < ActionController::Metal
|
2010-09-11 17:30:21 -04:00
|
|
|
use BlockMiddleware do |config|
|
|
|
|
config.configurable_message = "Configured by block."
|
|
|
|
end
|
2009-09-12 14:51:15 -04:00
|
|
|
use MyMiddleware
|
|
|
|
middleware.insert_before MyMiddleware, ExclaimerMiddleware
|
|
|
|
|
|
|
|
def index
|
|
|
|
self.response_body = "Hello World"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class InheritedController < MyController
|
|
|
|
end
|
|
|
|
|
2010-05-30 09:53:14 -04:00
|
|
|
class ActionsController < ActionController::Metal
|
|
|
|
use MyMiddleware, :only => :show
|
|
|
|
middleware.insert_before MyMiddleware, ExclaimerMiddleware, :except => :index
|
|
|
|
|
|
|
|
def index
|
|
|
|
self.response_body = "index"
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
|
|
|
self.response_body = "show"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class TestMiddleware < ActiveSupport::TestCase
|
|
|
|
def setup
|
|
|
|
@app = MyController.action(:index)
|
|
|
|
end
|
2009-09-12 14:51:15 -04:00
|
|
|
|
|
|
|
test "middleware that is 'use'd is called as part of the Rack application" do
|
|
|
|
result = @app.call(env_for("/"))
|
2010-03-19 21:04:00 -04:00
|
|
|
assert_equal "Hello World", RackTestUtils.body_to_string(result[2])
|
2009-09-12 14:51:15 -04:00
|
|
|
assert_equal "Success", result[1]["Middleware-Test"]
|
|
|
|
end
|
|
|
|
|
|
|
|
test "the middleware stack is exposed as 'middleware' in the controller" do
|
|
|
|
result = @app.call(env_for("/"))
|
|
|
|
assert_equal "First!", result[1]["Middleware-Order"]
|
|
|
|
end
|
|
|
|
|
2010-09-11 17:30:21 -04:00
|
|
|
test "middleware stack accepts block arguments" do
|
|
|
|
result = @app.call(env_for("/"))
|
|
|
|
assert_equal "Configured by block.", result[1]["Configurable-Message"]
|
|
|
|
end
|
|
|
|
|
2010-05-30 09:53:14 -04:00
|
|
|
test "middleware stack accepts only and except as options" do
|
|
|
|
result = ActionsController.action(:show).call(env_for("/"))
|
|
|
|
assert_equal "First!", result[1]["Middleware-Order"]
|
2009-09-12 14:51:15 -04:00
|
|
|
|
2010-05-30 09:53:14 -04:00
|
|
|
result = ActionsController.action(:index).call(env_for("/"))
|
|
|
|
assert_nil result[1]["Middleware-Order"]
|
2009-09-12 14:51:15 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def env_for(url)
|
|
|
|
Rack::MockRequest.env_for(url)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class TestInheritedMiddleware < TestMiddleware
|
|
|
|
def setup
|
|
|
|
@app = InheritedController.action(:index)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|