2008-05-17 23:22:34 -05:00
|
|
|
require 'abstract_unit'
|
2007-01-22 07:43:50 -06:00
|
|
|
|
|
|
|
# Provide some static controllers.
|
|
|
|
class BenchmarkedController < ActionController::Base
|
|
|
|
def public_action
|
|
|
|
render :nothing => true
|
|
|
|
end
|
|
|
|
|
|
|
|
def rescue_action(e)
|
|
|
|
raise e
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-02-04 14:26:08 -06:00
|
|
|
class BenchmarkTest < ActionController::TestCase
|
|
|
|
tests BenchmarkedController
|
|
|
|
|
2007-01-22 07:43:50 -06: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
|