aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/migration/pending_migrations_test.rb
blob: 119bfd372a72f0a4d2569c93927ce8fc0cc9b0c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true

require "cases/helper"

module ActiveRecord
  class Migration
    if current_adapter?(:SQLite3Adapter) && !in_memory_db?
      class PendingMigrationsTest < ActiveRecord::TestCase
        setup do
          file = ActiveRecord::Base.connection.raw_connection.filename
          @conn = ActiveRecord::Base.establish_connection adapter: "sqlite3", database: ":memory:", migrations_paths: MIGRATIONS_ROOT + "/valid"
          source_db = SQLite3::Database.new file
          dest_db = ActiveRecord::Base.connection.raw_connection
          backup = SQLite3::Backup.new(dest_db, "main", source_db, "main")
          backup.step(-1)
          backup.finish
        end

        teardown do
          @conn.release_connection if @conn
          ActiveRecord::Base.establish_connection :arunit
        end

        def test_errors_if_pending
          ActiveRecord::Base.connection.drop_table "schema_migrations", if_exists: true

          assert_raises ActiveRecord::PendingMigrationError do
            CheckPending.new(Proc.new { }).call({})
          end
        end

        def test_checks_if_supported
          ActiveRecord::SchemaMigration.create_table
          migrator = Base.connection.migration_context
          capture(:stdout) { migrator.migrate }

          assert_nil CheckPending.new(Proc.new { }).call({})
        end
      end
    end
  end
end