domain_test.rb 1.2 KB
Newer Older
1 2
# -*- coding: utf-8 -*-
require "cases/helper"
3
require 'support/connection_helper'
4 5

class PostgresqlDomainTest < ActiveRecord::TestCase
6
  include ConnectionHelper
7

8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
  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.execute 'DROP TABLE IF EXISTS postgresql_domains'
    @connection.execute 'DROP DOMAIN IF EXISTS custom_money'
25
    reset_connection
26 27 28 29 30 31
  end

  def test_column
    column = PostgresqlDomain.columns_hash["price"]
    assert_equal :decimal, column.type
    assert_equal "custom_money", column.sql_type
32
    assert_not column.array?
33 34 35 36

    type = PostgresqlDomain.type_for_attribute("price")
    assert type.number?
    assert_not type.binary?
37 38 39 40 41 42 43 44 45 46 47 48 49
  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.new("34.15"), record.reload.price
  end
end