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

_search.html.haml_spec.rb « layouts « views « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ceb82e3640ecd61b5f2a5517eb9a9ad30e7212a2 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'layouts/_search' do
  let(:group) { nil }
  let(:project) { nil }
  let(:scope) { 'issues' }
  let(:search_context) do
    instance_double(Gitlab::SearchContext,
      project: project,
      group: group,
      scope: scope,
      ref: nil,
      snippets: [],
      search_url: '/search',
      project_metadata: {},
      group_metadata: {})
  end

  before do
    allow(view).to receive(:search_context).and_return(search_context)
    allow(search_context).to receive(:code_search?).and_return(false)
    allow(search_context).to receive(:for_snippets?).and_return(false)
  end

  shared_examples 'search context scope is set' do
    context 'when rendering' do
      it 'sets the placeholder' do
        render

        expect(rendered).to include('placeholder="Search GitLab"')
        expect(rendered).to include('aria-label="Search GitLab"')
      end
    end

    context 'when on issues' do
      it 'sets scope to issues' do
        render

        expect(rendered).to have_css("input[name='scope'][value='issues']", count: 1, visible: false)
      end
    end

    context 'when on merge requests' do
      let(:scope) { 'merge_requests' }

      it 'sets scope to merge_requests' do
        render

        expect(rendered).to have_css("input[name='scope'][value='merge_requests']", count: 1, visible: false)
      end
    end
  end

  context 'when doing project level search' do
    let(:project) { create(:project) }

    before do
      allow(search_context).to receive(:for_project?).and_return(true)
      allow(search_context).to receive(:for_group?).and_return(false)
    end

    it_behaves_like 'search context scope is set'
  end

  context 'when doing group level search' do
    let(:group) { create(:group) }

    before do
      allow(search_context).to receive(:for_project?).and_return(false)
      allow(search_context).to receive(:for_group?).and_return(true)
    end

    it_behaves_like 'search context scope is set'
  end
end