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

user_searches_for_comments_spec.rb « search « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c39e9f41d4e8a4cd5ba10be5b9ec2c86e9982b4 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'User searches for comments', :js, :disable_rate_limiter do
  using RSpec::Parameterized::TableSyntax

  let_it_be(:project) { create(:project, :repository) }
  let_it_be(:user) { create(:user) }

  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)
      project.add_reporter(user)
      sign_in(user)

      visit(project_path(project))
    end

    include_examples 'search timeouts', 'notes' do
      let(:additional_params) { { project_id: project.id } }
    end

    context 'when a comment is in commits' do
      context 'when comment belongs to an invalid commit' do
        let(:comment) { create(:note_on_commit, author: user, project: project, commit_id: 12345678, note: 'Bug here') }

        it 'finds a commit' do
          submit_search(comment.note)
          select_search_scope('Comments')

          page.within('.results') do
            expect(page).to have_content('Commit deleted')
            expect(page).to have_content('12345678')
          end
        end
      end
    end

    context 'when a comment is in a snippet' do
      let(:snippet) { create(:project_snippet, :private, project: project, author: user, title: 'Some title') }
      let(:comment) { create(:note, noteable: snippet, author: user, note: 'Supercalifragilisticexpialidocious', project: project) }

      it 'finds a snippet' do
        submit_search(comment.note)
        select_search_scope('Comments')

        expect(page).to have_selector('.results', text: snippet.title)
      end
    end
  end
end