Sha256: 2724898d3146f3213fa3b829d11e64a8c98b6ecb608aade4ea955e84e5096992

Contents?: true

Size: 1.36 KB

Versions: 7

Compression:

Stored size: 1.36 KB

Contents

require 'test/spec'
require 'rack/mock'

begin
  require 'rack/contrib/profiler'

  context 'Rack::Profiler' do
    app = lambda { |env| [200, {'Content-Type' => 'text/plain'}, 'Oh hai der'] }
    request = Rack::MockRequest.env_for("/", :params => "profile=process_time")

    specify 'printer defaults to RubyProf::CallTreePrinter' do
      profiler = Rack::Profiler.new(nil)
      profiler.instance_variable_get('@printer').should.equal RubyProf::CallTreePrinter
      profiler.instance_variable_get('@times').should.equal 1
    end

    specify 'CallTreePrinter has correct headers' do
      headers = Rack::Profiler.new(app).call(request)[1]
      headers.should.equal "Content-Disposition"=>"attachment; filename=\"/.process_time.tree\"", "Content-Type"=>"application/octet-stream"
    end

    specify 'FlatPrinter and GraphPrinter has Content-Type text/plain' do
      %w(flat graph).each do |printer|
        headers = Rack::Profiler.new(app, :printer => printer.to_sym).call(request)[1]
        headers.should.equal "Content-Type"=>"text/plain"
      end
    end

    specify 'GraphHtmlPrinter has Content-Type text/html' do
      headers = Rack::Profiler.new(app, :printer => :graph_html).call(request)[1]
      headers.should.equal "Content-Type"=>"text/html"
    end
  end

rescue LoadError => boom
  $stderr.puts "WARN: Skipping Rack::Profiler tests (ruby-prof not installed)"
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
rack-contrib-1.1.0 test/spec_rack_profiler.rb
corntrace-rack-contrib-1.0.2.3 test/spec_rack_profiler.rb
corntrace-rack-contrib-1.0.2.2 test/spec_rack_profiler.rb
corntrace-rack-contrib-1.0.2.1 test/spec_rack_profiler.rb
corntrace-rack-contrib-1.0.2 test/spec_rack_profiler.rb
rack-contrib-1.0.1 test/spec_rack_profiler.rb
rack-contrib-1.0.0 test/spec_rack_profiler.rb