Sha256: 99d5ad69f00f56e34f35c9702d1896dd281946b2a0fd53d82d870152cc31bc60

Contents?: true

Size: 1.26 KB

Versions: 5

Compression:

Stored size: 1.26 KB

Contents

# frozen_string_literal: true

require "cases/helper"
require "support/connection_helper"

class PostgresqlDomainTest < ActiveRecord::PostgreSQLTestCase
  include ConnectionHelper

  class PostgresqlDomain < ActiveRecord::Base
    self.table_name = "postgresql_domains"
  end

  def setup
    @connection = ActiveRecord::Base.connection
    @connection.transaction do
      @connection.execute "CREATE DOMAIN custom_money as numeric(8,2)"
      @connection.create_table("postgresql_domains") do |t|
        t.column :price, :custom_money
      end
    end
  end

  teardown do
    @connection.drop_table "postgresql_domains", if_exists: true
    @connection.execute "DROP DOMAIN IF EXISTS custom_money"
    reset_connection
  end

  def test_column
    column = PostgresqlDomain.columns_hash["price"]
    assert_equal :decimal, column.type
    assert_equal "custom_money", column.sql_type
    assert_not_predicate column, :array?

    type = PostgresqlDomain.type_for_attribute("price")
    assert_not_predicate type, :binary?
  end

  def test_domain_acts_like_basetype
    PostgresqlDomain.create price: ""
    record = PostgresqlDomain.first
    assert_nil record.price

    record.price = "34.15"
    record.save!

    assert_equal BigDecimal("34.15"), record.reload.price
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ibm_db-5.5.0 test/cases/adapters/postgresql/domain_test.rb
ibm_db-5.4.1 test/cases/adapters/postgresql/domain_test.rb
ibm_db-5.4.0 test/cases/adapters/postgresql/domain_test.rb
ibm_db-5.3.2 test/cases/adapters/postgresql/domain_test.rb
ibm_db-5.3.1 test/cases/adapters/postgresql/domain_test.rb