rails/railties/test/application/middleware_test.rb

241 lines
7.5 KiB
Ruby
Raw Normal View History

2010-01-05 01:34:42 +00:00
require 'isolation/abstract_unit'
module ApplicationTests
2012-01-06 01:30:17 +00:00
class MiddlewareTest < ActiveSupport::TestCase
2010-01-05 01:34:42 +00:00
include ActiveSupport::Testing::Isolation
def setup
build_app
boot_rails
FileUtils.rm_rf "#{app_path}/config/environments"
end
def teardown
teardown_app
end
def app
@app ||= Rails.application
end
2010-01-05 01:34:42 +00:00
test "default middleware stack" do
add_to_config "config.active_record.migration_error = :page_load"
2010-01-05 01:34:42 +00:00
boot!
assert_equal [
"Rack::Sendfile",
"ActionDispatch::Static",
"Rack::Lock",
"ActiveSupport::Cache::Strategy::LocalCache",
"Rack::Runtime",
"Rack::MethodOverride",
"ActionDispatch::RequestId",
"Rails::Rack::Logger", # must come after Rack::MethodOverride to properly log overridden methods
"ActionDispatch::ShowExceptions",
"ActionDispatch::DebugExceptions",
"ActionDispatch::RemoteIp",
"ActionDispatch::Reloader",
"ActionDispatch::Callbacks",
"ActiveRecord::Migration::CheckPending",
"ActiveRecord::ConnectionAdapters::ConnectionManagement",
"ActiveRecord::QueryCache",
"ActionDispatch::Cookies",
"ActionDispatch::Session::CookieStore",
"ActionDispatch::Flash",
"ActionDispatch::ParamsParser",
"Rack::Head",
"Rack::ConditionalGet",
2013-01-28 17:14:28 +00:00
"Rack::ETag"
], middleware
end
test "Rack::Cache is not included by default" do
boot!
assert !middleware.include?("Rack::Cache"), "Rack::Cache is not included in the default stack unless you set config.action_dispatch.rack_cache"
end
test "Rack::Cache is present when action_dispatch.rack_cache is set" do
add_to_config "config.action_dispatch.rack_cache = true"
boot!
assert middleware.include?("Rack::Cache")
2010-01-05 01:34:42 +00:00
end
2013-06-08 19:10:15 +00:00
test "ActiveRecord::Migration::CheckPending is present when active_record.migration_error is set to :page_load" do
add_to_config "config.active_record.migration_error = :page_load"
boot!
assert middleware.include?("ActiveRecord::Migration::CheckPending")
end
2012-03-17 02:22:25 +00:00
test "ActionDispatch::SSL is present when force_ssl is set" do
add_to_config "config.force_ssl = true"
boot!
2012-03-17 02:22:25 +00:00
assert middleware.include?("ActionDispatch::SSL")
end
2012-03-17 02:22:25 +00:00
test "ActionDispatch::SSL is configured with options when given" do
add_to_config "config.force_ssl = true"
2012-10-14 10:03:39 +00:00
add_to_config "config.ssl_options = { host: 'example.com' }"
boot!
2014-08-26 15:53:19 +00:00
assert_equal [{host: 'example.com'}], Rails.application.middleware.first.args
end
test "removing Active Record omits its middleware" do
2010-01-05 01:34:42 +00:00
use_frameworks []
boot!
assert !middleware.include?("ActiveRecord::ConnectionAdapters::ConnectionManagement")
assert !middleware.include?("ActiveRecord::QueryCache")
assert !middleware.include?("ActiveRecord::Migration::CheckPending")
2010-01-05 01:34:42 +00:00
end
test "includes lock if cache_classes is set but eager_load is not" do
add_to_config "config.cache_classes = true"
2010-01-05 01:34:42 +00:00
boot!
assert middleware.include?("Rack::Lock")
end
test "does not include lock if cache_classes is set and so is eager_load" do
add_to_config "config.cache_classes = true"
add_to_config "config.eager_load = true"
boot!
2010-01-05 01:34:42 +00:00
assert !middleware.include?("Rack::Lock")
end
test "does not include lock if allow_concurrency is set" do
add_to_config "config.allow_concurrency = true"
boot!
assert !middleware.include?("Rack::Lock")
end
test "removes static asset server if serve_static_files is disabled" do
add_to_config "config.serve_static_files = false"
2010-01-05 01:34:42 +00:00
boot!
assert !middleware.include?("ActionDispatch::Static")
end
2010-06-07 21:17:23 +00:00
test "can delete a middleware from the stack" do
add_to_config "config.middleware.delete ActionDispatch::Static"
boot!
assert !middleware.include?("ActionDispatch::Static")
end
test "includes exceptions middlewares even if action_dispatch.show_exceptions is disabled" do
add_to_config "config.action_dispatch.show_exceptions = false"
boot!
assert middleware.include?("ActionDispatch::ShowExceptions")
assert middleware.include?("ActionDispatch::DebugExceptions")
end
test "removes ActionDispatch::Reloader if cache_classes is true" do
add_to_config "config.cache_classes = true"
boot!
assert !middleware.include?("ActionDispatch::Reloader")
end
2010-01-05 01:34:42 +00:00
test "use middleware" do
use_frameworks []
add_to_config "config.middleware.use Rack::Config"
boot!
assert_equal "Rack::Config", middleware.last
end
test "insert middleware after" do
add_to_config "config.middleware.insert_after Rack::Sendfile, Rack::Config"
boot!
assert_equal "Rack::Config", middleware.second
end
test 'unshift middleware' do
add_to_config 'config.middleware.unshift Rack::Config'
boot!
assert_equal 'Rack::Config', middleware.first
end
2012-01-17 16:53:09 +00:00
test "Rails.cache does not respond to middleware" do
add_to_config "config.cache_store = :memory_store"
boot!
assert_equal "Rack::Runtime", middleware.fourth
end
2012-01-17 16:53:09 +00:00
test "Rails.cache does respond to middleware" do
boot!
assert_equal "Rack::Runtime", middleware.fifth
end
test "insert middleware before" do
add_to_config "config.middleware.insert_before Rack::Sendfile, Rack::Config"
boot!
assert_equal "Rack::Config", middleware.first
end
test "can't change middleware after it's built" do
boot!
assert_raise RuntimeError do
app.config.middleware.use Rack::Config
end
end
# ConditionalGet + Etag
test "conditional get + etag middlewares handle http caching based on body" do
make_basic_app
class ::OmgController < ActionController::Base
def index
if params[:nothing]
2012-10-14 10:03:39 +00:00
render text: ""
else
2012-10-14 10:03:39 +00:00
render text: "OMG"
end
end
end
2014-08-05 16:51:12 +00:00
etag = "W/" + "5af83e3196bf99f440f31f2e1a6c9afe".inspect
get "/"
assert_equal 200, last_response.status
assert_equal "OMG", last_response.body
assert_equal "text/html; charset=utf-8", last_response.headers["Content-Type"]
assert_equal "max-age=0, private, must-revalidate", last_response.headers["Cache-Control"]
assert_equal etag, last_response.headers["Etag"]
get "/", {}, "HTTP_IF_NONE_MATCH" => etag
assert_equal 304, last_response.status
assert_equal "", last_response.body
assert_equal nil, last_response.headers["Content-Type"]
assert_equal "max-age=0, private, must-revalidate", last_response.headers["Cache-Control"]
assert_equal etag, last_response.headers["Etag"]
get "/?nothing=true"
assert_equal 200, last_response.status
assert_equal "", last_response.body
assert_equal "text/html; charset=utf-8", last_response.headers["Content-Type"]
assert_equal "no-cache", last_response.headers["Cache-Control"]
assert_equal nil, last_response.headers["Etag"]
end
test "ORIGINAL_FULLPATH is passed to env" do
boot!
env = ::Rack::MockRequest.env_for("/foo/?something")
Rails.application.call(env)
assert_equal "/foo/?something", env["ORIGINAL_FULLPATH"]
end
2010-01-05 01:34:42 +00:00
private
2010-01-05 01:34:42 +00:00
def boot!
require "#{app_path}/config/environment"
end
def middleware
Rails.application.middleware.map(&:klass).map(&:name)
2010-01-05 01:34:42 +00:00
end
end
end