Class: Minitest::Reporters::DefaultReporter

Inherits:
BaseReporter
  • Object
show all
Includes:
Minitest::RelativePosition, ANSI::Code
Defined in:
lib/minitest/reporters/default_reporter.rb

Overview

A reporter identical to the standard Minitest reporter except with more colors.

Based upon Ryan Davis of Seattle.rb's Minitest (MIT License).

See Also:

Direct Known Subclasses

MeanTimeReporter

Constant Summary

Constants included from Minitest::RelativePosition

Minitest::RelativePosition::INFO_PADDING, Minitest::RelativePosition::MARK_SIZE, Minitest::RelativePosition::TEST_PADDING, Minitest::RelativePosition::TEST_SIZE

Instance Attribute Summary

Attributes inherited from BaseReporter

#tests

Instance Method Summary collapse

Methods included from ANSI::Code

#black, color?

Methods inherited from BaseReporter

#add_defaults, #after_test

Constructor Details

#initialize(options = {}) ⇒ DefaultReporter

Returns a new instance of DefaultReporter.



14
15
16
17
18
19
20
21
22
23
# File 'lib/minitest/reporters/default_reporter.rb', line 14

def initialize(options = {})
  super
  @detailed_skip = options.fetch(:detailed_skip, true)
  @slow_count = options.fetch(:slow_count, 0)
  @slow_suite_count = options.fetch(:slow_suite_count, 0)
  @suite_times = []
  @suite_start_times = {}
  @fast_fail = options.fetch(:fast_fail, false)
  @options = options
end

Instance Method Details

#after_suite(suite)



42
43
44
45
46
# File 'lib/minitest/reporters/default_reporter.rb', line 42

def after_suite(suite)
  super
  duration = suite_duration(suite)
  @suite_times << [suite.name, duration]
end

#before_suite(suite)



37
38
39
40
# File 'lib/minitest/reporters/default_reporter.rb', line 37

def before_suite(suite)
  @suite_start_times[suite] = Minitest::Reporters.clock_time
  super
end

#before_test(test)



32
33
34
35
# File 'lib/minitest/reporters/default_reporter.rb', line 32

def before_test(test)
  super
  print "\n#{test.class}##{test.name} " if options[:verbose]
end


127
128
129
130
131
132
133
# File 'lib/minitest/reporters/default_reporter.rb', line 127

def print_failure(test)
  message = message_for(test)
  unless message.nil? || message.strip == ''
    puts
    puts colored_for(result(test), message)
  end
end

#record(test)



48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/minitest/reporters/default_reporter.rb', line 48

def record(test)
  super

  print "#{"%.2f" % test.time} = " if options[:verbose]

  # Print the pass/skip/fail mark
  print(if test.passed?
    record_pass(test)
  elsif test.skipped?
    record_skip(test)
  elsif test.failure
    record_failure(test)
  end)

  # Print fast_fail information
  if @fast_fail && (test.skipped? || test.failure)
    print_failure(test)
  end
end

#record_failure(record)



76
77
78
# File 'lib/minitest/reporters/default_reporter.rb', line 76

def record_failure(record)
  red(record.result_code)
end

#record_pass(record)



68
69
70
# File 'lib/minitest/reporters/default_reporter.rb', line 68

def record_pass(record)
  green(record.result_code)
end

#record_skip(record)



72
73
74
# File 'lib/minitest/reporters/default_reporter.rb', line 72

def record_skip(record)
  yellow(record.result_code)
end

#report Also known as: to_s



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# File 'lib/minitest/reporters/default_reporter.rb', line 80

def report
  super
  status_line = "Finished tests in %.6fs, %.4f tests/s, %.4f assertions/s." %
    [total_time, count / total_time, assertions / total_time]

  puts
  puts
  puts colored_for(suite_result, status_line)
  puts

  unless @fast_fail
    tests.reject(&:passed?).each do |test|
      print_failure(test)
    end
  end

  if @slow_count > 0
    slow_tests = tests.sort_by(&:time).reverse.take(@slow_count)

    puts
    puts "Slowest tests:"
    puts

    slow_tests.each do |test|
      puts "%.6fs %s" % [test.time, "#{test.name}##{test.class}"]
    end
  end

  if @slow_suite_count > 0
    slow_suites = @suite_times.sort_by { |x| x[1] }.reverse.take(@slow_suite_count)

    puts
    puts "Slowest test classes:"
    puts

    slow_suites.each do |slow_suite|
      puts "%.6fs %s" % [slow_suite[1], slow_suite[0]]
    end
  end

  puts
  print colored_for(suite_result, result_line)
  puts
end

#start



25
26
27
28
29
30
# File 'lib/minitest/reporters/default_reporter.rb', line 25

def start
  super
  puts
  puts("# Running tests with run options %s:" % options[:args])
  puts
end