debian-mirror-gitlab/doc/development/testing_guide/testing_migrations_guide.md

245 lines
7.9 KiB
Markdown
Raw Normal View History

2019-12-21 20:55:43 +05:30
---
2021-01-29 00:20:46 +05:30
stage: none
group: unassigned
2021-02-22 17:27:13 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2019-12-21 20:55:43 +05:30
type: reference
---
# Testing Rails migrations at GitLab
In order to reliably check Rails migrations, we need to test them against
a database schema.
## When to write a migration test
- Post migrations (`/db/post_migrate`) and background migrations
(`lib/gitlab/background_migration`) **must** have migration tests performed.
- If your migration is a data migration then it **must** have a migration test.
- Other migrations may have a migration test if necessary.
## How does it work?
Adding a `:migration` tag to a test signature enables some custom RSpec
`before` and `after` hooks in our
2020-04-08 14:13:33 +05:30
[`spec/support/migration.rb`](https://gitlab.com/gitlab-org/gitlab/-/blob/f81fa6ab1dd788b70ef44b85aaba1f31ffafae7d/spec/support/migration.rb)
2019-12-21 20:55:43 +05:30
to run.
2021-02-22 17:27:13 +05:30
A `before` hook reverts all migrations to the point that a migration
2019-12-21 20:55:43 +05:30
under test is not yet migrated.
2021-02-22 17:27:13 +05:30
In other words, our custom RSpec hooks finds a previous migration, and
2019-12-21 20:55:43 +05:30
migrate the database **down** to the previous migration version.
With this approach you can test a migration against a database schema.
2021-03-11 19:13:27 +05:30
An `after` hook migrates the database **up** and restores the latest
2019-12-21 20:55:43 +05:30
schema version, so that the process does not affect subsequent specs and
ensures proper isolation.
## Testing an `ActiveRecord::Migration` class
To test an `ActiveRecord::Migration` class (i.e., a
regular migration `db/migrate` or a post-migration `db/post_migrate`), you
2021-02-22 17:27:13 +05:30
must load the migration file by using the `require_migration!` helper
2020-10-24 23:57:45 +05:30
method because it is not autoloaded by Rails.
Example:
2019-12-21 20:55:43 +05:30
```ruby
2020-10-24 23:57:45 +05:30
require 'spec_helper'
require_migration!
RSpec.describe ...
2019-12-21 20:55:43 +05:30
```
### Test helpers
2020-10-24 23:57:45 +05:30
#### `require_migration!`
2021-02-22 17:27:13 +05:30
Since the migration files are not autoloaded by Rails, you must manually
2020-10-24 23:57:45 +05:30
load the migration file. To do so, you can use the `require_migration!` helper method
2021-02-22 17:27:13 +05:30
which can automatically load the correct migration file based on the spec filename.
2020-10-24 23:57:45 +05:30
For example, if your spec file is named as `populate_foo_column_spec.rb` then the
2021-02-22 17:27:13 +05:30
helper method tries to load `${schema_version}_populate_foo_column.rb` migration file.
2020-10-24 23:57:45 +05:30
In case there is no pattern between your spec file and the actual migration file,
2021-02-22 17:27:13 +05:30
you can provide the migration filename without the schema version, like so:
2020-10-24 23:57:45 +05:30
```ruby
require_migration!('populate_foo_column')
```
2019-12-21 20:55:43 +05:30
#### `table`
Use the `table` helper to create a temporary `ActiveRecord::Base`-derived model
2020-04-08 14:13:33 +05:30
for a table. [FactoryBot](best_practices.md#factories)
2021-02-22 17:27:13 +05:30
**should not** be used to create data for migration specs because it relies on
application code which can change after the migration has run, and cause the test
to fail. For example, to create a record in the `projects` table:
2019-12-21 20:55:43 +05:30
```ruby
project = table(:projects).create!(id: 1, name: 'gitlab1', path: 'gitlab1')
```
#### `migrate!`
2021-02-22 17:27:13 +05:30
Use the `migrate!` helper to run the migration that is under test. It
runs the migration and bumps the schema version in the `schema_migrations`
2019-12-21 20:55:43 +05:30
table. It is necessary because in the `after` hook we trigger the rest of
the migrations, and we need to know where to start. Example:
```ruby
it 'migrates successfully' do
# ... pre-migration expectations
migrate!
# ... post-migration expectations
end
```
#### `reversible_migration`
Use the `reversible_migration` helper to test migrations with either a
2021-02-22 17:27:13 +05:30
`change` or both `up` and `down` hooks. This tests that the state of
2019-12-21 20:55:43 +05:30
the application and its data after the migration becomes reversed is the
same as it was before the migration ran in the first place. The helper:
1. Runs the `before` expectations before the **up** migration.
1. Migrates **up**.
1. Runs the `after` expectations.
1. Migrates **down**.
1. Runs the `before` expectations a second time.
Example:
```ruby
reversible_migration do |migration|
migration.before -> {
# ... pre-migration expectations
}
migration.after -> {
# ... post-migration expectations
}
end
```
### Example database migration test
This spec tests the
2020-01-01 13:55:28 +05:30
[`db/post_migrate/20170526185842_migrate_pipeline_stages.rb`](https://gitlab.com/gitlab-org/gitlab-foss/blob/v11.6.5/db/post_migrate/20170526185842_migrate_pipeline_stages.rb)
2019-12-21 20:55:43 +05:30
migration. You can find the complete spec in
2020-01-01 13:55:28 +05:30
[`spec/migrations/migrate_pipeline_stages_spec.rb`](https://gitlab.com/gitlab-org/gitlab-foss/blob/v11.6.5/spec/migrations/migrate_pipeline_stages_spec.rb).
2019-12-21 20:55:43 +05:30
```ruby
require 'spec_helper'
2020-10-24 23:57:45 +05:30
require_migration!
2019-12-21 20:55:43 +05:30
2020-07-28 23:09:34 +05:30
RSpec.describe MigratePipelineStages do
2019-12-21 20:55:43 +05:30
# Create test data - pipeline and CI/CD jobs.
let(:jobs) { table(:ci_builds) }
let(:stages) { table(:ci_stages) }
let(:pipelines) { table(:ci_pipelines) }
let(:projects) { table(:projects) }
before do
projects.create!(id: 123, name: 'gitlab1', path: 'gitlab1')
pipelines.create!(id: 1, project_id: 123, ref: 'master', sha: 'adf43c3a')
jobs.create!(id: 1, commit_id: 1, project_id: 123, stage_idx: 2, stage: 'build')
jobs.create!(id: 2, commit_id: 1, project_id: 123, stage_idx: 1, stage: 'test')
end
# Test just the up migration.
it 'correctly migrates pipeline stages' do
expect(stages.count).to be_zero
migrate!
expect(stages.count).to eq 2
expect(stages.all.pluck(:name)).to match_array %w[test build]
end
# Test a reversible migration.
it 'correctly migrates up and down pipeline stages' do
reversible_migration do |migration|
# Expectations will run before the up migration,
# and then again after the down migration
migration.before -> {
expect(stages.count).to be_zero
}
# Expectations will run after the up migration.
migration.after -> {
expect(stages.count).to eq 2
expect(stages.all.pluck(:name)).to match_array %w[test build]
}
end
end
```
## Testing a non-`ActiveRecord::Migration` class
To test a non-`ActiveRecord::Migration` test (a background migration),
2021-02-22 17:27:13 +05:30
you must manually provide a required schema version. Please add a
2020-04-08 14:13:33 +05:30
`schema` tag to a context that you want to switch the database schema within.
If not set, `schema` defaults to `:latest`.
2019-12-21 20:55:43 +05:30
Example:
```ruby
2020-04-08 14:13:33 +05:30
describe SomeClass, schema: 20170608152748 do
2019-12-21 20:55:43 +05:30
# ...
end
```
### Example background migration test
This spec tests the
2020-01-01 13:55:28 +05:30
[`lib/gitlab/background_migration/archive_legacy_traces.rb`](https://gitlab.com/gitlab-org/gitlab-foss/blob/v11.6.5/lib/gitlab/background_migration/archive_legacy_traces.rb)
2019-12-21 20:55:43 +05:30
background migration. You can find the complete spec on
2020-01-01 13:55:28 +05:30
[`spec/lib/gitlab/background_migration/archive_legacy_traces_spec.rb`](https://gitlab.com/gitlab-org/gitlab-foss/blob/v11.6.5/spec/lib/gitlab/background_migration/archive_legacy_traces_spec.rb)
2019-12-21 20:55:43 +05:30
```ruby
require 'spec_helper'
2020-04-08 14:13:33 +05:30
describe Gitlab::BackgroundMigration::ArchiveLegacyTraces, schema: 20180529152628 do
2019-12-21 20:55:43 +05:30
include TraceHelpers
let(:namespaces) { table(:namespaces) }
let(:projects) { table(:projects) }
let(:builds) { table(:ci_builds) }
let(:job_artifacts) { table(:ci_job_artifacts) }
before do
namespaces.create!(id: 123, name: 'gitlab1', path: 'gitlab1')
projects.create!(id: 123, name: 'gitlab1', path: 'gitlab1', namespace_id: 123)
@build = builds.create!(id: 1, project_id: 123, status: 'success', type: 'Ci::Build')
end
context 'when trace file exists at the right place' do
before do
create_legacy_trace(@build, 'trace in file')
end
it 'correctly archive legacy traces' do
expect(job_artifacts.count).to eq(0)
expect(File.exist?(legacy_trace_path(@build))).to be_truthy
described_class.new.perform(1, 1)
expect(job_artifacts.count).to eq(1)
expect(File.exist?(legacy_trace_path(@build))).to be_falsy
expect(File.read(archived_trace_path(job_artifacts.first))).to eq('trace in file')
end
end
end
```
These tests do not run within a database transaction, as we use a deletion database
cleanup strategy. Do not depend on a transaction being present.