2011-06-06 14:17:44 -04:00
|
|
|
require 'cases/helper'
|
2011-02-10 12:56:50 -05:00
|
|
|
require 'models/topic'
|
|
|
|
|
|
|
|
module ActiveRecord
|
|
|
|
class BindParameterTest < ActiveRecord::TestCase
|
2011-02-10 16:34:33 -05:00
|
|
|
fixtures :topics
|
|
|
|
|
2011-02-10 12:56:50 -05:00
|
|
|
class LogListener
|
|
|
|
attr_accessor :calls
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
@calls = []
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(*args)
|
|
|
|
calls << args
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def setup
|
|
|
|
super
|
|
|
|
@connection = ActiveRecord::Base.connection
|
2014-03-29 09:52:56 -04:00
|
|
|
@subscriber = LogListener.new
|
2014-05-23 13:59:30 -04:00
|
|
|
@pk = Topic.columns_hash[Topic.primary_key]
|
2014-03-29 09:52:56 -04:00
|
|
|
@subscription = ActiveSupport::Notifications.subscribe('sql.active_record', @subscriber)
|
2011-02-10 12:56:50 -05:00
|
|
|
end
|
|
|
|
|
2014-03-14 00:35:58 -04:00
|
|
|
teardown do
|
2014-03-29 09:52:56 -04:00
|
|
|
ActiveSupport::Notifications.unsubscribe(@subscription)
|
2011-02-10 12:56:50 -05:00
|
|
|
end
|
|
|
|
|
2013-11-08 10:57:51 -05:00
|
|
|
if ActiveRecord::Base.connection.supports_statement_cache?
|
|
|
|
def test_binds_are_logged
|
|
|
|
sub = @connection.substitute_at(@pk, 0)
|
|
|
|
binds = [[@pk, 1]]
|
|
|
|
sql = "select * from topics where id = #{sub}"
|
2011-02-10 12:56:50 -05:00
|
|
|
|
2013-11-08 10:57:51 -05:00
|
|
|
@connection.exec_query(sql, 'SQL', binds)
|
2011-02-10 12:56:50 -05:00
|
|
|
|
2014-03-29 09:52:56 -04:00
|
|
|
message = @subscriber.calls.find { |args| args[4][:sql] == sql }
|
2013-11-08 10:57:51 -05:00
|
|
|
assert_equal binds, message[4][:binds]
|
|
|
|
end
|
2011-02-10 16:34:33 -05:00
|
|
|
|
2013-11-09 05:09:20 -05:00
|
|
|
def test_binds_are_logged_after_type_cast
|
|
|
|
sub = @connection.substitute_at(@pk, 0)
|
|
|
|
binds = [[@pk, "3"]]
|
|
|
|
sql = "select * from topics where id = #{sub}"
|
|
|
|
|
|
|
|
@connection.exec_query(sql, 'SQL', binds)
|
|
|
|
|
2014-03-29 09:52:56 -04:00
|
|
|
message = @subscriber.calls.find { |args| args[4][:sql] == sql }
|
2013-11-09 05:09:20 -05:00
|
|
|
assert_equal [[@pk, 3]], message[4][:binds]
|
|
|
|
end
|
|
|
|
|
2013-11-08 10:57:51 -05:00
|
|
|
def test_find_one_uses_binds
|
|
|
|
Topic.find(1)
|
|
|
|
binds = [[@pk, 1]]
|
2014-03-29 09:52:56 -04:00
|
|
|
message = @subscriber.calls.find { |args| args[4][:binds] == binds }
|
2013-11-08 10:57:51 -05:00
|
|
|
assert message, 'expected a message with binds'
|
|
|
|
end
|
2011-02-10 16:34:33 -05:00
|
|
|
|
2013-11-08 10:57:51 -05:00
|
|
|
def test_logs_bind_vars
|
|
|
|
payload = {
|
|
|
|
:name => 'SQL',
|
|
|
|
:sql => 'select * from topics where id = ?',
|
2014-05-23 13:59:30 -04:00
|
|
|
:binds => [[@pk, 10]]
|
2013-11-08 10:57:51 -05:00
|
|
|
}
|
|
|
|
event = ActiveSupport::Notifications::Event.new(
|
|
|
|
'foo',
|
|
|
|
Time.now,
|
|
|
|
Time.now,
|
|
|
|
123,
|
|
|
|
payload)
|
2011-02-10 16:34:33 -05:00
|
|
|
|
|
|
|
logger = Class.new(ActiveRecord::LogSubscriber) {
|
|
|
|
attr_reader :debugs
|
|
|
|
def initialize
|
|
|
|
super
|
|
|
|
@debugs = []
|
|
|
|
end
|
|
|
|
|
|
|
|
def debug str
|
|
|
|
@debugs << str
|
|
|
|
end
|
|
|
|
}.new
|
|
|
|
|
|
|
|
logger.sql event
|
2014-05-23 13:59:30 -04:00
|
|
|
assert_match([[@pk.name, 10]].inspect, logger.debugs.first)
|
2013-11-08 10:57:51 -05:00
|
|
|
end
|
2012-05-13 03:27:52 -04:00
|
|
|
end
|
2011-02-10 12:56:50 -05:00
|
|
|
end
|
|
|
|
end
|