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

20230621070810_update_requeue_workers_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: 763d9ea610c8dbfbdce3a856b2d430d69450c8f8 (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 UpdateRequeueWorkersInApplicationSettingsForGitlabCom, feature_category: :global_search do
  let(:settings) { table(:application_settings) }

  describe "#up" do
    it 'does nothing' do
      record = settings.create!

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

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

      record = settings.create!

      expect { migrate! }.to change { record.reload.elasticsearch_requeue_workers }.from(false).to(true)
    end
  end

  describe "#down" do
    it 'does nothing' do
      record = settings.create!(elasticsearch_requeue_workers: true)

      migrate!

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

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

      record = settings.create!(elasticsearch_requeue_workers: true)

      migrate!

      expect { schema_migrate_down! }.to change { record.reload.elasticsearch_requeue_workers }.from(true).to(false)
    end
  end
end