Sha256: 534eae4ebe7fd510376f6d97c24bfa2f1f8e7a15e137ce00b5a578d8eaf04d38

Contents?: true

Size: 1.3 KB

Versions: 12

Compression:

Stored size: 1.3 KB

Contents

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

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

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

  def graph_output_nth_column_values(output, n)
    only_root_calls = output.split("\n").select { |line| line =~ /^ +[\d\.]+%/ }
    only_root_calls.collect { |line| line.split(/ +/)[n] }
  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_results_sorting
    printer = RubyProf::GraphPrinter.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_output_nth_column_values(output, n)
      assert_sorted times
    end
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
ruby-prof-1.7.1-x64-mingw-ucrt test/printer_graph_test.rb
ruby-prof-1.7.1 test/printer_graph_test.rb
ruby-prof-1.7.0-x64-mingw-ucrt test/printer_graph_test.rb
ruby-prof-1.7.0 test/printer_graph_test.rb
honeybadger-5.4.0 vendor/bundle/ruby/3.2.0/gems/ruby-prof-1.6.3/test/printer_graph_test.rb
honeybadger-5.3.0 vendor/bundle/ruby/3.2.0/gems/ruby-prof-1.6.3/test/printer_graph_test.rb
ruby-prof-1.6.3-x64-mingw-ucrt test/printer_graph_test.rb
ruby-prof-1.6.3 test/printer_graph_test.rb
ruby-prof-1.6.2-x64-mingw-ucrt test/printer_graph_test.rb
ruby-prof-1.6.2 test/printer_graph_test.rb
ruby-prof-1.6.1 test/printer_graph_test.rb
ruby-prof-1.6.1-x64-mingw-ucrt test/printer_graph_test.rb