2012-02-03 19:06:50 -05:00
|
|
|
require 'cases/helper'
|
2013-04-16 16:46:55 -04:00
|
|
|
require 'active_record/explain_subscriber'
|
|
|
|
require 'active_record/explain_registry'
|
2012-02-03 19:06:50 -05:00
|
|
|
|
|
|
|
if ActiveRecord::Base.connection.supports_explain?
|
|
|
|
class ExplainSubscriberTest < ActiveRecord::TestCase
|
|
|
|
SUBSCRIBER = ActiveRecord::ExplainSubscriber.new
|
|
|
|
|
2013-04-16 16:46:55 -04:00
|
|
|
def setup
|
|
|
|
ActiveRecord::ExplainRegistry.reset
|
|
|
|
ActiveRecord::ExplainRegistry.collect = true
|
2012-02-03 19:06:50 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_collects_nothing_if_the_payload_has_an_exception
|
2013-04-16 16:46:55 -04:00
|
|
|
SUBSCRIBER.finish(nil, nil, exception: Exception.new)
|
|
|
|
assert queries.empty?
|
2012-02-03 19:06:50 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_collects_nothing_for_ignored_payloads
|
2013-04-16 16:46:55 -04:00
|
|
|
ActiveRecord::ExplainSubscriber::IGNORED_PAYLOADS.each do |ip|
|
|
|
|
SUBSCRIBER.finish(nil, nil, name: ip)
|
2012-02-03 19:06:50 -05:00
|
|
|
end
|
2013-04-16 16:46:55 -04:00
|
|
|
assert queries.empty?
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_collects_nothing_if_collect_is_false
|
|
|
|
ActiveRecord::ExplainRegistry.collect = false
|
|
|
|
SUBSCRIBER.finish(nil, nil, name: 'SQL', sql: 'select 1 from users', binds: [1, 2])
|
|
|
|
assert queries.empty?
|
2012-02-03 19:06:50 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_collects_pairs_of_queries_and_binds
|
|
|
|
sql = 'select 1 from users'
|
|
|
|
binds = [1, 2]
|
2013-04-16 16:46:55 -04:00
|
|
|
SUBSCRIBER.finish(nil, nil, name: 'SQL', sql: sql, binds: binds)
|
|
|
|
assert_equal 1, queries.size
|
|
|
|
assert_equal sql, queries[0][0]
|
|
|
|
assert_equal binds, queries[0][1]
|
2012-02-03 19:06:50 -05:00
|
|
|
end
|
|
|
|
|
2013-04-16 16:46:55 -04:00
|
|
|
def test_collects_nothing_if_the_statement_is_not_whitelisted
|
|
|
|
SUBSCRIBER.finish(nil, nil, name: 'SQL', sql: 'SHOW max_identifier_length')
|
|
|
|
assert queries.empty?
|
|
|
|
end
|
|
|
|
|
2013-05-10 10:21:59 -04:00
|
|
|
def test_collects_nothing_if_the_statement_is_only_partially_matched
|
|
|
|
SUBSCRIBER.finish(nil, nil, name: 'SQL', sql: 'select_db yo_mama')
|
|
|
|
assert queries.empty?
|
|
|
|
end
|
|
|
|
|
2014-03-14 00:35:58 -04:00
|
|
|
teardown do
|
2013-04-16 16:46:55 -04:00
|
|
|
ActiveRecord::ExplainRegistry.reset
|
2012-09-15 21:43:30 -04:00
|
|
|
end
|
|
|
|
|
2013-04-16 16:46:55 -04:00
|
|
|
def queries
|
|
|
|
ActiveRecord::ExplainRegistry.queries
|
2012-02-03 19:06:50 -05:00
|
|
|
end
|
|
|
|
end
|
2012-06-20 17:20:55 -04:00
|
|
|
end
|