summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/config_checker/puma_rugged_checker_spec.rb
blob: afee3c5536ea5924fa9268454213601b09a5f3b8 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::ConfigChecker::PumaRuggedChecker do
  describe '#check' do
    subject { described_class.check }

    context 'application is not puma' do
      before do
        allow(Gitlab::Runtime).to receive(:puma?).and_return(false)
      end

      it { is_expected.to be_empty }
    end

    context 'application is puma' do
      let(:notice_multi_threaded_puma_with_rugged) do
        {
            type: 'warning',
            message: 'Puma is running with a thread count above 1 and the Rugged '\
                     'service is enabled. This may decrease performance in some environments. '\
                     'See our <a href="https://docs.gitlab.com/ee/administration/operations/puma.html#performance-caveat-when-using-puma-with-rugged">documentation</a> '\
                     'for details of this issue.'
        }
      end

      before do
        allow(Gitlab::Runtime).to receive(:puma?).and_return(true)
        allow(described_class).to receive(:running_puma_with_multiple_threads?).and_return(multithreaded_puma)
        allow(described_class).to receive(:rugged_enabled_through_feature_flag?).and_return(rugged_enabled)
      end

      context 'not multithreaded_puma and rugged API enabled' do
        let(:multithreaded_puma) { false }
        let(:rugged_enabled) { true }

        it { is_expected.to be_empty }
      end

      context 'not multithreaded_puma and rugged API is not enabled' do
        let(:multithreaded_puma) { false }
        let(:rugged_enabled) { false }

        it { is_expected.to be_empty }
      end

      context 'multithreaded_puma and rugged API is not enabled' do
        let(:multithreaded_puma) { true }
        let(:rugged_enabled) { false }

        it { is_expected.to be_empty }
      end

      context 'multithreaded_puma and rugged API is enabled' do
        let(:multithreaded_puma) { true }
        let(:rugged_enabled) { true }

        it 'report multi_threaded_puma_with_rugged notices' do
          is_expected.to contain_exactly(notice_multi_threaded_puma_with_rugged)
        end
      end
    end
  end
end