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

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

require "spec_helper"

require_migration!

RSpec.describe ScheduleIndexToProjectAuthorizationsOnProjectUserAccessLevel, feature_category: :security_policy_management do
  let(:async_index) { Gitlab::Database::AsyncIndexes::PostgresAsyncIndex }
  let(:index_name) { described_class::INDEX_NAME }

  it "schedules the index" do
    reversible_migration do |migration|
      migration.before -> do
        expect(async_index.where(name: index_name).count).to be(0)
      end

      migration.after -> do
        expect(async_index.where(name: index_name).count).to be(1)
      end
    end
  end
end