2016-07-21 07:42:37 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2017-10-03 04:35:01 -04:00
|
|
|
feature 'GFM autocomplete', :js do
|
2017-01-23 18:30:03 -05:00
|
|
|
let(:user) { create(:user, name: '💃speciąl someone💃', username: 'someone.special') }
|
2017-08-02 15:55:11 -04:00
|
|
|
let(:project) { create(:project) }
|
2016-12-03 05:44:18 -05:00
|
|
|
let(:label) { create(:label, project: project, title: 'special+') }
|
2016-07-21 07:42:37 -04:00
|
|
|
let(:issue) { create(:issue, project: project) }
|
|
|
|
|
|
|
|
before do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_master(user)
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(user)
|
2017-07-06 12:20:50 -04:00
|
|
|
visit project_issue_path(project, issue)
|
2016-07-21 07:42:37 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-07-21 09:41:27 -04:00
|
|
|
end
|
2016-07-21 07:42:37 -04:00
|
|
|
|
2017-07-07 13:08:39 -04:00
|
|
|
it 'updates issue descripton with GFM reference' do
|
2017-12-08 12:21:31 -05:00
|
|
|
find('.js-issuable-edit').click
|
2017-07-07 13:08:39 -04:00
|
|
|
|
2017-10-20 01:28:38 -04:00
|
|
|
simulate_input('#issue-description', "@#{user.name[0...3]}")
|
2017-07-07 13:08:39 -04:00
|
|
|
|
2017-08-03 01:13:46 -04:00
|
|
|
find('.atwho-view .cur').click
|
2017-07-07 13:08:39 -04:00
|
|
|
|
|
|
|
click_button 'Save changes'
|
|
|
|
|
|
|
|
expect(find('.description')).to have_content(user.to_reference)
|
|
|
|
end
|
|
|
|
|
2016-07-21 09:41:27 -04:00
|
|
|
it 'opens autocomplete menu when field starts with text' do
|
2016-07-21 07:42:37 -04:00
|
|
|
page.within '.timeline-content-form' do
|
2017-07-20 16:43:54 -04:00
|
|
|
find('#note-body').native.send_keys('@')
|
2016-07-21 07:42:37 -04:00
|
|
|
end
|
|
|
|
|
2016-11-14 05:34:10 -05:00
|
|
|
expect(page).to have_selector('.atwho-container')
|
2016-07-21 07:42:37 -04:00
|
|
|
end
|
2016-07-21 09:41:27 -04:00
|
|
|
|
2016-12-03 05:44:18 -05:00
|
|
|
it 'doesnt open autocomplete menu character is prefixed with text' do
|
2016-07-21 09:41:27 -04:00
|
|
|
page.within '.timeline-content-form' do
|
2017-07-20 16:43:54 -04:00
|
|
|
find('#note-body').native.send_keys('testing')
|
|
|
|
find('#note-body').native.send_keys('@')
|
2016-07-21 09:41:27 -04:00
|
|
|
end
|
|
|
|
|
2016-12-03 05:44:18 -05:00
|
|
|
expect(page).not_to have_selector('.atwho-view')
|
2016-07-21 09:41:27 -04:00
|
|
|
end
|
|
|
|
|
2017-01-18 07:17:24 -05:00
|
|
|
it 'doesnt select the first item for non-assignee dropdowns' do
|
|
|
|
page.within '.timeline-content-form' do
|
2017-07-20 16:43:54 -04:00
|
|
|
find('#note-body').native.send_keys(':')
|
2017-01-18 07:17:24 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_selector('.atwho-container')
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2017-01-18 07:17:24 -05:00
|
|
|
|
|
|
|
expect(find('#at-view-58')).not_to have_selector('.cur:first-of-type')
|
|
|
|
end
|
|
|
|
|
2017-04-25 06:06:24 -04:00
|
|
|
it 'does not open autocomplete menu when ":" is prefixed by a number and letters' do
|
2017-07-20 16:43:54 -04:00
|
|
|
note = find('#note-body')
|
2017-04-25 06:06:24 -04:00
|
|
|
|
|
|
|
# Number.
|
|
|
|
page.within '.timeline-content-form' do
|
|
|
|
note.native.send_keys('7:')
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).not_to have_selector('.atwho-view')
|
|
|
|
|
|
|
|
# ASCII letter.
|
|
|
|
page.within '.timeline-content-form' do
|
|
|
|
note.set('')
|
|
|
|
note.native.send_keys('w:')
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).not_to have_selector('.atwho-view')
|
|
|
|
|
|
|
|
# Non-ASCII letter.
|
|
|
|
page.within '.timeline-content-form' do
|
|
|
|
note.set('')
|
|
|
|
note.native.send_keys('Ё:')
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).not_to have_selector('.atwho-view')
|
|
|
|
end
|
|
|
|
|
2017-01-18 07:17:24 -05:00
|
|
|
it 'selects the first item for assignee dropdowns' do
|
|
|
|
page.within '.timeline-content-form' do
|
2017-07-20 16:43:54 -04:00
|
|
|
find('#note-body').native.send_keys('@')
|
2017-01-18 07:17:24 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_selector('.atwho-container')
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2017-01-18 07:17:24 -05:00
|
|
|
|
|
|
|
expect(find('#at-view-64')).to have_selector('.cur:first-of-type')
|
|
|
|
end
|
|
|
|
|
2017-01-23 18:30:03 -05:00
|
|
|
it 'includes items for assignee dropdowns with non-ASCII characters in name' do
|
|
|
|
page.within '.timeline-content-form' do
|
2017-07-20 16:43:54 -04:00
|
|
|
find('#note-body').native.send_keys('')
|
2017-10-20 01:28:38 -04:00
|
|
|
simulate_input('#note-body', "@#{user.name[0...8]}")
|
2017-01-23 18:30:03 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_selector('.atwho-container')
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2017-01-23 18:30:03 -05:00
|
|
|
|
|
|
|
expect(find('#at-view-64')).to have_content(user.name)
|
|
|
|
end
|
|
|
|
|
2017-01-18 07:17:24 -05:00
|
|
|
it 'selects the first item for non-assignee dropdowns if a query is entered' do
|
|
|
|
page.within '.timeline-content-form' do
|
2017-07-20 16:43:54 -04:00
|
|
|
find('#note-body').native.send_keys(':1')
|
2017-01-18 07:17:24 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_selector('.atwho-container')
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2017-01-18 07:17:24 -05:00
|
|
|
|
|
|
|
expect(find('#at-view-58')).to have_selector('.cur:first-of-type')
|
|
|
|
end
|
|
|
|
|
2016-12-03 05:44:18 -05:00
|
|
|
context 'if a selected value has special characters' do
|
|
|
|
it 'wraps the result in double quotes' do
|
2017-07-20 16:43:54 -04:00
|
|
|
note = find('#note-body')
|
2016-12-03 05:44:18 -05:00
|
|
|
page.within '.timeline-content-form' do
|
2017-11-03 16:26:17 -04:00
|
|
|
find('#note-body').native.send_keys('')
|
2017-10-20 01:28:38 -04:00
|
|
|
simulate_input('#note-body', "~#{label.title[0]}")
|
2016-12-03 05:44:18 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
label_item = find('.atwho-view li', text: label.title)
|
|
|
|
|
|
|
|
expect_to_wrap(true, label_item, note, label.title)
|
2016-07-21 09:41:27 -04:00
|
|
|
end
|
|
|
|
|
2016-12-28 05:19:24 -05:00
|
|
|
it "shows dropdown after a new line" do
|
2017-07-20 16:43:54 -04:00
|
|
|
note = find('#note-body')
|
2016-12-28 05:19:24 -05:00
|
|
|
page.within '.timeline-content-form' do
|
|
|
|
note.native.send_keys('test')
|
|
|
|
note.native.send_keys(:enter)
|
|
|
|
note.native.send_keys(:enter)
|
|
|
|
note.native.send_keys('@')
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_selector('.atwho-container')
|
|
|
|
end
|
|
|
|
|
2016-12-23 04:05:01 -05:00
|
|
|
it "does not show dropdown when preceded with a special character" do
|
2017-07-20 16:43:54 -04:00
|
|
|
note = find('#note-body')
|
2016-12-22 13:39:00 -05:00
|
|
|
page.within '.timeline-content-form' do
|
|
|
|
note.native.send_keys("@")
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_selector('.atwho-container')
|
|
|
|
|
|
|
|
page.within '.timeline-content-form' do
|
|
|
|
note.native.send_keys("@")
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_selector('.atwho-container', visible: false)
|
|
|
|
end
|
|
|
|
|
2016-12-23 04:05:01 -05:00
|
|
|
it "does not throw an error if no labels exist" do
|
2017-07-20 16:43:54 -04:00
|
|
|
note = find('#note-body')
|
2016-12-23 04:05:01 -05:00
|
|
|
page.within '.timeline-content-form' do
|
|
|
|
note.native.send_keys('~')
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_selector('.atwho-container', visible: false)
|
|
|
|
end
|
|
|
|
|
2016-12-03 05:44:18 -05:00
|
|
|
it 'doesn\'t wrap for assignee values' do
|
2017-07-20 16:43:54 -04:00
|
|
|
note = find('#note-body')
|
2016-12-03 05:44:18 -05:00
|
|
|
page.within '.timeline-content-form' do
|
|
|
|
note.native.send_keys("@#{user.username[0]}")
|
|
|
|
end
|
|
|
|
|
|
|
|
user_item = find('.atwho-view li', text: user.username)
|
|
|
|
|
|
|
|
expect_to_wrap(false, user_item, note, user.username)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'doesn\'t wrap for emoji values' do
|
2017-07-20 16:43:54 -04:00
|
|
|
note = find('#note-body')
|
2016-12-03 05:44:18 -05:00
|
|
|
page.within '.timeline-content-form' do
|
2017-10-17 22:30:36 -04:00
|
|
|
note.native.send_keys(":cartwheel_")
|
2016-12-03 05:44:18 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
emoji_item = find('.atwho-view li', text: 'cartwheel_tone1')
|
|
|
|
|
|
|
|
expect_to_wrap(false, emoji_item, note, 'cartwheel_tone1')
|
|
|
|
end
|
|
|
|
|
2016-12-21 06:03:52 -05:00
|
|
|
it 'doesn\'t open autocomplete after non-word character' do
|
|
|
|
page.within '.timeline-content-form' do
|
2017-07-20 16:43:54 -04:00
|
|
|
find('#note-body').native.send_keys("@#{user.username[0..2]}!")
|
2016-12-21 06:03:52 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).not_to have_selector('.atwho-view')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'doesn\'t open autocomplete if there is no space before' do
|
|
|
|
page.within '.timeline-content-form' do
|
2017-07-20 16:43:54 -04:00
|
|
|
find('#note-body').native.send_keys("hello:#{user.username[0..2]}")
|
2016-12-21 06:03:52 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).not_to have_selector('.atwho-view')
|
|
|
|
end
|
|
|
|
|
2017-05-31 01:50:53 -04:00
|
|
|
it 'triggers autocomplete after selecting a quick action' do
|
2017-07-20 16:43:54 -04:00
|
|
|
note = find('#note-body')
|
2017-02-09 22:35:32 -05:00
|
|
|
page.within '.timeline-content-form' do
|
|
|
|
note.native.send_keys('/as')
|
|
|
|
end
|
|
|
|
|
2017-10-17 22:30:36 -04:00
|
|
|
find('.atwho-view li', text: '/assign')
|
|
|
|
note.native.send_keys(:tab)
|
2017-02-09 22:35:32 -05:00
|
|
|
|
|
|
|
user_item = find('.atwho-view li', text: user.username)
|
|
|
|
expect(user_item).to have_content(user.username)
|
|
|
|
end
|
2017-11-13 09:30:22 -05:00
|
|
|
end
|
2017-02-09 22:35:32 -05:00
|
|
|
|
2017-11-27 22:51:03 -05:00
|
|
|
# This context has jsut one example in each contexts in order to improve spec performance.
|
|
|
|
context 'labels' do
|
|
|
|
let!(:backend) { create(:label, project: project, title: 'backend') }
|
|
|
|
let!(:bug) { create(:label, project: project, title: 'bug') }
|
|
|
|
let!(:feature_proposal) { create(:label, project: project, title: 'feature proposal') }
|
|
|
|
|
|
|
|
context 'when no labels are assigned' do
|
|
|
|
it 'shows labels' do
|
|
|
|
note = find('#note-body')
|
|
|
|
|
|
|
|
# It should show all the labels on "~".
|
|
|
|
type(note, '~')
|
|
|
|
expect_labels(shown: [backend, bug, feature_proposal])
|
|
|
|
|
|
|
|
# It should show all the labels on "/label ~".
|
|
|
|
type(note, '/label ~')
|
|
|
|
expect_labels(shown: [backend, bug, feature_proposal])
|
|
|
|
|
|
|
|
# It should show all the labels on "/relabel ~".
|
|
|
|
type(note, '/relabel ~')
|
|
|
|
expect_labels(shown: [backend, bug, feature_proposal])
|
|
|
|
|
|
|
|
# It should show no labels on "/unlabel ~".
|
|
|
|
type(note, '/unlabel ~')
|
|
|
|
expect_labels(not_shown: [backend, bug, feature_proposal])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when some labels are assigned' do
|
|
|
|
before do
|
|
|
|
issue.labels << [backend]
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows labels' do
|
|
|
|
note = find('#note-body')
|
|
|
|
|
|
|
|
# It should show all the labels on "~".
|
|
|
|
type(note, '~')
|
|
|
|
expect_labels(shown: [backend, bug, feature_proposal])
|
|
|
|
|
|
|
|
# It should show only unset labels on "/label ~".
|
|
|
|
type(note, '/label ~')
|
|
|
|
expect_labels(shown: [bug, feature_proposal], not_shown: [backend])
|
|
|
|
|
|
|
|
# It should show all the labels on "/relabel ~".
|
|
|
|
type(note, '/relabel ~')
|
|
|
|
expect_labels(shown: [backend, bug, feature_proposal])
|
|
|
|
|
|
|
|
# It should show only set labels on "/unlabel ~".
|
|
|
|
type(note, '/unlabel ~')
|
|
|
|
expect_labels(shown: [backend], not_shown: [bug, feature_proposal])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when all labels are assigned' do
|
|
|
|
before do
|
|
|
|
issue.labels << [backend, bug, feature_proposal]
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows labels' do
|
|
|
|
note = find('#note-body')
|
|
|
|
|
|
|
|
# It should show all the labels on "~".
|
|
|
|
type(note, '~')
|
|
|
|
expect_labels(shown: [backend, bug, feature_proposal])
|
|
|
|
|
|
|
|
# It should show no labels on "/label ~".
|
|
|
|
type(note, '/label ~')
|
|
|
|
expect_labels(not_shown: [backend, bug, feature_proposal])
|
|
|
|
|
|
|
|
# It should show all the labels on "/relabel ~".
|
|
|
|
type(note, '/relabel ~')
|
|
|
|
expect_labels(shown: [backend, bug, feature_proposal])
|
|
|
|
|
|
|
|
# It should show all the labels on "/unlabel ~".
|
|
|
|
type(note, '/unlabel ~')
|
|
|
|
expect_labels(shown: [backend, bug, feature_proposal])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-11-13 09:30:22 -05:00
|
|
|
def expect_to_wrap(should_wrap, item, note, value)
|
|
|
|
expect(item).to have_content(value)
|
|
|
|
expect(item).not_to have_content("\"#{value}\"")
|
2016-12-03 05:44:18 -05:00
|
|
|
|
2017-11-13 09:30:22 -05:00
|
|
|
item.click
|
2016-12-03 05:44:18 -05:00
|
|
|
|
2017-11-13 09:30:22 -05:00
|
|
|
if should_wrap
|
|
|
|
expect(note.value).to include("\"#{value}\"")
|
|
|
|
else
|
|
|
|
expect(note.value).not_to include("\"#{value}\"")
|
2016-12-03 05:44:18 -05:00
|
|
|
end
|
2016-07-21 09:41:27 -04:00
|
|
|
end
|
2017-11-27 22:51:03 -05:00
|
|
|
|
|
|
|
def expect_labels(shown: nil, not_shown: nil)
|
|
|
|
page.within('.atwho-container') do
|
|
|
|
if shown
|
|
|
|
expect(page).to have_selector('.atwho-view li', count: shown.size)
|
|
|
|
shown.each { |label| expect(page).to have_content(label.title) }
|
|
|
|
end
|
|
|
|
|
|
|
|
if not_shown
|
|
|
|
expect(page).not_to have_selector('.atwho-view li') unless shown
|
|
|
|
not_shown.each { |label| expect(page).not_to have_content(label.title) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# `note` is a textarea where the given text should be typed.
|
|
|
|
# We don't want to find it each time this function gets called.
|
|
|
|
def type(note, text)
|
|
|
|
page.within('.timeline-content-form') do
|
|
|
|
note.set('')
|
|
|
|
note.native.send_keys(text)
|
|
|
|
end
|
|
|
|
end
|
2016-07-21 07:42:37 -04:00
|
|
|
end
|