2008-01-05 08:32:06 -05:00
|
|
|
require 'abstract_unit'
|
2005-08-23 05:43:36 -04:00
|
|
|
|
2006-02-26 12:49:09 -05:00
|
|
|
# Provide some static controllers.
|
|
|
|
class BenchmarkedController < ActionController::Base
|
|
|
|
def public_action
|
|
|
|
render :nothing => true
|
|
|
|
end
|
2005-08-23 05:43:36 -04:00
|
|
|
|
2006-02-26 12:49:09 -05:00
|
|
|
def rescue_action(e)
|
|
|
|
raise e
|
2005-08-23 05:43:36 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-01-07 16:23:10 -05:00
|
|
|
class BenchmarkTest < ActionController::TestCase
|
|
|
|
tests BenchmarkedController
|
|
|
|
|
2005-08-23 05:43:36 -04:00
|
|
|
class MockLogger
|
|
|
|
def method_missing(*args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def setup
|
|
|
|
# benchmark doesn't do anything unless a logger is set
|
|
|
|
@controller.logger = MockLogger.new
|
|
|
|
@request.host = "test.actioncontroller.i"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_with_http_1_0_request
|
|
|
|
@request.host = nil
|
|
|
|
assert_nothing_raised { get :public_action }
|
|
|
|
end
|
|
|
|
end
|