summaryrefslogtreecommitdiff
path: root/spec/features/participants_autocomplete_spec.rb
blob: 449ce80bc718699a80a088d4f3774c466a28fe06 (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
require 'spec_helper'

feature 'Member autocomplete', :js do
  let(:project) { create(:empty_project, :public) }
  let(:user) { create(:user) }
  let(:author) { create(:user) }
  let(:note) { create(:note, noteable: noteable, project: noteable.project) }

  before do
    note # actually create the note
    login_as(user)
  end

  shared_examples "open suggestions when typing @" do
    before do
      page.within('.new-note') do
        find('#note_note').send_keys('@')
      end
    end

    it 'suggests noteable author and note author' do
      page.within('.atwho-view', visible: true) do
        expect(page).to have_content(author.username)
        expect(page).to have_content(note.author.username)
      end
    end
  end

  context 'adding a new note on a Issue' do
    let(:noteable) { create(:issue, author: author, project: project) }
    before do
      visit namespace_project_issue_path(project.namespace, project, noteable)
    end

    include_examples "open suggestions when typing @"
  end

  context 'adding a new note on a Merge Request' do
    let(:project) { create(:project, :public, :repository) }
    let(:noteable) do
      create(:merge_request, source_project: project,
                             target_project: project, author: author)
    end
    before do
      visit namespace_project_merge_request_path(project.namespace, project, noteable)
    end

    include_examples "open suggestions when typing @"
  end

  context 'adding a new note on a Commit' do
    let(:project) { create(:project, :public, :repository) }
    let(:noteable) { project.commit }
    let(:note) { create(:note_on_commit, project: project, commit_id: project.commit.id) }

    before do
      allow_any_instance_of(Commit).to receive(:author).and_return(author)

      visit namespace_project_commit_path(project.namespace, project, noteable)
    end

    include_examples "open suggestions when typing @"
  end
end