summaryrefslogtreecommitdiff
path: root/spec/features/search/user_searches_for_comments_spec.rb
blob: 2ce3fa4735f691f8f1b1235575c965e7f807504e (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
# frozen_string_literal: true

require 'spec_helper'

describe 'User searches for comments' do
  let(:project) { create(:project, :repository) }
  let(:user) { create(:user) }

  before do
    project.add_reporter(user)
    sign_in(user)

    visit(project_path(project))
  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
        page.within('.search') do
          fill_in('search', with: comment.note)
          click_button('Go')
        end

        click_link('Comments')

        expect(page).to have_text('Commit deleted')
        expect(page).to have_text('12345678')
      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
      page.within('.search') do
        fill_in('search', with: comment.note)
        click_button('Go')
      end

      click_link('Comments')

      expect(page).to have_link(snippet.title)
    end
  end
end