summaryrefslogtreecommitdiff
path: root/spec/features/search/user_searches_for_commits_spec.rb
blob: 998f85213843751764abd37a3cc2ce76301a8a09 (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
require 'spec_helper'

describe 'User searches for commits' do
  let(:project) { create(:project, :repository) }
  let(:sha) { '6d394385cf567f80a8fd85055db1ab4c5295806f' }
  let(:user) { create(:user) }

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

    visit(search_path(project_id: project.id))
  end

  context 'when searching by SHA' do
    it 'finds a commit and redirects to its page' do
      fill_in('search', with: sha)
      click_button('Search')

      expect(page).to have_current_path(project_commit_path(project, sha))
    end

    it 'finds a commit in uppercase and redirects to its page' do
      fill_in('search', with: sha.upcase)
      click_button('Search')

      expect(page).to have_current_path(project_commit_path(project, sha))
    end
  end

  context 'when searching by message' do
    it 'finds a commit and holds on /search page' do
      create_commit('Message referencing another sha: "deadbeef"', project, user, 'master')

      fill_in('search', with: 'deadbeef')
      click_button('Search')

      expect(page).to have_current_path('/search', ignore_query: true)
    end

    it 'finds multiple commits' do
      fill_in('search', with: 'See merge request')
      click_button('Search')
      click_link('Commits')

      expect(page).to have_selector('.commit-row-description', count: 9)
    end
  end
end