mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
3bbef581af
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7405 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
124 lines
4.1 KiB
Ruby
124 lines
4.1 KiB
Ruby
require 'abstract_unit'
|
|
require "#{File.dirname(__FILE__)}/../lib/active_record/schema_dumper"
|
|
require 'stringio'
|
|
|
|
if ActiveRecord::Base.connection.respond_to?(:tables)
|
|
|
|
class SchemaDumperTest < Test::Unit::TestCase
|
|
def standard_dump
|
|
stream = StringIO.new
|
|
ActiveRecord::SchemaDumper.ignore_tables = []
|
|
ActiveRecord::SchemaDumper.dump(ActiveRecord::Base.connection, stream)
|
|
stream.string
|
|
end
|
|
|
|
def test_schema_dump
|
|
output = standard_dump
|
|
assert_match %r{create_table "accounts"}, output
|
|
assert_match %r{create_table "authors"}, output
|
|
assert_no_match %r{create_table "schema_info"}, output
|
|
end
|
|
|
|
def test_schema_dump_excludes_sqlite_sequence
|
|
output = standard_dump
|
|
assert_no_match %r{create_table "sqlite_sequence"}, output
|
|
end
|
|
|
|
def assert_line_up(lines, pattern, required = false)
|
|
return assert(true) if lines.empty?
|
|
matches = lines.map { |line| line.match(pattern) }
|
|
assert matches.all? if required
|
|
matches.compact!
|
|
return assert(true) if matches.empty?
|
|
assert_equal 1, matches.map{ |match| match.offset(0).first }.uniq.length
|
|
end
|
|
|
|
def column_definition_lines(output = standard_dump)
|
|
output.scan(/^( *)create_table.*?\n(.*?)^\1end/m).map{ |m| m.last.split(/\n/) }
|
|
end
|
|
|
|
def test_types_line_up
|
|
column_definition_lines.each do |column_set|
|
|
next if column_set.empty?
|
|
|
|
lengths = column_set.map do |column|
|
|
if match = column.match(/t\.(?:integer|decimal|float|datetime|timestamp|time|date|text|binary|string|boolean)\s+"/)
|
|
match[0].length
|
|
end
|
|
end
|
|
|
|
assert_equal 1, lengths.uniq.length
|
|
end
|
|
end
|
|
|
|
def test_arguments_line_up
|
|
column_definition_lines.each do |column_set|
|
|
assert_line_up(column_set, /:default => /)
|
|
assert_line_up(column_set, /:limit => /)
|
|
assert_line_up(column_set, /:null => /)
|
|
end
|
|
end
|
|
|
|
def test_no_dump_errors
|
|
output = standard_dump
|
|
assert_no_match %r{\# Could not dump table}, output
|
|
end
|
|
|
|
def test_schema_dump_includes_not_null_columns
|
|
stream = StringIO.new
|
|
|
|
ActiveRecord::SchemaDumper.ignore_tables = [/^[^r]/]
|
|
ActiveRecord::SchemaDumper.dump(ActiveRecord::Base.connection, stream)
|
|
output = stream.string
|
|
assert_match %r{:null => false}, output
|
|
end
|
|
|
|
def test_schema_dump_with_string_ignored_table
|
|
stream = StringIO.new
|
|
|
|
ActiveRecord::SchemaDumper.ignore_tables = ['accounts']
|
|
ActiveRecord::SchemaDumper.dump(ActiveRecord::Base.connection, stream)
|
|
output = stream.string
|
|
assert_no_match %r{create_table "accounts"}, output
|
|
assert_match %r{create_table "authors"}, output
|
|
assert_no_match %r{create_table "schema_info"}, output
|
|
end
|
|
|
|
|
|
def test_schema_dump_with_regexp_ignored_table
|
|
stream = StringIO.new
|
|
|
|
ActiveRecord::SchemaDumper.ignore_tables = [/^account/]
|
|
ActiveRecord::SchemaDumper.dump(ActiveRecord::Base.connection, stream)
|
|
output = stream.string
|
|
assert_no_match %r{create_table "accounts"}, output
|
|
assert_match %r{create_table "authors"}, output
|
|
assert_no_match %r{create_table "schema_info"}, output
|
|
end
|
|
|
|
|
|
def test_schema_dump_illegal_ignored_table_value
|
|
stream = StringIO.new
|
|
ActiveRecord::SchemaDumper.ignore_tables = [5]
|
|
assert_raise(StandardError) do
|
|
ActiveRecord::SchemaDumper.dump(ActiveRecord::Base.connection, stream)
|
|
end
|
|
end
|
|
|
|
if current_adapter?(:MysqlAdapter)
|
|
def test_schema_dump_should_not_add_default_value_for_mysql_text_field
|
|
output = standard_dump
|
|
assert_match %r{t.text\s+"body",\s+:default => "",\s+:null => false$}, output
|
|
end
|
|
end
|
|
|
|
def test_schema_dump_includes_decimal_options
|
|
stream = StringIO.new
|
|
ActiveRecord::SchemaDumper.ignore_tables = [/^[^n]/]
|
|
ActiveRecord::SchemaDumper.dump(ActiveRecord::Base.connection, stream)
|
|
output = stream.string
|
|
assert_match %r{:precision => 3,[[:space:]]+:scale => 2,[[:space:]]+:default => 2.78}, output
|
|
end
|
|
end
|
|
|
|
end
|