debian-mirror-gitlab/spec/features/participants_autocomplete_spec.rb

74 lines
2 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2016-06-02 11:05:42 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe 'Member autocomplete', :js do
2017-09-10 17:25:29 +05:30
let(:project) { create(:project, :public) }
2016-06-02 11:05:42 +05:30
let(:user) { create(:user) }
let(:author) { create(:user) }
2017-08-17 22:00:37 +05:30
let(:note) { create(:note, noteable: noteable, project: noteable.project) }
2016-06-02 11:05:42 +05:30
before do
2017-08-17 22:00:37 +05:30
note # actually create the note
2017-09-10 17:25:29 +05:30
sign_in(user)
2016-06-02 11:05:42 +05:30
end
2018-03-17 18:26:18 +05:30
shared_examples "open suggestions when typing @" do |resource_name|
2017-08-17 22:00:37 +05:30
before do
page.within('.new-note') do
2018-11-08 19:23:39 +05:30
if resource_name == 'commit'
2018-03-17 18:26:18 +05:30
find('#note_note').send_keys('@')
2018-11-08 19:23:39 +05:30
else
find('#note-body').send_keys('@')
2018-03-17 18:26:18 +05:30
end
2016-06-02 11:05:42 +05:30
end
end
2017-08-17 22:00:37 +05:30
it 'suggests noteable author and note author' do
2016-06-02 11:05:42 +05:30
page.within('.atwho-view', visible: true) do
2017-08-17 22:00:37 +05:30
expect(page).to have_content(author.username)
expect(page).to have_content(note.author.username)
2016-06-02 11:05:42 +05:30
end
end
end
2017-08-17 22:00:37 +05:30
context 'adding a new note on a Issue' do
let(:noteable) { create(:issue, author: author, project: project) }
2020-01-01 13:55:28 +05:30
2016-06-02 11:05:42 +05:30
before do
2017-09-10 17:25:29 +05:30
visit project_issue_path(project, noteable)
2016-06-02 11:05:42 +05:30
end
2018-03-17 18:26:18 +05:30
include_examples "open suggestions when typing @", 'issue'
2016-06-02 11:05:42 +05:30
end
2017-08-17 22:00:37 +05:30
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
2020-01-01 13:55:28 +05:30
2016-06-02 11:05:42 +05:30
before do
2017-09-10 17:25:29 +05:30
visit project_merge_request_path(project, noteable)
2016-06-02 11:05:42 +05:30
end
2018-03-17 18:26:18 +05:30
include_examples "open suggestions when typing @", 'merge_request'
2016-06-02 11:05:42 +05:30
end
2017-08-17 22:00:37 +05:30
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) }
2016-06-02 11:05:42 +05:30
before do
2017-09-10 17:25:29 +05:30
allow(User).to receive(:find_by_any_email)
2020-01-01 13:55:28 +05:30
.with(noteable.author_email.downcase, confirmed: true).and_return(author)
2016-06-02 11:05:42 +05:30
2017-09-10 17:25:29 +05:30
visit project_commit_path(project, noteable)
2016-06-02 11:05:42 +05:30
end
2018-03-17 18:26:18 +05:30
include_examples "open suggestions when typing @", 'commit'
2016-06-02 11:05:42 +05:30
end
end