summaryrefslogtreecommitdiff
path: root/spec/presenters/search_service_presenter_spec.rb
blob: a235f954366fbb9ccfba4269475afdba6ad965cf (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe SearchServicePresenter, feature_category: :global_search do
  let(:user) { create(:user) }
  let(:search) { '' }
  let(:search_service) { SearchService.new(user, search: search, scope: scope) }
  let(:presenter) { described_class.new(search_service, current_user: user) }

  describe '#search_objects' do
    let(:search_objects) { Kaminari::PaginatableArray.new([]) }

    context 'objects do not respond to eager_load' do
      before do
        allow(search_service).to receive(:search_objects).and_return(search_objects)
        allow(search_objects).to receive(:respond_to?).with(:eager_load).and_return(false)
      end

      context 'users scope' do
        let(:scope) { 'users' }

        it 'does not eager load anything' do
          expect(search_objects).not_to receive(:eager_load)
          presenter.search_objects
        end
      end
    end
  end

  describe '#show_results_status?' do
    using RSpec::Parameterized::TableSyntax

    let(:scope) { nil }

    before do
      allow(presenter).to receive(:search_objects).and_return([])
      allow(presenter).to receive(:without_count?).and_return(!with_count)
      allow(presenter).to receive(:show_snippets?).and_return(show_snippets)
      allow(presenter).to receive(:show_sort_dropdown?).and_return(show_sort_dropdown)
    end

    where(:with_count, :show_snippets, :show_sort_dropdown, :result) do
      true  | true  | true  | true
      false | true  | false | true
      false | false | true  | true
      false | false | false | false
    end

    with_them do
      it { expect(presenter.show_results_status?).to eq(result) }
    end
  end

  describe '#advanced_search_enabled?' do
    let(:scope) { nil }

    it { expect(presenter.advanced_search_enabled?).to eq(false) }
  end
end