Sha256: d4cdf40db31622602ed4b675b2e2701b1b89e6293d52f74086370513624fa5ed

Contents?: true

Size: 1.88 KB

Versions: 12

Compression:

Stored size: 1.88 KB

Contents

#!/usr/bin/env ruby
# encoding: UTF-8

require File.expand_path('../test_helper', __FILE__)
require 'stringio'
require 'fileutils'
require 'tmpdir'
require_relative 'prime'

# --  Tests ----
class PrinterGraphHtmlTest < TestCase
  def setup
    # WALL_TIME so we can use sleep in our test and get same measurements on linux and windows
    RubyProf::measure_mode = RubyProf::WALL_TIME
    @result = RubyProf.profile do
      run_primes(1000, 5000)
    end
  end

  def graph_html_output_nth_column_values(output, n)
    only_root_calls = output.split('<tr class="method">')
    only_root_calls.delete_at(0)
    only_root_calls.collect {|line| line.scan(/[\d\.]+/)[n - 1] }
  end

  def assert_sorted array
    array = array.map{|n| n.to_f} # allow for > 10s times to sort right, since lexographically 4.0 > 10.0
    assert_equal array, array.sort.reverse, "Array #{array.inspect} is not sorted"
  end

  def test_graph_html_string
    output = ''
    printer = RubyProf::GraphHtmlPrinter.new(@result)
    printer.print(output)

    assert_match(/<!DOCTYPE html>/i, output)
    assert_match( %r{<th>Total</th>}i, output)
    assert_match(/Object#run_primes/i, output)
  end

  def test_graph_html_result_sorting_by_total_time_is_default
    printer = RubyProf::GraphHtmlPrinter.new(@result)
    printer.print(output = '')
    total_times = graph_html_output_nth_column_values(output, 3)

    assert_sorted total_times
  end

  def test_graph_html_result_sorting
    printer = RubyProf::GraphHtmlPrinter.new(@result)

    sort_method_with_column_number = {:total_time => 3, :self_time => 4, :wait_time => 5, :children_time => 6}

    sort_method_with_column_number.each_pair do |sort_method, n|
      printer.print(output = '', :sort_method => sort_method)
      times = graph_html_output_nth_column_values(output, n)
      assert_sorted times
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
ruby-prof-1.4.1-x64-mingw32 test/printer_graph_html_test.rb
ruby-prof-1.4.1 test/printer_graph_html_test.rb
ruby-prof-1.4.0-x64-mingw32 test/printer_graph_html_test.rb
ruby-prof-1.4.0 test/printer_graph_html_test.rb
ruby-prof-1.3.2 test/printer_graph_html_test.rb
ruby-prof-1.3.1-x64-mingw32 test/printer_graph_html_test.rb
ruby-prof-1.3.1 test/printer_graph_html_test.rb
ruby-prof-1.3.0-x64-mingw32 test/printer_graph_html_test.rb
ruby-prof-1.3.0 test/printer_graph_html_test.rb
ruby-prof-1.2.0 test/printer_graph_html_test.rb
ruby-prof-1.1.0-x64-mingw32 test/printer_graph_html_test.rb
ruby-prof-1.1.0 test/printer_graph_html_test.rb