summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/controllers/issuable_anonymous_search_disabled_examples.rb
blob: e77acb93798055ad1821d8d4179ab27cf0aa3cac (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
# frozen_string_literal: true

RSpec.shared_examples 'issuable list with anonymous search disabled' do |action|
  let(:controller_action) { :index }
  let(:params_with_search) { params.merge(search: 'some search term') }

  context 'when disable_anonymous_search is enabled' do
    before do
      stub_feature_flags(disable_anonymous_search: true)
    end

    it 'shows a flash message' do
      get controller_action, params: params_with_search

      expect(flash.now[:notice]).to eq('You must sign in to search for specific terms.')
    end

    context 'when search param is not given' do
      it 'does not show a flash message' do
        get controller_action, params: params

        expect(flash.now[:notice]).to be_nil
      end
    end

    context 'when user is signed-in' do
      it 'does not show a flash message' do
        sign_in(create(:user))
        get controller_action, params: params_with_search

        expect(flash.now[:notice]).to be_nil
      end
    end

    context 'when format is not HTML' do
      it 'does not show a flash message' do
        get controller_action, params: params_with_search.merge(format: :atom)

        expect(flash.now[:notice]).to be_nil
      end
    end
  end

  context 'when disable_anonymous_search is disabled' do
    before do
      stub_feature_flags(disable_anonymous_search: false)
    end

    it 'does not show a flash message' do
      get controller_action, params: params_with_search

      expect(flash.now[:notice]).to be_nil
    end
  end
end