Module: ActiveSupport::LogSubscriber::TestHelper
- Defined in:
 - lib/active_support/log_subscriber/test_helper.rb
 
Overview
Provides some helpers to deal with testing log subscribers by setting up notifications. Take for instance Active Record subscriber tests:
class SyncLogSubscriberTest < ActiveSupport::TestCase
  include ActiveSupport::LogSubscriber::TestHelper
  setup do
    ActiveRecord::LogSubscriber.attach_to(:active_record)
  end
  def test_basic_query_logging
    Developer.all.to_a
    wait
    assert_equal 1, @logger.logged(:debug).size
    assert_match(/Developer Load/, @logger.logged(:debug).last)
    assert_match(/SELECT \* FROM "developers"/, @logger.logged(:debug).last)
  end
end
All you need to do is to ensure that your log subscriber is added to Rails::Subscriber, as in the second line of the code above. The test helpers are responsible for setting up the queue and subscriptions, and turning colors in logs off.
The messages are available in the @logger instance, which is a logger with limited powers (it actually does not send anything to your output), and you can collect them doing @logger.logged(level), where level is the level used in logging, like info, debug, warn, and so on.
Defined Under Namespace
Classes: MockLogger
Instance Method Summary collapse
- 
  
    
      #set_logger(logger)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Overwrite if you use another logger in your log subscriber.
 - 
  
    
      #setup  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
:nodoc:.
 - 
  
    
      #teardown  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
:nodoc:.
 - 
  
    
      #wait  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Wait notifications to be published.
 
Instance Method Details
#set_logger(logger) ⇒ Object
Overwrite if you use another logger in your log subscriber.
def logger
  ActiveRecord::Base.logger = @logger
end
  
      101 102 103  | 
    
      # File 'lib/active_support/log_subscriber/test_helper.rb', line 101 def set_logger(logger) ActiveSupport::LogSubscriber.logger = logger end  | 
  
#setup ⇒ Object
:nodoc:
      38 39 40 41 42 43 44 45 46 47  | 
    
      # File 'lib/active_support/log_subscriber/test_helper.rb', line 38 def setup # :nodoc: @logger = MockLogger.new @notifier = ActiveSupport::Notifications::Fanout.new ActiveSupport::LogSubscriber.colorize_logging = false @old_notifier = ActiveSupport::Notifications.notifier set_logger(@logger) ActiveSupport::Notifications.notifier = @notifier end  | 
  
#teardown ⇒ Object
:nodoc:
      49 50 51 52  | 
    
      # File 'lib/active_support/log_subscriber/test_helper.rb', line 49 def teardown # :nodoc: set_logger(nil) ActiveSupport::Notifications.notifier = @old_notifier end  | 
  
#wait ⇒ Object
Wait notifications to be published.
      92 93 94  | 
    
      # File 'lib/active_support/log_subscriber/test_helper.rb', line 92 def wait @notifier.wait end  |