mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
56 lines
1.5 KiB
Ruby
56 lines
1.5 KiB
Ruby
require "isolation/abstract_unit"
|
|
|
|
module ApplicationTests
|
|
class NotificationsTest < ActiveSupport::TestCase
|
|
include ActiveSupport::Testing::Isolation
|
|
|
|
def setup
|
|
build_app
|
|
boot_rails
|
|
end
|
|
|
|
def teardown
|
|
teardown_app
|
|
end
|
|
|
|
def instrument(*args, &block)
|
|
ActiveSupport::Notifications.instrument(*args, &block)
|
|
end
|
|
|
|
def wait
|
|
ActiveSupport::Notifications.notifier.wait
|
|
end
|
|
|
|
test "rails log_subscribers are added" do
|
|
add_to_config <<-RUBY
|
|
config.colorize_logging = false
|
|
RUBY
|
|
|
|
require "#{app_path}/config/environment"
|
|
require "active_support/log_subscriber/test_helper"
|
|
|
|
logger = ActiveSupport::LogSubscriber::TestHelper::MockLogger.new
|
|
ActiveRecord::Base.logger = logger
|
|
|
|
# Mimic Active Record notifications
|
|
instrument "sql.active_record", name: "SQL", sql: "SHOW tables"
|
|
wait
|
|
|
|
assert_equal 1, logger.logged(:debug).size
|
|
assert_match(/SHOW tables/, logger.logged(:debug).last)
|
|
end
|
|
|
|
test 'rails load_config_initializer event is instrumented' do
|
|
app_file 'config/initializers/foo.rb', ''
|
|
|
|
events = []
|
|
callback = ->(*_) { events << _ }
|
|
ActiveSupport::Notifications.subscribed(callback, 'load_config_initializer.railties') do
|
|
app
|
|
end
|
|
|
|
assert_equal %w[load_config_initializer.railties], events.map(&:first)
|
|
assert_includes events.first.last[:initializer], 'config/initializers/foo.rb'
|
|
end
|
|
end
|
|
end
|