Module: TestProf::FactoryProf::Printers::Simple
- Extended by:
- Logging
- Defined in:
- lib/test_prof/factory_prof/printers/simple.rb
Overview
:nodoc: all
Constant Summary
Constants included from Logging
Class Method Summary collapse
Methods included from Logging
Class Method Details
.dump(result, start_time:, threshold:) ⇒ Object
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 |
# File 'lib/test_prof/factory_prof/printers/simple.rb', line 12 def dump(result, start_time:, threshold:) return log(:info, "No factories detected") if result.raw_stats == {} msgs = [] total_run_time = TestProf.now - start_time total_count = result.stats.sum { |stat| stat[:total_count] } total_top_level_count = result.stats.sum { |stat| stat[:top_level_count] } total_time = result.stats.sum { |stat| stat[:top_level_time] } total_uniq_factories = result.stats.map { |stat| stat[:name] }.uniq.count msgs << <<~MSG Factories usage Total: #{total_count} Total top-level: #{total_top_level_count} Total time: #{total_time.duration} (out of #{total_run_time.duration}) Total uniq factories: #{total_uniq_factories} name total top-level total time time per call top-level time MSG result.stats.each do |stat| next if stat[:total_count] < threshold msgs << format("%-3s%-20s %8d %11d %13.4fs %17.4fs %18.4fs", *format_args(stat)) # move other variation ("[...]") to the end of the array sorted_variations = stat[:variations].sort_by.with_index do |variation, i| (variation[:name] == "[...]") ? stat[:variations].size + 1 : i end sorted_variations.each do |variation_stat| next if variation_stat[:total_count] < threshold msgs << format("%-5s%-18s %8d %11d %13.4fs %17.4fs %18.4fs", *format_args(variation_stat)) end end log :info, msgs.join("\n") end |