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

show.html.haml_spec.rb « search « views « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db06adfeb6b5332aee37457eafe6fe3692b763ab (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'search/show', feature_category: :global_search do
  let(:search_term) { nil }
  let(:user) { build(:user) }
  let(:search_service_presenter) do
    instance_double(SearchServicePresenter, without_count?: false, advanced_search_enabled?: false)
  end

  before do
    stub_template "search/_results.html.haml" => 'Results Partial'

    allow(view).to receive(:current_user) { user }

    assign(:search_service_presenter, search_service_presenter)
    assign(:search_term, search_term)
  end

  context 'when search term is supplied' do
    let(:search_term) { 'Search Foo' }

    it 'renders the results partial' do
      render

      expect(rendered).to render_template('search/_results')
    end
  end

  context 'when the search page is opened' do
    it 'displays the title' do
      render

      expect(rendered).to have_selector('h1.page-title', text: 'Search')
      expect(rendered).not_to have_selector('h1.page-title code')
    end

    it 'does not render the results partial' do
      render

      expect(rendered).not_to render_template('search/_results')
    end
  end

  context 'unfurling support' do
    let(:group) { build(:group) }
    let(:search_results) do
      instance_double(Gitlab::GroupSearchResults).tap do |double|
        allow(double).to receive(:formatted_count).and_return(0)
      end
    end

    before do
      assign(:search_results, search_results)
      assign(:scope, 'issues')
      assign(:group, group)
    end

    context 'search with full count' do
      let(:search_service_presenter) do
        instance_double(SearchServicePresenter, without_count?: false, advanced_search_enabled?: false)
      end

      it 'renders meta tags for a group' do
        render

        expect(view.page_description).to match(/\d+ issues for term '#{search_term}'/)
        expect(view.page_card_attributes).to eq("Namespace" => group.full_path)
      end

      it 'renders meta tags for both group and project' do
        project = build(:project, group: group)
        assign(:project, project)

        render

        expect(view.page_description).to match(/\d+ issues for term '#{search_term}'/)
        expect(view.page_card_attributes).to eq("Namespace" => group.full_path, "Project" => project.full_path)
      end
    end

    context 'search without full count' do
      let(:search_service_presenter) do
        instance_double(SearchServicePresenter, without_count?: true, advanced_search_enabled?: false)
      end

      it 'renders meta tags for a group' do
        render

        expect(view.page_description).to match(/issues results for term '#{search_term}'/)
        expect(view.page_card_attributes).to eq("Namespace" => group.full_path)
      end

      it 'renders meta tags for both group and project' do
        project = build(:project, group: group)
        assign(:project, project)

        render

        expect(view.page_description).to match(/issues results for term '#{search_term}'/)
        expect(view.page_card_attributes).to eq("Namespace" => group.full_path, "Project" => project.full_path)
      end
    end
  end
end