schema_dumper_test.rb 13.6 KB
Newer Older
1
require "cases/helper"
2
require 'support/schema_dumping_helper'
3

4
class SchemaDumperTest < ActiveRecord::TestCase
5
  include SchemaDumpingHelper
6 7
  self.use_transactional_fixtures = false

S
Sean Griffin 已提交
8
  setup do
9
    ActiveRecord::SchemaMigration.create_table
10 11
  end

12
  def standard_dump
J
Jeremy Kemper 已提交
13 14 15 16 17
    @@standard_dump ||= perform_schema_dump
  end

  def perform_schema_dump
    dump_all_table_schema []
18 19
  end

20 21
  def test_dump_schema_information_outputs_lexically_ordered_versions
    versions = %w{ 20100101010101 20100201010101 20100301010101 }
22
    versions.reverse_each do |v|
23
      ActiveRecord::SchemaMigration.create!(:version => v)
24 25 26 27
    end

    schema_info = ActiveRecord::Base.connection.dump_schema_information
    assert_match(/20100201010101.*20100301010101/m, schema_info)
28 29
  ensure
    ActiveRecord::SchemaMigration.delete_all
30 31
  end

32
  def test_magic_comment
J
Jeremy Kemper 已提交
33
    assert_match "# encoding: #{Encoding.default_external.name}", standard_dump
34
  end
J
Jeremy Kemper 已提交
35

36 37 38 39 40 41
  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_migrations"}, output
  end
J
Jeremy Kemper 已提交
42

43 44 45 46 47
  def test_schema_dump_uses_force_cascade_on_create_table
    output = dump_table_schema "authors"
    assert_match %r{create_table "authors", force: :cascade}, output
  end

48 49 50 51
  def test_schema_dump_excludes_sqlite_sequence
    output = standard_dump
    assert_no_match %r{create_table "sqlite_sequence"}, output
  end
52

53 54 55 56 57
  def test_schema_dump_includes_camelcase_table_name
    output = standard_dump
    assert_match %r{create_table "CamelCase"}, output
  end

58 59 60 61 62 63 64 65
  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
66

67 68 69
  def column_definition_lines(output = standard_dump)
    output.scan(/^( *)create_table.*?\n(.*?)^\1end/m).map{ |m| m.last.split(/\n/) }
  end
70

71 72 73
  def test_types_line_up
    column_definition_lines.each do |column_set|
      next if column_set.empty?
74

75
      lengths = column_set.map do |column|
