aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/examples/minimal.rb
blob: 9eb92cd8e733a79868a0be438761fe6f56199cdc (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
# Pass NEW=1 to run with the new Base
ENV['RAILS_ENV'] ||= 'production'
ENV['NO_RELOAD'] ||= '1'

$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"
require 'action_controller'
require 'action_controller/new_base' if ENV['NEW']
require 'benchmark'

class Runner
  def initialize(app)
    @app = app
  end

  def call(env)
    env['n'].to_i.times { @app.call(env) }
    @app.call(env).tap { |response| report(env, response) }
  end

  def report(env, response)
    out = env['rack.errors']
    out.puts response[0], response[1].to_yaml, '---'
    response[2].each { |part| out.puts part }
    out.puts '---'
  end

  def self.run(app, n, label = nil)
    puts '=' * label.size, label, '=' * label.size if label
    env = { 'n' => n, 'rack.input' => StringIO.new(''), 'rack.errors' => $stdout }
    t = Benchmark.realtime { new(app).call(env) }
    puts "%d ms / %d req = %.1f usec/req" % [10**3 * t, n, 10**6 * t / n]
    puts
  end
end


N = (ENV['N'] || 1000).to_i

class BasePostController < ActionController::Base
  def index
    render :text => ''
  end
end

OK = [200, {}, []]
MetalPostController = lambda { OK }

if ActionController.const_defined?(:Http)
  class HttpPostController < ActionController::Http
    def index
      self.response_body = ''
    end
  end
end

Runner.run(MetalPostController, N, 'metal')
Runner.run(HttpPostController.action(:index), N, 'http') if defined? HttpPostController
Runner.run(BasePostController.action(:index), N, 'base')