Class: Minitest::TestProf::FactoryDoctorReporter

Inherits:
BaseReporter
  • Object
show all
Defined in:
lib/test_prof/factory_doctor/minitest.rb

Overview

:nodoc:

Constant Summary collapse

SUCCESS_MESSAGE =
'FactoryDoctor says: "Looks good to me!"'

Constants included from TestProf::Logging

TestProf::Logging::COLORS

Instance Attribute Summary

Attributes inherited from BaseReporter

#io

Instance Method Summary collapse

Methods inherited from BaseReporter

#after_test, #before_test, #start

Methods included from TestProf::Logging

#build_log_msg, #colorize, #log

Constructor Details

#initialize(io = $stdout, options = {}) ⇒ FactoryDoctorReporter

Returns a new instance of FactoryDoctorReporter.



22
23
24
25
26
27
28
# File 'lib/test_prof/factory_doctor/minitest.rb', line 22

def initialize(io = $stdout, options = {})
  super
  ::TestProf::FactoryDoctor.init
  @count = 0
  @time = 0.0
  @example_groups = Hash.new { |h, k| h[k] = [] }
end

Instance Method Details

#prerecord(_group, _example) ⇒ Object



30
31
32
# File 'lib/test_prof/factory_doctor/minitest.rb', line 30

def prerecord(_group, _example)
  ::TestProf::FactoryDoctor.start
end

#record(example) ⇒ Object



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
# File 'lib/test_prof/factory_doctor/minitest.rb', line 34

def record(example)
  ::TestProf::FactoryDoctor.stop
  return if example.skipped? || ::TestProf::FactoryDoctor.ignore?

  result = ::TestProf::FactoryDoctor.result
  return unless result.bad?

  # Minitest::Result (>= 5.11) has `klass` method
  group_name = example.respond_to?(:klass) ? example.klass : example.class.name

  group = {
    description: group_name,
    location: location_without_line_number(example)
  }

  @example_groups[group] << {
    description: example.name.gsub(/^test_(?:\d+_)?/, ""),
    location: location_with_line_number(example),
    factories: result.count,
    time: result.time
  }

  @count += 1
  @time += result.time
end

#reportObject



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/test_prof/factory_doctor/minitest.rb', line 60

def report
  return log(:info, SUCCESS_MESSAGE) if @example_groups.empty?

  msgs = []

  msgs <<
    <<~MSG
      FactoryDoctor report

      Total (potentially) bad examples: #{@count}
      Total wasted time: #{@time.duration}

    MSG

  @example_groups.each do |group, examples|
    msgs << "#{group[:description]} (#{group[:location]})\n"
    examples.each do |ex|
      msgs << "  #{ex[:description]} (#{ex[:location]}) "\
              "#{pluralize_records(ex[:factories])} created, "\
              "#{ex[:time].duration}\n"
    end
    msgs << "\n"
  end

  log :info, msgs.join
end