跳至内容 跳至搜索

提供了一些辅助方法来处理通过设置通知来测试日志订阅者。例如 Active Record 订阅者测试

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

您只需要确保您的日志订阅者已添加到 Rails::Subscriber,如上面的代码第二行所示。测试助手负责设置队列和订阅,以及关闭日志中的颜色。

消息可以在 @logger 实例中获得,@logger 是一个功能有限的记录器(它实际上不会将任何内容发送到您的输出),您可以通过 @logger.logged(level) 收集消息,其中 level 是记录中使用的级别,例如 info、debug、warn 等。

命名空间
方法
S
W

实例公共方法

set_logger(logger)

如果您在日志订阅者中使用其他记录器,则覆盖它。

def logger
  ActiveRecord::Base.logger = @logger
end
# File activesupport/lib/active_support/log_subscriber/test_helper.rb, line 101
def set_logger(logger)
  ActiveSupport::LogSubscriber.logger = logger
end

wait()

等待发布通知。

# File activesupport/lib/active_support/log_subscriber/test_helper.rb, line 92
def wait
  @notifier.wait
end