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

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

require 'spec_helper'
require_migration!

RSpec.describe AddUserIdAndIpAddressSuccessIndexToAuthenticationEvents do
  let(:db) { described_class.new }
  let(:old_index) { described_class::OLD_INDEX_NAME }
  let(:new_index) { described_class::NEW_INDEX_NAME }

  it 'correctly migrates up and down' do
    reversible_migration do |migration|
      migration.before -> {
        expect(db.connection.indexes(:authentication_events).map(&:name)).to include(old_index)
        expect(db.connection.indexes(:authentication_events).map(&:name)).not_to include(new_index)
      }

      migration.after -> {
        expect(db.connection.indexes(:authentication_events).map(&:name)).to include(new_index)
        expect(db.connection.indexes(:authentication_events).map(&:name)).not_to include(old_index)
      }
    end
  end
end