2017-07-09 13:41:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2011-06-06 14:17:44 -04:00
|
|
|
require "cases/helper"
|
2008-06-10 18:48:16 -04:00
|
|
|
|
|
|
|
class DatabaseStatementsTest < ActiveRecord::TestCase
|
|
|
|
def setup
|
|
|
|
@connection = ActiveRecord::Base.connection
|
|
|
|
end
|
|
|
|
|
2016-07-03 10:29:41 -04:00
|
|
|
unless current_adapter?(:OracleAdapter)
|
|
|
|
def test_exec_insert
|
|
|
|
result = @connection.exec_insert("INSERT INTO accounts (firm_id,credit_limit) VALUES (42,5000)", nil, [])
|
|
|
|
assert_not_nil @connection.send(:last_inserted_id, result)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-06-10 18:48:16 -04:00
|
|
|
def test_insert_should_return_the_inserted_id
|
2016-01-04 18:05:46 -05:00
|
|
|
assert_not_nil return_the_inserted_id(method: :insert)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_create_should_return_the_inserted_id
|
|
|
|
assert_not_nil return_the_inserted_id(method: :create)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
2016-08-06 13:55:02 -04:00
|
|
|
def return_the_inserted_id(method:)
|
|
|
|
# Oracle adapter uses prefetched primary key values from sequence and passes them to connection adapter insert method
|
|
|
|
if current_adapter?(:OracleAdapter)
|
|
|
|
sequence_name = "accounts_seq"
|
|
|
|
id_value = @connection.next_sequence_value(sequence_name)
|
|
|
|
@connection.send(method, "INSERT INTO accounts (id, firm_id,credit_limit) VALUES (accounts_seq.nextval,42,5000)", nil, :id, id_value, sequence_name)
|
|
|
|
else
|
|
|
|
@connection.send(method, "INSERT INTO accounts (firm_id,credit_limit) VALUES (42,5000)")
|
|
|
|
end
|
2009-03-22 18:08:37 -04:00
|
|
|
end
|
2008-06-10 18:48:16 -04:00
|
|
|
end
|