summaryrefslogtreecommitdiff
path: root/spec/features/search/user_searches_for_users_spec.rb
blob: 1d649b42c8c4f3a068afff2d2076877428d4d9b8 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'User searches for users', :js, :clean_gitlab_redis_rate_limiting do
  let_it_be(:user1) { create(:user, username: 'gob_bluth', name: 'Gob Bluth') }
  let_it_be(:user2) { create(:user, username: 'michael_bluth', name: 'Michael Bluth') }
  let_it_be(:user3) { create(:user, username: 'gob_2018', name: 'George Oscar Bluth') }

  where(search_page_vertical_nav_enabled: [true, false])
  with_them do
    before do
      stub_feature_flags(search_page_vertical_nav: search_page_vertical_nav_enabled)

      sign_in(user1)
    end

    include_examples 'search timeouts', 'users' do
      before do
        visit(search_path)
      end
    end

    context 'when on the dashboard' do
      it 'finds the user' do
        visit dashboard_projects_path

        submit_search('gob')
        select_search_scope('Users')

        page.within('.results') do
          expect(page).to have_content('Gob Bluth')
          expect(page).to have_content('@gob_bluth')
        end
      end
    end

    context 'when on the project page' do
      let_it_be_with_reload(:project) { create(:project) }

      before do
        project.add_developer(user1)
        project.add_developer(user2)
      end

      it 'finds the user belonging to the project' do
        visit project_path(project)

        submit_search('gob')
        select_search_scope('Users')

        page.within('.results') do
          expect(page).to have_content('Gob Bluth')
          expect(page).to have_content('@gob_bluth')

          expect(page).not_to have_content('Michael Bluth')
          expect(page).not_to have_content('@michael_bluth')

          expect(page).not_to have_content('George Oscar Bluth')
          expect(page).not_to have_content('@gob_2018')
        end
      end
    end

    context 'when on the group page' do
      let(:group) { create(:group) }

      before do
        group.add_developer(user1)
        group.add_developer(user2)
      end

      it 'finds the user belonging to the group' do
        visit group_path(group)

        submit_search('gob')
        select_search_scope('Users')

        page.within('.results') do
          expect(page).to have_content('Gob Bluth')
          expect(page).to have_content('@gob_bluth')

          expect(page).not_to have_content('Michael Bluth')
          expect(page).not_to have_content('@michael_bluth')

          expect(page).not_to have_content('George Oscar Bluth')
          expect(page).not_to have_content('@gob_2018')
        end
      end
    end
  end
end