Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20210907013944_cleanup_bigint_conversion_for_ci_builds_metadata_spec.rb « migrations « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63664803fbae323fb93d09099889596104eee66a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

require 'spec_helper'
require_migration!

RSpec.describe CleanupBigintConversionForCiBuildsMetadata, feature_category: :continuous_integration do
  let(:ci_builds_metadata) { table(:ci_builds_metadata) }

  it 'correctly migrates up and down' do
    reversible_migration do |migration|
      migration.before -> {
        expect(ci_builds_metadata.column_names).to include('id_convert_to_bigint')
        expect(ci_builds_metadata.column_names).to include('build_id_convert_to_bigint')
      }

      migration.after -> {
        ci_builds_metadata.reset_column_information
        expect(ci_builds_metadata.column_names).not_to include('id_convert_to_bigint')
        expect(ci_builds_metadata.column_names).not_to include('build_id_convert_to_bigint')
      }
    end
  end
end