Commit 709a5667 authored by Rémy Coutable's avatar Rémy Coutable

Fix spec/features/participants_autocomplete_spec.rb

Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent f879e40d
require 'spec_helper'
feature 'Member autocomplete', feature: true do
include WaitForAjax
feature 'Member autocomplete', :js do
let(:project) { create(:project, :public) }
let(:user) { create(:user) }
let(:participant) { create(:user) }
let(:author) { create(:user) }
let(:note) { create(:note, noteable: noteable, project: noteable.project) }
before do
allow_any_instance_of(Commit).to receive(:author).and_return(author)
login_as user
end
shared_examples "open suggestions" do
it 'displays suggestions' do
expect(page).to have_selector('.atwho-view', visible: true)
note # actually create the note
login_as(user)
end
it 'suggests author' do
page.within('.atwho-view', visible: true) do
expect(page).to have_content(author.username)
shared_examples "open suggestions when typing @" do
before do
page.within('.new-note') do
find('#note_note').send_keys('@')
end
end
it 'suggests participant' do
it 'suggests noteable author and note author' do
page.within('.atwho-view', visible: true) do
expect(page).to have_content(participant.username)
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', js: true do
context 'adding a new note on a Issue' do
let(:noteable) { create(:issue, author: author, project: project) }
before do
issue = create(:issue, author: author, project: project)
create(:note, note: 'Ultralight Beam', noteable: issue,
project: project, author: participant)
visit_issue(project, issue)
visit namespace_project_issue_path(project.namespace, project, noteable)
end
context 'when typing @' do
include_examples "open suggestions"
before do
open_member_suggestions
end
end
include_examples "open suggestions when typing @"
end
context 'adding a new note on a Merge Request ', js: true do
before do
merge = create(:merge_request, source_project: project, target_project: project, author: author)
create(:note, note: 'Ultralight Beam', noteable: merge,
project: project, author: participant)
visit_merge_request(project, merge)
context 'adding a new note on a Merge Request' do
let(:noteable) do
create(:merge_request, source_project: project,
target_project: project, author: author)
end
context 'when typing @' do
include_examples "open suggestions"
before do
open_member_suggestions
end
visit namespace_project_merge_request_path(project.namespace, project, noteable)
end
end
context 'adding a new note on a Commit ', js: true do
let(:commit) { project.commit }
before do
allow(commit).to receive(:author).and_return(author)
create(:note_on_commit, author: participant, project: project, commit_id: project.repository.commit.id, note: 'No More Parties in LA')
visit_commit(project, commit)
include_examples "open suggestions when typing @"
end
context 'when typing @' do
include_examples "open suggestions"
before do
open_member_suggestions
end
end
end
context 'adding a new note on a Commit' do
let(:noteable) { project.commit }
let(:note) { create(:note_on_commit, project: project, commit_id: project.commit.id) }
def open_member_suggestions
page.within('.new-note') do
find('#note_note').send_keys('@')
end
wait_for_ajax
end
def visit_issue(project, issue)
visit namespace_project_issue_path(project.namespace, project, issue)
end
before do
allow_any_instance_of(Commit).to receive(:author).and_return(author)
def visit_merge_request(project, merge)
visit namespace_project_merge_request_path(project.namespace, project, merge)
visit namespace_project_commit_path(project.namespace, project, noteable)
end
def visit_commit(project, commit)
visit namespace_project_commit_path(project.namespace, project, commit)
include_examples "open suggestions when typing @"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment