Sha256: ede143c08e42af73b6f04a80f3e34459c27396e46f4cc40d1227d59278fbd276

Contents?: true

Size: 1.26 KB

Versions: 6

Compression:

Stored size: 1.26 KB

Contents

require "cases/helper"
require 'support/schema_dumping_helper'

class PostgresqlLtreeTest < ActiveRecord::PostgreSQLTestCase
  include SchemaDumpingHelper
  class Ltree < ActiveRecord::Base
    self.table_name = 'ltrees'
  end

  def setup
    @connection = ActiveRecord::Base.connection

    enable_extension!('ltree', @connection)

    @connection.transaction do
      @connection.create_table('ltrees') do |t|
        t.ltree 'path'
      end
    end
  rescue ActiveRecord::StatementInvalid
    skip "do not test on PG without ltree"
  end

  teardown do
    @connection.drop_table 'ltrees', if_exists: true
  end

  def test_column
    column = Ltree.columns_hash['path']
    assert_equal :ltree, column.type
    assert_equal "ltree", column.sql_type
    assert_not column.array?

    type = Ltree.type_for_attribute('path')
    assert_not type.binary?
  end

  def test_write
    ltree = Ltree.new(path: '1.2.3.4')
    assert ltree.save!
  end

  def test_select
    @connection.execute "insert into ltrees (path) VALUES ('1.2.3')"
    ltree = Ltree.first
    assert_equal '1.2.3', ltree.path
  end

  def test_schema_dump_with_shorthand
    output = dump_table_schema("ltrees")
    assert_match %r[t\.ltree "path"], output
  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/ltree_test.rb
ibm_db-5.1.0-x86-mingw32 test/cases/adapters/postgresql/ltree_test.rb
ibm_db-5.0.5-x86-mingw32 test/cases/adapters/postgresql/ltree_test.rb
ibm_db-5.0.4-x86-mingw32 test/cases/adapters/postgresql/ltree_test.rb
ibm_db-5.0.3-x86-mingw32 test/cases/adapters/postgresql/ltree_test.rb
ibm_db-5.0.2-x86-mingw32 test/cases/adapters/postgresql/ltree_test.rb