2011-06-06 14:17:44 -04:00
|
|
|
require "cases/helper"
|
2005-09-23 09:29:33 -04:00
|
|
|
|
2008-01-18 02:30:42 -05:00
|
|
|
if ActiveRecord::Base.connection.supports_migrations?
|
2005-09-23 09:29:33 -04:00
|
|
|
|
2008-01-21 12:20:51 -05:00
|
|
|
class ActiveRecordSchemaTest < ActiveRecord::TestCase
|
2005-09-29 20:57:27 -04:00
|
|
|
self.use_transactional_fixtures = false
|
|
|
|
|
2005-09-23 09:29:33 -04:00
|
|
|
def setup
|
|
|
|
@connection = ActiveRecord::Base.connection
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
|
|
|
@connection.drop_table :fruits rescue nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_schema_define
|
|
|
|
ActiveRecord::Schema.define(:version => 7) do
|
|
|
|
create_table :fruits do |t|
|
|
|
|
t.column :color, :string
|
2005-10-29 14:40:49 -04:00
|
|
|
t.column :fruit_size, :string # NOTE: "size" is reserved in Oracle
|
2005-09-23 09:29:33 -04:00
|
|
|
t.column :texture, :string
|
|
|
|
t.column :flavor, :string
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_nothing_raised { @connection.select_all "SELECT * FROM fruits" }
|
2008-04-09 12:20:15 -04:00
|
|
|
assert_nothing_raised { @connection.select_all "SELECT * FROM schema_migrations" }
|
|
|
|
assert_equal 7, ActiveRecord::Migrator::current_version
|
2005-09-23 09:29:33 -04:00
|
|
|
end
|
2010-02-28 05:53:48 -05:00
|
|
|
|
2010-07-16 22:19:29 -04:00
|
|
|
def test_schema_raises_an_error_for_invalid_column_type
|
2010-02-28 05:53:48 -05:00
|
|
|
assert_raise NoMethodError do
|
|
|
|
ActiveRecord::Schema.define(:version => 8) do
|
|
|
|
create_table :vegetables do |t|
|
|
|
|
t.unknown :color
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-05-16 18:08:17 -04:00
|
|
|
|
|
|
|
def test_schema_subclass
|
|
|
|
Class.new(ActiveRecord::Schema).define(:version => 9) do
|
|
|
|
create_table :fruits
|
|
|
|
end
|
|
|
|
assert_nothing_raised { @connection.select_all "SELECT * FROM fruits" }
|
|
|
|
end
|
2005-09-23 09:29:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|