blob: a30e937bb3fb92a5a1891acfdb1e96a6894d6e9d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
require 'abstract_unit'
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
class BlockMiddleware
attr_accessor :configurable_message
def initialize(app, &block)
@app = app
yield(self) if block_given?
end
def call(env)
result = @app.call(env)
result[1]["Configurable-Message"] = configurable_message
result
end
end
class MyController < ActionController::Metal
use BlockMiddleware do |config|
config.configurable_message = "Configured by block."
end
use MyMiddleware
middleware.insert_before MyMiddleware, ExclaimerMiddleware
def index
self.response_body = "Hello World"
end
end
class InheritedController < MyController
end
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
test "middleware that is 'use'd is called as part of the Rack application" do
result = @app.call(env_for("/"))
assert_equal ["Hello World"], result[2]
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
test "middleware stack accepts block arguments" do
result = @app.call(env_for("/"))
assert_equal "Configured by block.", result[1]["Configurable-Message"]
end
test "middleware stack accepts only and except as options" do
result = ActionsController.action(:show).call(env_for("/"))
assert_equal "First!", result[1]["Middleware-Order"]
result = ActionsController.action(:index).call(env_for("/"))
assert_nil result[1]["Middleware-Order"]
end
def env_for(url)
Rack::MockRequest.env_for(url)
end
end
class TestInheritedMiddleware < TestMiddleware
def setup
@app = InheritedController.action(:index)
end
end
end
|