Sha256: f36a89a69ff869e6dbd044a70f5f140b4c05bd67a9262f2a8a1468905cad47ef

Contents?: true

Size: 1.24 KB

Versions: 6

Compression:

Stored size: 1.24 KB

Contents

require 'cases/helper'

class PostgresqlTypeLookupTest < ActiveRecord::PostgreSQLTestCase
  setup do
    @connection = ActiveRecord::Base.connection
  end

  test "array delimiters are looked up correctly" do
    box_array = @connection.type_map.lookup(1020)
    int_array = @connection.type_map.lookup(1007)

    assert_equal ';', box_array.delimiter
    assert_equal ',', int_array.delimiter
  end

  test "array types correctly respect registration of subtypes" do
    int_array = @connection.type_map.lookup(1007, -1, "integer[]")
    bigint_array = @connection.type_map.lookup(1016, -1, "bigint[]")
    big_array = [123456789123456789]

    assert_raises(ActiveModel::RangeError) { int_array.serialize(big_array) }
    assert_equal "{123456789123456789}", @connection.type_cast(bigint_array.serialize(big_array))
  end

  test "range types correctly respect registration of subtypes" do
    int_range = @connection.type_map.lookup(3904, -1, "int4range")
    bigint_range = @connection.type_map.lookup(3926, -1, "int8range")
    big_range = 0..123456789123456789

    assert_raises(ActiveModel::RangeError) { int_range.serialize(big_range) }
    assert_equal "[0,123456789123456789]", bigint_range.serialize(big_range)
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ibm_db-5.2.0-x86-mingw32 test/cases/adapters/postgresql/type_lookup_test.rb
ibm_db-5.1.0-x86-mingw32 test/cases/adapters/postgresql/type_lookup_test.rb
ibm_db-5.0.5-x86-mingw32 test/cases/adapters/postgresql/type_lookup_test.rb
ibm_db-5.0.4-x86-mingw32 test/cases/adapters/postgresql/type_lookup_test.rb
ibm_db-5.0.3-x86-mingw32 test/cases/adapters/postgresql/type_lookup_test.rb
ibm_db-5.0.2-x86-mingw32 test/cases/adapters/postgresql/type_lookup_test.rb