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

20230621074611_update_elasticsearch_number_of_shards_in_application_settings_for_gitlab_com_spec.rb « migrations « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80a1f9f59e29250cd37197434df3bb50aec13e2b (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# frozen_string_literal: true

require 'spec_helper'
require_migration!

RSpec.describe UpdateElasticsearchNumberOfShardsInApplicationSettingsForGitlabCom, feature_category: :global_search do
  let(:settings) { table(:application_settings) }

  describe "#up" do
    it 'does nothing when not in gitlab.com' do
      record = settings.create!

      expect { migrate! }.not_to change { record.reload.elasticsearch_worker_number_of_shards }
    end

    it 'updates elasticsearch_worker_number_of_shards when gitlab.com' do
      allow(Gitlab).to receive(:com?).and_return(true)

      record = settings.create!

      expect { migrate! }.to change { record.reload.elasticsearch_worker_number_of_shards }.from(2).to(16)
    end
  end

  describe "#down" do
    it 'does nothing when not in gitlab.com' do
      record = settings.create!(elasticsearch_worker_number_of_shards: 16)

      migrate!

      expect { schema_migrate_down! }.not_to change { record.reload.elasticsearch_worker_number_of_shards }
    end

    it 'updates elasticsearch_worker_number_of_shards when gitlab.com' do
      allow(Gitlab).to receive(:com?).and_return(true)

      record = settings.create!(elasticsearch_worker_number_of_shards: 16)

      migrate!

      expect { schema_migrate_down! }.to change { record.reload.elasticsearch_worker_number_of_shards }.from(16).to(2)
    end
  end
end