Class: ActiveSupport::LogSubscriber::TestHelper::MockLogger

Inherits:
Object
  • Object
show all
Includes:
BufferedLogger::Severity
Defined in:
activesupport/lib/active_support/log_subscriber/test_helper.rb

Constant Summary

Constants included from BufferedLogger::Severity

BufferedLogger::Severity::DEBUG, BufferedLogger::Severity::ERROR, BufferedLogger::Severity::FATAL, BufferedLogger::Severity::INFO, BufferedLogger::Severity::UNKNOWN, BufferedLogger::Severity::WARN

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(level = DEBUG) ⇒ MockLogger

Returns a new instance of MockLogger.



58
59
60
61
62
# File 'activesupport/lib/active_support/log_subscriber/test_helper.rb', line 58

def initialize(level = DEBUG)
  @flush_count = 0
  @level = level
  @logged = Hash.new { |h,k| h[k] = [] }
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(level, message) ⇒ Object



64
65
66
# File 'activesupport/lib/active_support/log_subscriber/test_helper.rb', line 64

def method_missing(level, message)
  @logged[level] << message
end

Instance Attribute Details

#flush_countObject (readonly)

Returns the value of attribute flush_count



55
56
57
# File 'activesupport/lib/active_support/log_subscriber/test_helper.rb', line 55

def flush_count
  @flush_count
end

#levelObject

Returns the value of attribute level



56
57
58
# File 'activesupport/lib/active_support/log_subscriber/test_helper.rb', line 56

def level
  @level
end

Instance Method Details

#flushObject



72
73
74
# File 'activesupport/lib/active_support/log_subscriber/test_helper.rb', line 72

def flush
  @flush_count += 1
end

#logged(level) ⇒ Object



68
69
70
# File 'activesupport/lib/active_support/log_subscriber/test_helper.rb', line 68

def logged(level)
  @logged[level].compact.map { |l| l.to_s.strip }
end