76
        if match = column.match(/t\.(?:integer|decimal|float|datetime|timestamp|time|date|text|binary|string|boolean|xml|uuid|point)\s+"/)
77
          match[0].length
78
        end
79
      end.compact
J
Jeremy Kemper 已提交
80

81
      assert_equal 1, lengths.uniq.length
82
    end
83
  end
J
Jeremy Kemper 已提交
84

85 86
  def test_arguments_line_up
    column_definition_lines.each do |column_set|
87 88 89
      assert_line_up(column_set, /default: /)
      assert_line_up(column_set, /limit: /)
      assert_line_up(column_set, /null: /)
90
    end
91
  end
J
Jeremy Kemper 已提交
92

93 94 95 96
  def test_no_dump_errors
    output = standard_dump
    assert_no_match %r{\# Could not dump table}, output
  end
J
Jeremy Kemper 已提交
97

98
  def test_schema_dump_includes_not_null_columns
99
    output = dump_all_table_schema([/^[^r]/])
100
    assert_match %r{null: false}, output
101
  end
J
Jeremy Kemper 已提交
102

103
  def test_schema_dump_includes_limit_constraint_for_integer_columns
104
    output = dump_all_table_schema([/^(?!integer_limits)/])
105

106 107
    assert_match %r{c_int_without_limit}, output

108
    if current_adapter?(:PostgreSQLAdapter)
109 110
      assert_no_match %r{c_int_without_limit.*limit:}, output

111 112
      assert_match %r{c_int_1.*limit: 2}, output
      assert_match %r{c_int_2.*limit: 2}, output
113 114 115

      # int 3 is 4 bytes in postgresql
      assert_match %r{c_int_3.*}, output
116
      assert_no_match %r{c_int_3.*limit:}, output
117 118

      assert_match %r{c_int_4.*}, output
119
      assert_no_match %r{c_int_4.*limit:}, output
120
    elsif current_adapter?(:MysqlAdapter, :Mysql2Adapter)
121 122
      assert_match %r{c_int_without_limit.*limit: 4}, output

123 124 125
      assert_match %r{c_int_1.*limit: 1}, output
      assert_match %r{c_int_2.*limit: 2}, output
      assert_match %r{c_int_3.*limit: 3}, output
126 127 128

      assert_match %r{c_int_4.*}, output
      assert_no_match %r{c_int_4.*:limit}, output
129
    elsif current_adapter?(:SQLite3Adapter)
130 131
      assert_no_match %r{c_int_without_limit.*limit:}, output

132 133 134 135
      assert_match %r{c_int_1.*limit: 1}, output
      assert_match %r{c_int_2.*limit: 2}, output
      assert_match %r{c_int_3.*limit: 3}, output
      assert_match %r{c_int_4.*limit: 4}, output
136 137
    end

138
    if current_adapter?(:SQLite3Adapter)
139 140 141 142
      assert_match %r{c_int_5.*limit: 5}, output
      assert_match %r{c_int_6.*limit: 6}, output
      assert_match %r{c_int_7.*limit: 7}, output
      assert_match %r{c_int_8.*limit: 8}, output
143
    elsif current_adapter?(:OracleAdapter)
144 145 146 147
      assert_match %r{c_int_5.*limit: 5}, output
      assert_match %r{c_int_6.*limit: 6}, output
      assert_match %r{c_int_7.*limit: 7}, output
      assert_match %r{c_int_8.*limit: 8}, output
148
    else
149 150 151 152
      assert_match %r{c_int_5.*limit: 8}, output
      assert_match %r{c_int_6.*limit: 8}, output
      assert_match %r{c_int_7.*limit: 8}, output
      assert_match %r{c_int_8.*limit: 8}, output
153 154 155
    end
  end

156
  def test_schema_dump_with_string_ignored_table
157
    output = dump_all_table_schema(['accounts'])
158 159 160 161 162 163
    assert_no_match %r{create_table "accounts"}, output
    assert_match %r{create_table "authors"}, output
    assert_no_match %r{create_table "schema_migrations"}, output
  end

  def test_schema_dump_with_regexp_ignored_table
164
    output = dump_all_table_schema([/^account/])
165 166 167 168
    assert_no_match %r{create_table "accounts"}, output
    assert_match %r{create_table "authors"}, output
    assert_no_match %r{create_table "schema_migrations"}, output
  end
J
Jeremy Kemper 已提交
169

170 171
  def test_schema_dumps_index_columns_in_right_order
    index_definition = standard_dump.split(/\n/).grep(/add_index.*companies/).first.strip
172
    if current_adapter?(:MysqlAdapter, :Mysql2Adapter, :PostgreSQLAdapter)
173 174 175
      assert_equal 'add_index "companies", ["firm_id", "type", "rating"], name: "company_index", using: :btree', index_definition
    else
      assert_equal 'add_index "companies", ["firm_id", "type", "rating"], name: "company_index"', index_definition
176
    end
177
  end
178

179 180 181
  def test_schema_dumps_partial_indices
    index_definition = standard_dump.split(/\n/).grep(/add_index.*company_partial_index/).first.strip
    if current_adapter?(:PostgreSQLAdapter)
182
      assert_equal 'add_index "companies", ["firm_id", "type"], name: "company_partial_index", where: "(rating > 10)", using: :btree', index_definition
183
    elsif current_adapter?(:MysqlAdapter, :Mysql2Adapter)
184
      assert_equal 'add_index "companies", ["firm_id", "type"], name: "company_partial_index", using: :btree', index_definition
185 186
    elsif current_adapter?(:SQLite3Adapter) && ActiveRecord::Base.connection.supports_partial_index?
      assert_equal 'add_index "companies", ["firm_id", "type"], name: "company_partial_index", where: "rating > 10"', index_definition
187
    else
188
      assert_equal 'add_index "companies", ["firm_id", "type"], name: "company_partial_index"', index_definition
189 190 191
    end
  end

192 193 194 195
  def test_schema_dump_should_honor_nonstandard_primary_keys
    output = standard_dump
    match = output.match(%r{create_table "movies"(.*)do})
    assert_not_nil(match, "nonstandardpk table not found")
196
    assert_match %r(primary_key: "movieid"), match[1], "non-standard primary key not preserved"
197
  end
198

199 200 201 202 203
  def test_schema_dump_should_use_false_as_default
    output = standard_dump
    assert_match %r{t\.boolean\s+"has_fun",.+default: false}, output
  end

204
  if current_adapter?(:MysqlAdapter, :Mysql2Adapter)
205
    def test_schema_dump_should_add_default_value_for_mysql_text_field
206
      output = standard_dump
207
      assert_match %r{t\.text\s+"body",\s+limit: 65535,\s+null: false$}, output
208
    end
209

210 211
    def test_schema_dump_includes_length_for_mysql_binary_fields
      output = standard_dump
212 213
      assert_match %r{t\.binary\s+"var_binary",\s+limit: 255$}, output
      assert_match %r{t\.binary\s+"var_binary_large",\s+limit: 4095$}, output
214 215
    end

216 217
    def test_schema_dump_includes_length_for_mysql_blob_and_text_fields
      output = standard_dump
218 219 220 221 222 223 224 225
      assert_match %r{t\.binary\s+"tiny_blob",\s+limit: 255$}, output
      assert_match %r{t\.binary\s+"normal_blob",\s+limit: 65535$}, output
      assert_match %r{t\.binary\s+"medium_blob",\s+limit: 16777215$}, output
      assert_match %r{t\.binary\s+"long_blob",\s+limit: 4294967295$}, output
      assert_match %r{t\.text\s+"tiny_text",\s+limit: 255$}, output
      assert_match %r{t\.text\s+"normal_text",\s+limit: 65535$}, output
      assert_match %r{t\.text\s+"medium_text",\s+limit: 16777215$}, output
      assert_match %r{t\.text\s+"long_text",\s+limit: 4294967295$}, output
226
    end
227 228 229 230 231 232

    def test_schema_dumps_index_type
      output = standard_dump
      assert_match %r{add_index "key_tests", \["awesome"\], name: "index_key_tests_on_awesome", type: :fulltext}, output
      assert_match %r{add_index "key_tests", \["pizza"\], name: "index_key_tests_on_pizza", using: :btree}, output
    end
233
  end
234

235
  def test_schema_dump_includes_decimal_options
236
    output = dump_all_table_schema([/^[^n]/])
237
    assert_match %r{precision: 3,[[:space:]]+scale: 2,[[:space:]]+default: 2\.78}, output
238
  end
239

240
  if current_adapter?(:PostgreSQLAdapter)
241 242
    def test_schema_dump_includes_bigint_default
      output = standard_dump
243
      assert_match %r{t\.integer\s+"bigint_default",\s+limit: 8,\s+default: 0}, output
244 245
    end

246 247 248 249 250
    if ActiveRecord::Base.connection.supports_extensions?
      def test_schema_dump_includes_extensions
        connection = ActiveRecord::Base.connection

        connection.stubs(:extensions).returns(['hstore'])
J
Jeremy Kemper 已提交
251
        output = perform_schema_dump
252 253 254 255
        assert_match "# These are extensions that must be enabled", output
        assert_match %r{enable_extension "hstore"}, output

        connection.stubs(:extensions).returns([])
J
Jeremy Kemper 已提交
256
        output = perform_schema_dump
257 258 259
        assert_no_match "# These are extensions that must be enabled", output
        assert_no_match %r{enable_extension}, output
      end
260
    end
261 262
  end

263 264
  def test_schema_dump_keeps_large_precision_integer_columns_as_decimal
    output = standard_dump
265 266
    # Oracle supports precision up to 38 and it identifies decimals with scale 0 as integers
    if current_adapter?(:OracleAdapter)
267
      assert_match %r{t\.integer\s+"atoms_in_universe",\s+precision: 38}, output
R
Ray Zane 已提交
268
    elsif current_adapter?(:FbAdapter)
269
      assert_match %r{t\.integer\s+"atoms_in_universe",\s+precision: 18}, output
270
    else
271
      assert_match %r{t\.decimal\s+"atoms_in_universe",\s+precision: 55}, output
272
    end
273
  end
274 275 276 277 278

  def test_schema_dump_keeps_id_column_when_id_is_false_and_id_column_added
    output = standard_dump
    match = output.match(%r{create_table "goofy_string_id"(.*)do.*\n(.*)\n})
    assert_not_nil(match, "goofy_string_id table not found")
279
    assert_match %r(id: false), match[1], "no table id not preserved"
280
    assert_match %r{t\.string\s+"id",.*?null: false$}, match[2], "non-primary key id column not preserved"
281
  end
282 283 284

  def test_schema_dump_keeps_id_false_when_id_is_false_and_unique_not_null_column_added
    output = standard_dump
285
    assert_match %r{create_table "subscribers", id: false}, output
286
  end
287

288 289 290 291 292
  if ActiveRecord::Base.connection.supports_foreign_keys?
    def test_foreign_keys_are_dumped_at_the_bottom_to_circumvent_dependency_issues
      output = standard_dump
      assert_match(/^\s+add_foreign_key "fk_test_has_fk"[^\n]+\n\s+add_foreign_key "lessons_students"/, output)
    end
293 294 295 296 297

    def test_do_not_dump_foreign_keys_for_ignored_tables
      output = dump_table_schema "authors"
      assert_equal ["authors"], output.scan(/^\s*add_foreign_key "([^"]+)".+$/).flatten
    end
298 299
  end

300 301
  class CreateDogMigration < ActiveRecord::Migration
    def up
Y
Yves Senn 已提交
302 303 304
      create_table("dog_owners") do |t|
      end

305 306
      create_table("dogs") do |t|
        t.column :name, :string
Y
Yves Senn 已提交
307
        t.column :owner_id, :integer
308 309
      end
      add_index "dogs", [:name]
Y
Yves Senn 已提交
310
      add_foreign_key :dogs, :dog_owners, column: "owner_id" if supports_foreign_keys?
311 312 313
    end
    def down
      drop_table("dogs")
Y
Yves Senn 已提交
314
      drop_table("dog_owners")
315 316 317 318 319 320 321 322 323 324 325
    end
  end

  def test_schema_dump_with_table_name_prefix_and_suffix
    original, $stdout = $stdout, StringIO.new
    ActiveRecord::Base.table_name_prefix = 'foo_'
    ActiveRecord::Base.table_name_suffix = '_bar'

    migration = CreateDogMigration.new
    migration.migrate(:up)

J
Jeremy Kemper 已提交
326
    output = perform_schema_dump
327
    assert_no_match %r{create_table "foo_.+_bar"}, output
328
    assert_no_match %r{add_index "foo_.+_bar"}, output
329
    assert_no_match %r{create_table "schema_migrations"}, output
Y
Yves Senn 已提交
330 331 332 333 334

    if ActiveRecord::Base.connection.supports_foreign_keys?
      assert_no_match %r{add_foreign_key "foo_.+_bar"}, output
      assert_no_match %r{add_foreign_key "[^"]+", "foo_.+_bar"}, output
    end
335 336 337 338 339 340
  ensure
    migration.migrate(:down)

    ActiveRecord::Base.table_name_suffix = ActiveRecord::Base.table_name_prefix = ''
    $stdout = original
  end
341
end
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357

class SchemaDumperDefaultsTest < ActiveRecord::TestCase
  include SchemaDumpingHelper

  setup do
    @connection = ActiveRecord::Base.connection
    @connection.create_table :defaults, force: true do |t|
      t.string   :string_with_default,   default: "Hello!"
      t.date     :date_with_default,     default: '2014-06-05'
      t.datetime :datetime_with_default, default: "2014-06-05 07:17:04"
      t.time     :time_with_default,     default: "07:17:04"
    end
  end

  teardown do
    return unless @connection
358
    @connection.drop_table 'defaults', if_exists: true
359 360 361 362 363
  end

  def test_schema_dump_defaults_with_universally_supported_types
    output = dump_table_schema('defaults')

364
    assert_match %r{t\.string\s+"string_with_default",.*?default: "Hello!"}, output
365 366 367 368 369
    assert_match %r{t\.date\s+"date_with_default",\s+default: '2014-06-05'}, output
    assert_match %r{t\.datetime\s+"datetime_with_default",\s+default: '2014-06-05 07:17:04'}, output
    assert_match %r{t\.time\s+"time_with_default",\s+default: '2000-01-01 07:17:04'}, output
  end
end