| 1 |
require 'abstract_unit' |
|---|
| 2 |
require 'fixtures/default' |
|---|
| 3 |
require 'fixtures/post' |
|---|
| 4 |
require 'fixtures/task' |
|---|
| 5 |
|
|---|
| 6 |
class SqlServerAdapterTest < Test::Unit::TestCase |
|---|
| 7 |
class TableWithRealColumn < ActiveRecord::Base; end |
|---|
| 8 |
|
|---|
| 9 |
fixtures :posts, :tasks |
|---|
| 10 |
|
|---|
| 11 |
def setup |
|---|
| 12 |
@connection = ActiveRecord::Base.connection |
|---|
| 13 |
end |
|---|
| 14 |
|
|---|
| 15 |
def teardown |
|---|
| 16 |
@connection.execute("SET LANGUAGE us_english") rescue nil |
|---|
| 17 |
end |
|---|
| 18 |
|
|---|
| 19 |
def test_real_column_has_float_type |
|---|
| 20 |
assert_equal :float, TableWithRealColumn.columns_hash["real_number"].type |
|---|
| 21 |
end |
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
def test_date_insertion_when_language_is_german |
|---|
| 26 |
@connection.execute("SET LANGUAGE deutsch") |
|---|
| 27 |
|
|---|
| 28 |
assert_nothing_raised do |
|---|
| 29 |
Task.create(:starting => Time.utc(2000, 1, 31, 5, 42, 0), :ending => Date.new(2006, 12, 31)) |
|---|
| 30 |
end |
|---|
| 31 |
end |
|---|
| 32 |
|
|---|
| 33 |
def test_indexes_with_descending_order |
|---|
| 34 |
|
|---|
| 35 |
@connection.execute "CREATE INDEX idx_credit_limit ON accounts (credit_limit DESC)" rescue nil |
|---|
| 36 |
assert_equal ["credit_limit"], @connection.indexes('accounts').first.columns |
|---|
| 37 |
ensure |
|---|
| 38 |
@connection.execute "DROP INDEX accounts.idx_credit_limit" |
|---|
| 39 |
end |
|---|
| 40 |
|
|---|
| 41 |
def test_execute_without_block_closes_statement |
|---|
| 42 |
assert_all_statements_used_are_closed do |
|---|
| 43 |
@connection.execute("SELECT 1") |
|---|
| 44 |
end |
|---|
| 45 |
end |
|---|
| 46 |
|
|---|
| 47 |
def test_execute_with_block_closes_statement |
|---|
| 48 |
assert_all_statements_used_are_closed do |
|---|
| 49 |
@connection.execute("SELECT 1") do |sth| |
|---|
| 50 |
assert !sth.finished?, "Statement should still be alive within block" |
|---|
| 51 |
end |
|---|
| 52 |
end |
|---|
| 53 |
end |
|---|
| 54 |
|
|---|
| 55 |
def test_insert_with_identity_closes_statement |
|---|
| 56 |
assert_all_statements_used_are_closed do |
|---|
| 57 |
@connection.insert("INSERT INTO accounts ([id], [firm_id],[credit_limit]) values (999, 1, 50)") |
|---|
| 58 |
end |
|---|
| 59 |
end |
|---|
| 60 |
|
|---|
| 61 |
def test_insert_without_identity_closes_statement |
|---|
| 62 |
assert_all_statements_used_are_closed do |
|---|
| 63 |
@connection.insert("INSERT INTO accounts ([firm_id],[credit_limit]) values (1, 50)") |
|---|
| 64 |
end |
|---|
| 65 |
end |
|---|
| 66 |
|
|---|
| 67 |
def test_active_closes_statement |
|---|
| 68 |
assert_all_statements_used_are_closed do |
|---|
| 69 |
@connection.active? |
|---|
| 70 |
end |
|---|
| 71 |
end |
|---|
| 72 |
|
|---|
| 73 |
def assert_all_statements_used_are_closed(&block) |
|---|
| 74 |
existing_handles = [] |
|---|
| 75 |
ObjectSpace.each_object(DBI::StatementHandle) {|handle| existing_handles << handle} |
|---|
| 76 |
GC.disable |
|---|
| 77 |
|
|---|
| 78 |
yield |
|---|
| 79 |
|
|---|
| 80 |
used_handles = [] |
|---|
| 81 |
ObjectSpace.each_object(DBI::StatementHandle) {|handle| used_handles << handle unless existing_handles.include? handle} |
|---|
| 82 |
|
|---|
| 83 |
assert_block "No statements were used within given block" do |
|---|
| 84 |
used_handles.size > 0 |
|---|
| 85 |
end |
|---|
| 86 |
|
|---|
| 87 |
ObjectSpace.each_object(DBI::StatementHandle) do |handle| |
|---|
| 88 |
assert_block "Statement should have been closed within given block" do |
|---|
| 89 |
handle.finished? |
|---|
| 90 |
end |
|---|
| 91 |
end |
|---|
| 92 |
ensure |
|---|
| 93 |
GC.enable |
|---|
| 94 |
end |
|---|
| 95 |
end |
|---|