debian-mirror-gitlab/spec/features/issues/form_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

532 lines
17 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2019-12-04 20:38:33 +05:30
require 'spec_helper'
2016-11-03 12:29:30 +05:30
2020-06-23 00:09:42 +05:30
RSpec.describe 'New/edit issue', :js do
2017-08-17 22:00:37 +05:30
include ActionView::Helpers::JavaScriptHelper
2022-05-07 20:08:51 +05:30
let_it_be(:project) { create(:project, :repository) }
2021-12-11 22:18:48 +05:30
let_it_be(:user) { create(:user) }
let_it_be(:user2) { create(:user) }
2022-05-07 20:08:51 +05:30
let_it_be(:guest) { create(:user) }
2021-10-27 15:23:28 +05:30
let_it_be(:milestone) { create(:milestone, project: project) }
let_it_be(:label) { create(:label, project: project) }
let_it_be(:label2) { create(:label, project: project) }
let_it_be(:issue) { create(:issue, project: project, assignees: [user], milestone: milestone) }
2022-05-07 20:08:51 +05:30
let_it_be(:confidential_issue) { create(:issue, project: project, assignees: [user], milestone: milestone, confidential: true) }
2016-11-03 12:29:30 +05:30
2021-12-11 22:18:48 +05:30
let(:current_user) { user }
2019-07-31 22:56:46 +05:30
2021-12-11 22:18:48 +05:30
before_all do
2018-11-18 11:00:15 +05:30
project.add_maintainer(user)
project.add_maintainer(user2)
2022-05-07 20:08:51 +05:30
project.add_guest(guest)
2016-11-03 12:29:30 +05:30
end
2021-12-11 22:18:48 +05:30
before do
stub_licensed_features(multiple_issue_assignees: false, issue_weights: false)
sign_in(current_user)
end
describe 'new issue' do
2016-11-03 12:29:30 +05:30
before do
2017-09-10 17:25:29 +05:30
visit new_project_issue_path(project)
2016-11-03 12:29:30 +05:30
end
2017-08-17 22:00:37 +05:30
describe 'shorten users API pagination limit' do
before do
2017-09-10 17:25:29 +05:30
# Using `allow_any_instance_of`/`and_wrap_original`, `original` would
# somehow refer to the very block we defined to _wrap_ that method, instead of
2019-02-15 15:39:39 +05:30
# the original method, resulting in infinite recursion when called.
2017-09-10 17:25:29 +05:30
# This is likely a bug with helper modules included into dynamically generated view classes.
# To work around this, we have to hold on to and call to the original implementation manually.
2019-07-31 22:56:46 +05:30
original_issue_dropdown_options = FormHelper.instance_method(:assignees_dropdown_options)
allow_any_instance_of(FormHelper).to receive(:assignees_dropdown_options).and_wrap_original do |original, *args|
2017-09-10 17:25:29 +05:30
options = original_issue_dropdown_options.bind(original.receiver).call(*args)
options[:data][:per_page] = 2
2017-08-17 22:00:37 +05:30
options
end
2017-09-10 17:25:29 +05:30
visit new_project_issue_path(project)
2017-08-17 22:00:37 +05:30
click_button 'Unassigned'
2017-09-10 17:25:29 +05:30
wait_for_requests
2017-08-17 22:00:37 +05:30
end
2019-07-07 11:18:12 +05:30
it 'displays selected users even if they are not part of the original API call' do
2017-08-17 22:00:37 +05:30
find('.dropdown-input-field').native.send_keys user2.name
page.within '.dropdown-menu-user' do
expect(page).to have_content user2.name
click_link user2.name
end
2017-09-10 17:25:29 +05:30
find('.js-assignee-search').click
2017-08-17 22:00:37 +05:30
find('.js-dropdown-input-clear').click
page.within '.dropdown-menu-user' do
expect(page).to have_content user.name
expect(find('.dropdown-menu-user a.is-active').first(:xpath, '..')['data-user-id']).to eq(user2.id.to_s)
end
end
end
describe 'single assignee' do
before do
click_button 'Unassigned'
2017-09-10 17:25:29 +05:30
wait_for_requests
2017-08-17 22:00:37 +05:30
end
it 'unselects other assignees when unassigned is selected' do
page.within '.dropdown-menu-user' do
click_link user2.name
end
click_button user2.name
page.within '.dropdown-menu-user' do
click_link 'Unassigned'
end
expect(find('input[name="issue[assignee_ids][]"]', visible: false).value).to match('0')
end
it 'toggles assign to me when current user is selected and unselected' do
page.within '.dropdown-menu-user' do
click_link user.name
end
expect(find('a', text: 'Assign to me', visible: false)).not_to be_visible
click_button user.name
page.within('.dropdown-menu-user') do
click_link user.name
end
expect(page.find('.dropdown-menu-user', visible: false)).not_to be_visible
end
end
2016-11-03 12:29:30 +05:30
it 'allows user to create new issue' do
fill_in 'issue_title', with: 'title'
fill_in 'issue_description', with: 'title'
2017-08-17 22:00:37 +05:30
expect(find('a', text: 'Assign to me')).to be_visible
click_button 'Unassigned'
2017-09-10 17:25:29 +05:30
wait_for_requests
2016-11-03 12:29:30 +05:30
page.within '.dropdown-menu-user' do
2017-08-17 22:00:37 +05:30
click_link user2.name
end
expect(find('input[name="issue[assignee_ids][]"]', visible: false).value).to match(user2.id.to_s)
page.within '.js-assignee-search' do
expect(page).to have_content user2.name
2016-11-03 12:29:30 +05:30
end
2017-08-17 22:00:37 +05:30
expect(find('a', text: 'Assign to me')).to be_visible
click_link 'Assign to me'
assignee_ids = page.all('input[name="issue[assignee_ids][]"]', visible: false)
expect(assignee_ids[0].value).to match(user.id.to_s)
2016-11-03 12:29:30 +05:30
page.within '.js-assignee-search' do
expect(page).to have_content user.name
end
2017-08-17 22:00:37 +05:30
expect(find('a', text: 'Assign to me', visible: false)).not_to be_visible
2016-11-03 12:29:30 +05:30
2023-01-13 00:05:48 +05:30
click_button 'Select milestone'
click_button milestone.title
2016-11-03 12:29:30 +05:30
expect(find('input[name="issue[milestone_id]"]', visible: false).value).to match(milestone.id.to_s)
2023-01-13 00:05:48 +05:30
expect(page).to have_button milestone.title
2016-11-03 12:29:30 +05:30
click_button 'Labels'
page.within '.dropdown-menu-labels' do
click_link label.title
click_link label2.title
end
2018-11-08 19:23:39 +05:30
find('.js-issuable-form-dropdown.js-label-select').click
2016-11-03 12:29:30 +05:30
page.within '.js-label-select' do
expect(page).to have_content label.title
end
expect(page.all('input[name="issue[label_ids][]"]', visible: false)[1].value).to match(label.id.to_s)
expect(page.all('input[name="issue[label_ids][]"]', visible: false)[2].value).to match(label2.id.to_s)
2021-04-29 21:17:54 +05:30
click_button 'Create issue'
2016-11-03 12:29:30 +05:30
page.within '.issuable-sidebar' do
page.within '.assignee' do
2017-08-17 22:00:37 +05:30
expect(page).to have_content "Assignee"
2016-11-03 12:29:30 +05:30
end
page.within '.milestone' do
expect(page).to have_content milestone.title
end
page.within '.labels' do
expect(page).to have_content label.title
expect(page).to have_content label2.title
end
end
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
page.within '.breadcrumbs' do
2017-08-17 22:00:37 +05:30
issue = Issue.find_by(title: 'title')
2018-03-17 18:26:18 +05:30
expect(page).to have_text("Issues #{issue.to_reference}")
2017-08-17 22:00:37 +05:30
end
end
2022-05-07 20:08:51 +05:30
it 'displays an error message when submitting an invalid form' do
click_button 'Create issue'
page.within('[data-testid="issue-title-input-field"]') do
expect(page).to have_text(_('This field is required.'))
end
end
2017-08-17 22:00:37 +05:30
it 'correctly updates the dropdown toggle when removing a label' do
click_button 'Labels'
page.within '.dropdown-menu-labels' do
click_link label.title
end
expect(find('.js-label-select')).to have_content(label.title)
page.within '.dropdown-menu-labels' do
click_link label.title
end
expect(find('.js-label-select')).to have_content('Labels')
end
2018-03-27 19:54:05 +05:30
it 'clears label search input field when a label is selected' do
click_button 'Labels'
page.within '.dropdown-menu-labels' do
search_field = find('input[type="search"]')
search_field.set(label2.title)
click_link label2.title
expect(search_field.value).to eq ''
end
end
2017-08-17 22:00:37 +05:30
it 'correctly updates the selected user when changing assignee' do
click_button 'Unassigned'
2017-09-10 17:25:29 +05:30
wait_for_requests
2017-08-17 22:00:37 +05:30
page.within '.dropdown-menu-user' do
click_link user.name
end
expect(find('.js-assignee-search')).to have_content(user.name)
click_button user.name
page.within '.dropdown-menu-user' do
click_link user2.name
end
expect(find('.js-assignee-search')).to have_content(user2.name)
2016-11-03 12:29:30 +05:30
end
2017-09-10 17:25:29 +05:30
it 'description has autocomplete' do
find('#issue_description').native.send_keys('')
fill_in 'issue_description', with: '@'
expect(page).to have_selector('.atwho-view')
end
2018-04-05 14:03:07 +05:30
2021-10-27 15:23:28 +05:30
describe 'displays issue type options in the dropdown' do
2021-12-11 22:18:48 +05:30
shared_examples 'type option is visible' do |label:, identifier:|
it "shows #{identifier} option", :aggregate_failures do
page.within('[data-testid="issue-type-select-dropdown"]') do
expect(page).to have_selector(%([data-testid="issue-type-#{identifier}-icon"]))
expect(page).to have_content(label)
end
end
end
shared_examples 'type option is missing' do |label:, identifier:|
it "does not show #{identifier} option", :aggregate_failures do
page.within('[data-testid="issue-type-select-dropdown"]') do
expect(page).not_to have_selector(%([data-testid="issue-type-#{identifier}-icon"]))
expect(page).not_to have_content(label)
end
end
end
2021-10-27 15:23:28 +05:30
before do
page.within('.issue-form') do
click_button 'Issue'
end
end
2021-12-11 22:18:48 +05:30
context 'when user is guest' do
let_it_be(:guest) { create(:user) }
let(:current_user) { guest }
before_all do
project.add_guest(guest)
2021-10-27 15:23:28 +05:30
end
2021-12-11 22:18:48 +05:30
it_behaves_like 'type option is visible', label: 'Issue', identifier: :issue
it_behaves_like 'type option is missing', label: 'Incident', identifier: :incident
2021-10-27 15:23:28 +05:30
end
2021-12-11 22:18:48 +05:30
context 'when user is reporter' do
let_it_be(:reporter) { create(:user) }
let(:current_user) { reporter }
before_all do
project.add_reporter(reporter)
2021-10-27 15:23:28 +05:30
end
2021-12-11 22:18:48 +05:30
it_behaves_like 'type option is visible', label: 'Issue', identifier: :issue
it_behaves_like 'type option is visible', label: 'Incident', identifier: :incident
2021-10-27 15:23:28 +05:30
end
end
2018-04-05 14:03:07 +05:30
describe 'milestone' do
2021-12-11 22:18:48 +05:30
let!(:milestone) do
create(:milestone, title: '"><img src=x onerror=alert(document.domain)>', project: project)
end
2018-04-05 14:03:07 +05:30
it 'escapes milestone' do
2023-01-13 00:05:48 +05:30
click_button 'Select milestone'
click_button milestone.title
2018-04-05 14:03:07 +05:30
page.within '.issue-milestone' do
2023-01-13 00:05:48 +05:30
expect(page).to have_button milestone.title
2018-04-05 14:03:07 +05:30
expect(page).not_to have_selector 'img'
end
end
end
2022-08-27 11:52:29 +05:30
describe 'when repository contains CONTRIBUTING.md' do
it 'has contribution guidelines prompt' do
text = _('Please review the %{linkStart}contribution guidelines%{linkEnd} for this project.') % { linkStart: nil, linkEnd: nil }
expect(find('#new_issue')).to have_text(text)
end
end
2016-11-03 12:29:30 +05:30
end
2022-05-07 20:08:51 +05:30
describe 'new issue with query parameters' do
before do
project.repository.create_file(
current_user,
'.gitlab/issue_templates/test_template.md',
'description from template',
message: 'Add test_template.md',
branch_name: project.default_branch_or_main
)
end
after do
project.repository.delete_file(
current_user,
'.gitlab/issue_templates/test_template.md',
message: 'Remove test_template.md',
branch_name: project.default_branch_or_main
)
end
it 'leaves the description blank if no query parameters are specified' do
visit new_project_issue_path(project)
expect(find('#issue_description').value).to be_empty
end
it 'fills the description from the issue[description] query parameter' do
visit new_project_issue_path(project, issue: { description: 'description from query parameter' })
expect(find('#issue_description').value).to match('description from query parameter')
end
it 'fills the description from the issuable_template query parameter' do
visit new_project_issue_path(project, issuable_template: 'test_template')
wait_for_requests
expect(find('#issue_description').value).to match('description from template')
end
it 'fills the description from the issuable_template and issue[description] query parameters' do
visit new_project_issue_path(project, issuable_template: 'test_template', issue: { description: 'description from query parameter' })
wait_for_requests
expect(find('#issue_description').value).to match('description from template\ndescription from query parameter')
end
end
describe 'new issue from related issue' do
it 'does not offer to link the new issue to any other issues if the URL parameter is absent' do
visit new_project_issue_path(project)
expect(page).not_to have_selector '#add_related_issue'
expect(page).not_to have_text "Relate to"
end
context 'guest' do
let(:current_user) { guest }
it 'does not offer to link the new issue to an issue that the user does not have access to' do
visit new_project_issue_path(project, { add_related_issue: confidential_issue.iid })
expect(page).not_to have_selector '#add_related_issue'
expect(page).not_to have_text "Relate to"
end
end
it 'links the new issue and the issue of origin' do
visit new_project_issue_path(project, { add_related_issue: issue.iid })
expect(page).to have_selector '#add_related_issue'
expect(page).to have_text "Relate to issue \##{issue.iid}"
expect(page).to have_text 'Adds this issue as related to the issue it was created from'
fill_in 'issue_title', with: 'title'
click_button 'Create issue'
page.within '#related-issues' do
expect(page).to have_text "\##{issue.iid}"
end
end
it 'links the new incident and the incident of origin' do
incident = create(:incident, project: project)
visit new_project_issue_path(project, { add_related_issue: incident.iid })
expect(page).to have_selector '#add_related_issue'
expect(page).to have_text "Relate to incident \##{incident.iid}"
expect(page).to have_text 'Adds this incident as related to the incident it was created from'
fill_in 'issue_title', with: 'title'
click_button 'Create issue'
page.within '#related-issues' do
expect(page).to have_text "\##{incident.iid}"
end
end
it 'does not link the new issue to any other issues if the checkbox is not checked' do
visit new_project_issue_path(project, { add_related_issue: issue.iid })
expect(page).to have_selector '#add_related_issue'
expect(page).to have_text "Relate to issue \##{issue.iid}"
uncheck "Relate to issue \##{issue.iid}"
fill_in 'issue_title', with: 'title'
click_button 'Create issue'
page.within '#related-issues' do
expect(page).not_to have_text "\##{issue.iid}"
end
end
end
2021-12-11 22:18:48 +05:30
describe 'edit issue' do
2016-11-03 12:29:30 +05:30
before do
2017-09-10 17:25:29 +05:30
visit edit_project_issue_path(project, issue)
2016-11-03 12:29:30 +05:30
end
it 'allows user to update issue' do
2017-08-17 22:00:37 +05:30
expect(find('input[name="issue[assignee_ids][]"]', visible: false).value).to match(user.id.to_s)
2016-11-03 12:29:30 +05:30
expect(find('input[name="issue[milestone_id]"]', visible: false).value).to match(milestone.id.to_s)
2017-08-17 22:00:37 +05:30
expect(find('a', text: 'Assign to me', visible: false)).not_to be_visible
2016-11-03 12:29:30 +05:30
page.within '.js-user-search' do
expect(page).to have_content user.name
end
2023-01-13 00:05:48 +05:30
expect(page).to have_button milestone.title
2016-11-03 12:29:30 +05:30
click_button 'Labels'
page.within '.dropdown-menu-labels' do
click_link label.title
click_link label2.title
end
page.within '.js-label-select' do
expect(page).to have_content label.title
end
expect(page.all('input[name="issue[label_ids][]"]', visible: false)[1].value).to match(label.id.to_s)
expect(page.all('input[name="issue[label_ids][]"]', visible: false)[2].value).to match(label2.id.to_s)
click_button 'Save changes'
page.within '.issuable-sidebar' do
page.within '.assignee' do
expect(page).to have_content user.name
end
page.within '.milestone' do
expect(page).to have_content milestone.title
end
page.within '.labels' do
expect(page).to have_content label.title
expect(page).to have_content label2.title
end
end
end
2017-09-10 17:25:29 +05:30
it 'description has autocomplete' do
find('#issue_description').native.send_keys('')
fill_in 'issue_description', with: '@'
expect(page).to have_selector('.atwho-view')
end
end
2021-12-11 22:18:48 +05:30
describe 'inline edit' do
2018-03-17 18:26:18 +05:30
before do
visit project_issue_path(project, issue)
end
it 'opens inline edit form with shortcut' do
find('body').send_keys('e')
expect(page).to have_selector('.detail-page-description form')
end
end
2017-09-10 17:25:29 +05:30
describe 'sub-group project' do
let(:group) { create(:group) }
let(:nested_group_1) { create(:group, parent: group) }
let(:sub_group_project) { create(:project, group: nested_group_1) }
before do
2018-11-18 11:00:15 +05:30
sub_group_project.add_maintainer(user)
2017-09-10 17:25:29 +05:30
visit new_project_issue_path(sub_group_project)
end
2018-05-09 12:01:36 +05:30
it 'creates project label from dropdown' do
2017-09-10 17:25:29 +05:30
click_button 'Labels'
2018-05-09 12:01:36 +05:30
click_link 'Create project label'
2017-09-10 17:25:29 +05:30
page.within '.dropdown-new-label' do
fill_in 'new_label_name', with: 'test label'
first('.suggest-colors-dropdown a').click
click_button 'Create'
wait_for_requests
end
page.within '.dropdown-menu-labels' do
expect(page).to have_link 'test label'
end
end
2016-11-03 12:29:30 +05:30
end
2017-08-17 22:00:37 +05:30
def before_for_selector(selector)
js = <<-JS.strip_heredoc
(function(selector) {
var el = document.querySelector(selector);
return window.getComputedStyle(el, '::before').getPropertyValue('content');
})("#{escape_javascript(selector)}")
JS
page.evaluate_script(js)
end
2016-11-03 12:29:30 +05:30
end