Class: Recog::VerifyReporter

Inherits:
Object
  • Object
show all
Defined in:
lib/recog/verify_reporter.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options, formatter, path = nil) ⇒ VerifyReporter

Returns a new instance of VerifyReporter.



7
8
9
10
11
12
# File 'lib/recog/verify_reporter.rb', line 7

def initialize(options, formatter, path = nil)
  @options = options
  @formatter = formatter
  @path = path
  reset_counts
end

Instance Attribute Details

#failure_countObject (readonly)

Returns the value of attribute failure_count.



5
6
7
# File 'lib/recog/verify_reporter.rb', line 5

def failure_count
  @failure_count
end

#formatterObject (readonly)

Returns the value of attribute formatter.



5
6
7
# File 'lib/recog/verify_reporter.rb', line 5

def formatter
  @formatter
end

#success_countObject (readonly)

Returns the value of attribute success_count.



5
6
7
# File 'lib/recog/verify_reporter.rb', line 5

def success_count
  @success_count
end

#warning_countObject (readonly)

Returns the value of attribute warning_count.



5
6
7
# File 'lib/recog/verify_reporter.rb', line 5

def warning_count
  @warning_count
end

Instance Method Details

#failure(text, line = nil) ⇒ Object



33
34
35
36
# File 'lib/recog/verify_reporter.rb', line 33

def failure(text, line = nil)
  @failure_count += 1
  formatter.failure_message("#{path_label(line)}#{padding}FAIL: #{text}")
end


50
51
52
# File 'lib/recog/verify_reporter.rb', line 50

def print_fingerprint_count(count)
  formatter.status_message("\nVerified #{count} fingerprints:")
end


38
39
40
41
42
43
# File 'lib/recog/verify_reporter.rb', line 38

def print_name(fingerprint)
  return unless detail? && fingerprint.tests.any?

  name = fingerprint.name.empty? ? '[unnamed]' : fingerprint.name
  formatter.status_message("\n#{name}")
end


54
55
56
# File 'lib/recog/verify_reporter.rb', line 54

def print_summary
  colorize_summary(summary_line)
end

#report(fingerprint_count) {|_self| ... } ⇒ Object

Yields:

  • (_self)

Yield Parameters:



14
15
16
17
18
19
# File 'lib/recog/verify_reporter.rb', line 14

def report(fingerprint_count)
  reset_counts
  formatter.status_message("\n#{@path}:\n") if detail? && !@path.to_s.empty?
  yield self
  summarize(fingerprint_count) unless @options.quiet
end

#success(text) ⇒ Object



21
22
23
24
# File 'lib/recog/verify_reporter.rb', line 21

def success(text)
  @success_count += 1
  formatter.success_message("#{padding}#{text}") if detail?
end

#summarize(fingerprint_count) ⇒ Object



45
46
47
48
# File 'lib/recog/verify_reporter.rb', line 45

def summarize(fingerprint_count)
  print_fingerprint_count(fingerprint_count) if detail?
  print_summary
end

#warning(text, line = nil) ⇒ Object



26
27
28
29
30
31
# File 'lib/recog/verify_reporter.rb', line 26

def warning(text, line = nil)
  return unless @options.warnings

  @warning_count += 1
  formatter.warning_message("#{path_label(line)}#{padding}WARN: #{text}")
end