web-dev-qa-db-ja.com

Railsでテストデータベースを移行する必要があるのはなぜですか?

新しい移行ファイルを作成し、移行を実行してから、受け取ったテストを実行した後、次のようになります。

Failure/Error: ActiveRecord::Migration.maintain_test_schema!

ActiveRecord::PendingMigrationError:

  Migrations are pending. To resolve this issue, run:

          bin/Rails db:migrate Rails_ENV=test

Rails_helper.rbの次のスニペットは、移行をテストデータベースに適用することになっているのではないですか?

# Checks for pending migration and applies them before tests are run.
# If you are not using ActiveRecord, you can remove this line.
ActiveRecord::Migration.maintain_test_schema!

更新

これが私のconfig/environments/test.rbです。

Rails.application.configure do
  # Settings specified here will take precedence over those in config/application.rb.

  # The test environment is used exclusively to run your application's
  # test suite. You never need to work with it otherwise. Remember that
  # your test database is "scratch space" for the test suite and is wiped
  # and recreated between test runs. Don't rely on the data there!
  config.cache_classes = true

  # Do not eager load code on boot. This avoids loading your whole application
  # just for the purpose of running a single test. If you are using a tool that
  # preloads Rails for running tests, you may have to set it to true.
  config.eager_load = false

  # Configure public file server for tests with Cache-Control for performance.
  config.public_file_server.enabled = true
  config.public_file_server.headers = {
    'Cache-Control' => 'public, max-age=3600'
  }

  # Show full error reports and disable caching.
  config.consider_all_requests_local       = true
  config.action_controller.perform_caching = false

  # Raise exceptions instead of rendering exception templates.
  config.action_dispatch.show_exceptions = false

  # Disable request forgery protection in test environment.
  config.action_controller.allow_forgery_protection = false
  config.action_mailer.perform_caching = false

  # Tell Action Mailer not to deliver emails to the real world.
  # The :test delivery method accumulates sent emails in the
  # ActionMailer::Base.deliveries array.
  config.action_mailer.delivery_method = :test

  # Print deprecation notices to the stderr.
  config.active_support.deprecation = :stderr

  # Raises error for missing translations
  # config.action_view.raise_on_missing_translations = true
end
13
ardavis

テストを実行すると、構成は次の順序でロードされます(Railsアプリ)でautoload_pathsの順序をカスタマイズしていない限り)。

  1. config/application.rb
  2. config/environment/test.rb
  3. spec/Rails_helper.rb

したがって、受信する移行保留中のエラーは、config.active_record.migration_error = trueこの構成がRailsエンジンロードRails_helper.rb、ここでActiveRecord::Migration.maintain_test_schema!ディレクティブは定義されています。

rspecアップグレードガイド)で説明されているように、config/environment/test.rbconfig.active_record.migration_error = falseを設定して、移行チェックをスキップしてみてください

7
sa77

2つの理由が考えられます。

  1. config/environments/test.rbで設定するのを見逃した可能性があります

config.active_record.maintain_test_schema = trueがない場合は追加し、trueに設定した場合はfalseに設定します。

docs から

config.active_record.maintain_test_schemaはブール値であり、テストの実行時にActiveRecordがテストデータベーススキーマをdb/schema.rb(またはdb/structure.sql)で最新の状態に維持しようとするかどうかを制御します。デフォルトはtrueです。

  1. スキーマがロードされた後、保留中の移行がある可能性があります

rspec docs から

これは、テストスキーマに保留中の移行がある場合に発生するだけでなく、Railsがスキーマを読み込もうとします。例外のみが発生するようになりました。その後、保留中の移行がある場合は、スキーマがロードされています。

rake db:migrate:statusで保留中の移行があるかどうかを確認します

また、SQLite 3.7.9を使用している場合は、これを確認する必要があります ディスカッション

1
Pavan