2019-07-31 22:56:46 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Issues::UpdateService, :mailer do
|
2020-06-23 00:09:42 +05:30
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let_it_be(:user2) { create(:user) }
|
|
|
|
let_it_be(:user3) { create(:user) }
|
2021-10-29 20:43:33 +05:30
|
|
|
let_it_be(:guest) { create(:user) }
|
2022-03-02 08:16:31 +05:30
|
|
|
let_it_be(:group) { create(:group, :public, :crm_enabled) }
|
2020-06-23 00:09:42 +05:30
|
|
|
let_it_be(:project, reload: true) { create(:project, :repository, group: group) }
|
2022-06-21 17:19:12 +05:30
|
|
|
let_it_be(:label) { create(:label, title: 'a', project: project) }
|
|
|
|
let_it_be(:label2) { create(:label, title: 'b', project: project) }
|
2020-10-04 03:57:07 +05:30
|
|
|
let_it_be(:milestone) { create(:milestone, project: project) }
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
let(:issue) do
|
|
|
|
create(:issue, title: 'Old title',
|
2017-08-17 22:00:37 +05:30
|
|
|
description: "for #{user2.to_reference}",
|
|
|
|
assignee_ids: [user3.id],
|
2018-03-17 18:26:18 +05:30
|
|
|
project: project,
|
|
|
|
author: create(:user))
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
before_all do
|
2022-03-02 08:16:31 +05:30
|
|
|
group.add_maintainer(user)
|
|
|
|
group.add_developer(user2)
|
|
|
|
group.add_developer(user3)
|
|
|
|
group.add_guest(guest)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
describe 'execute' do
|
2022-01-26 12:08:38 +05:30
|
|
|
let_it_be(:contact) { create(:contact, group: group) }
|
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
def find_note(starting_with)
|
2016-09-29 09:46:39 +05:30
|
|
|
issue.notes.find do |note|
|
2015-12-23 02:04:40 +05:30
|
|
|
note && note.note.start_with?(starting_with)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
def find_notes(action)
|
|
|
|
issue
|
|
|
|
.notes
|
|
|
|
.joins(:system_note_metadata)
|
|
|
|
.where(system_note_metadata: { action: action })
|
|
|
|
end
|
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
def update_issue(opts)
|
2021-06-08 01:23:25 +05:30
|
|
|
described_class.new(project: project, current_user: user, params: opts).execute(issue)
|
2016-09-29 09:46:39 +05:30
|
|
|
end
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
it_behaves_like 'issuable update service updating last_edited_at values' do
|
|
|
|
let(:issuable) { issue }
|
|
|
|
subject(:update_issuable) { update_issue(update_params) }
|
|
|
|
end
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
context 'valid params' do
|
|
|
|
let(:opts) do
|
|
|
|
{
|
2014-09-02 18:07:02 +05:30
|
|
|
title: 'New title',
|
|
|
|
description: 'Also please fix',
|
2017-08-17 22:00:37 +05:30
|
|
|
assignee_ids: [user2.id],
|
2015-04-26 12:48:37 +05:30
|
|
|
state_event: 'close',
|
2016-11-03 12:29:30 +05:30
|
|
|
label_ids: [label.id],
|
2018-03-17 18:26:18 +05:30
|
|
|
due_date: Date.tomorrow,
|
2020-10-04 03:57:07 +05:30
|
|
|
discussion_locked: true,
|
2020-11-24 15:15:51 +05:30
|
|
|
severity: 'low',
|
2022-01-26 12:08:38 +05:30
|
|
|
milestone_id: milestone.id,
|
|
|
|
add_contacts: [contact.email]
|
2014-09-02 18:07:02 +05:30
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2022-10-02 17:18:49 +05:30
|
|
|
context 'when an unauthorized project_id is provided' do
|
|
|
|
let(:unauthorized_project) { create(:project) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
opts[:project_id] = unauthorized_project.id
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'ignores the project_id param and does not update the issue\'s project' do
|
|
|
|
expect do
|
|
|
|
update_issue(opts)
|
|
|
|
unauthorized_project.reload
|
|
|
|
end.to not_change { unauthorized_project.issues.count }
|
|
|
|
|
|
|
|
expect(issue.project).to eq(project)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
it 'updates the issue with the given params' do
|
2018-11-18 11:00:15 +05:30
|
|
|
expect(TodosDestroyer::ConfidentialIssueWorker).not_to receive(:perform_in)
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
update_issue(opts)
|
|
|
|
|
|
|
|
expect(issue).to be_valid
|
|
|
|
expect(issue.title).to eq 'New title'
|
|
|
|
expect(issue.description).to eq 'Also please fix'
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(issue.assignees).to match_array([user2])
|
2016-11-03 12:29:30 +05:30
|
|
|
expect(issue).to be_closed
|
|
|
|
expect(issue.labels).to match_array [label]
|
|
|
|
expect(issue.due_date).to eq Date.tomorrow
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(issue.discussion_locked).to be_truthy
|
2020-10-04 03:57:07 +05:30
|
|
|
expect(issue.confidential).to be_falsey
|
|
|
|
expect(issue.milestone).to eq milestone
|
2022-01-26 12:08:38 +05:30
|
|
|
expect(issue.issue_customer_relations_contacts.last.contact).to eq contact
|
2020-10-04 03:57:07 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates issue milestone when passing `milestone` param' do
|
|
|
|
update_issue(milestone: milestone)
|
|
|
|
|
|
|
|
expect(issue.milestone).to eq milestone
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
2021-08-04 16:29:09 +05:30
|
|
|
context 'when sentry identifier is given' do
|
|
|
|
before do
|
|
|
|
sentry_attributes = { sentry_issue_attributes: { sentry_issue_identifier: 42 } }
|
|
|
|
opts.merge!(sentry_attributes)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'assigns the sentry error' do
|
|
|
|
update_issue(opts)
|
|
|
|
|
|
|
|
expect(issue.sentry_issue).to be_kind_of(SentryIssue)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'user is a guest' do
|
2021-10-29 20:43:33 +05:30
|
|
|
let(:user) { guest }
|
2021-08-04 16:29:09 +05:30
|
|
|
|
|
|
|
it 'does not assign the sentry error' do
|
|
|
|
update_issue(opts)
|
|
|
|
|
|
|
|
expect(issue.sentry_issue).to eq(nil)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
context 'when issue type is not incident' do
|
2021-09-30 23:02:18 +05:30
|
|
|
before do
|
2020-11-24 15:15:51 +05:30
|
|
|
update_issue(opts)
|
|
|
|
end
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
it_behaves_like 'not an incident issue'
|
|
|
|
|
|
|
|
context 'when confidentiality is changed' do
|
|
|
|
subject { update_issue(confidential: true) }
|
|
|
|
|
|
|
|
it_behaves_like 'does not track incident management event'
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when issue type is incident' do
|
|
|
|
let(:issue) { create(:incident, project: project) }
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
before do
|
2020-11-24 15:15:51 +05:30
|
|
|
update_issue(opts)
|
|
|
|
end
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
it_behaves_like 'incident issue'
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
it 'does not add an incident label' do
|
|
|
|
expect(issue.labels).to match_array [label]
|
2021-02-22 17:27:13 +05:30
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
context 'when confidentiality is changed' do
|
|
|
|
let(:current_user) { user }
|
|
|
|
|
|
|
|
subject { update_issue(confidential: true) }
|
|
|
|
|
|
|
|
it_behaves_like 'an incident management tracked event', :incident_management_incident_change_confidential
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
it 'refreshes the number of open issues when the issue is made confidential', :use_clean_rails_memory_store_caching do
|
|
|
|
issue # make sure the issue is created first so our counts are correct.
|
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
expect do
|
|
|
|
update_issue(confidential: true)
|
|
|
|
|
|
|
|
BatchLoader::Executor.clear_current
|
|
|
|
end.to change { project.open_issues_count }.from(1).to(0)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
it 'enqueues ConfidentialIssueWorker when an issue is made confidential' do
|
2019-01-03 12:48:30 +05:30
|
|
|
expect(TodosDestroyer::ConfidentialIssueWorker).to receive(:perform_in).with(Todo::WAIT_FOR_DELETE, issue.id)
|
2018-11-18 11:00:15 +05:30
|
|
|
|
|
|
|
update_issue(confidential: true)
|
2020-10-04 03:57:07 +05:30
|
|
|
|
|
|
|
expect(issue.confidential).to be_truthy
|
2018-11-18 11:00:15 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not enqueue ConfidentialIssueWorker when an issue is made non confidential' do
|
|
|
|
# set confidentiality to true before the actual update
|
|
|
|
issue.update!(confidential: true)
|
|
|
|
|
|
|
|
expect(TodosDestroyer::ConfidentialIssueWorker).not_to receive(:perform_in)
|
|
|
|
|
|
|
|
update_issue(confidential: false)
|
2020-10-04 03:57:07 +05:30
|
|
|
|
|
|
|
expect(issue.confidential).to be_falsey
|
2018-11-18 11:00:15 +05:30
|
|
|
end
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
context 'changing issue_type' do
|
|
|
|
let!(:label_1) { create(:label, project: project, title: 'incident') }
|
|
|
|
let!(:label_2) { create(:label, project: project, title: 'missed-sla') }
|
|
|
|
|
|
|
|
before do
|
|
|
|
stub_licensed_features(quality_management: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'from issue to incident' do
|
2021-09-30 23:02:18 +05:30
|
|
|
it_behaves_like 'incident issue' do
|
|
|
|
before do
|
|
|
|
update_issue(**opts, issue_type: 'incident')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
it 'creates system note about issue type' do
|
|
|
|
update_issue(issue_type: 'incident')
|
|
|
|
|
|
|
|
note = find_note('changed issue type to incident')
|
|
|
|
|
|
|
|
expect(note).not_to eq(nil)
|
|
|
|
end
|
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
it 'creates an escalation status' do
|
|
|
|
expect { update_issue(issue_type: 'incident') }
|
|
|
|
.to change { issue.reload.incident_management_issuable_escalation_status }
|
|
|
|
.from(nil)
|
|
|
|
.to(a_kind_of(IncidentManagement::IssuableEscalationStatus))
|
|
|
|
end
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
context 'for an issue with multiple labels' do
|
|
|
|
let(:issue) { create(:incident, project: project, labels: [label_1]) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
update_issue(issue_type: 'incident')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not add an `incident` label if one already exist' do
|
|
|
|
expect(issue.labels).to eq([label_1])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'from incident to issue' do
|
|
|
|
let(:issue) { create(:incident, project: project) }
|
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
it 'changed from an incident to an issue type' do
|
|
|
|
expect { update_issue(issue_type: 'issue') }
|
|
|
|
.to change(issue, :issue_type).from('incident').to('issue')
|
|
|
|
.and(change { issue.work_item_type.base_type }.from('incident').to('issue'))
|
|
|
|
end
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
context 'for an incident with multiple labels' do
|
|
|
|
let(:issue) { create(:incident, project: project, labels: [label_1, label_2]) }
|
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
it 'does not remove an `incident` label if one exists on the incident' do
|
|
|
|
expect { update_issue(issue_type: 'issue') }.to not_change(issue, :label_ids)
|
2021-09-04 01:27:46 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'filtering the incident label' do
|
|
|
|
let(:issue) { create(:incident, project: project, labels: [label_1, label_2]) }
|
|
|
|
let(:params) { { label_ids: [label_1.id, label_2.id], remove_label_ids: [] } }
|
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
it 'does not add an incident label id to remove_label_ids for it to be removed' do
|
|
|
|
expect { update_issue(issue_type: 'issue') }.to not_change(issue, :label_ids)
|
2021-09-04 01:27:46 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'from issue to restricted issue types' do
|
|
|
|
context 'without sufficient permissions' do
|
2021-10-29 20:43:33 +05:30
|
|
|
let(:user) { guest }
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
it 'does nothing to the labels' do
|
|
|
|
expect { update_issue(issue_type: 'issue') }.not_to change(issue.labels, :count)
|
|
|
|
expect(issue.reload.labels).to eq([])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
it 'updates open issue counter for assignees when issue is reassigned' do
|
|
|
|
update_issue(assignee_ids: [user2.id])
|
|
|
|
|
|
|
|
expect(user3.assigned_open_issues_count).to eq 0
|
|
|
|
expect(user2.assigned_open_issues_count).to eq 1
|
|
|
|
end
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
context 'when changing relative position' do
|
|
|
|
let(:issue1) { create(:issue, project: project, assignees: [user3]) }
|
|
|
|
let(:issue2) { create(:issue, project: project, assignees: [user3]) }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
before do
|
|
|
|
[issue, issue1, issue2].each do |issue|
|
|
|
|
issue.move_to_end
|
|
|
|
issue.save!
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
it 'sorts issues as specified by parameters' do
|
|
|
|
opts[:move_between_ids] = [issue1.id, issue2.id]
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
update_issue(opts)
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
expect(issue.relative_position).to be_between(issue1.relative_position, issue2.relative_position)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when block_issue_positioning flag is enabled' do
|
|
|
|
before do
|
|
|
|
stub_feature_flags(block_issue_repositioning: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises error' do
|
|
|
|
old_position = issue.relative_position
|
|
|
|
opts[:move_between_ids] = [issue1.id, issue2.id]
|
|
|
|
|
|
|
|
expect { update_issue(opts) }.to raise_error(::Gitlab::RelativePositioning::IssuePositioningDisabled)
|
|
|
|
expect(issue.reload.relative_position).to eq(old_position)
|
|
|
|
end
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
it 'rebalances if needed on the left' do
|
|
|
|
range = described_class::NO_REBALANCING_NEEDED
|
|
|
|
issue1 = create(:issue, project: project, relative_position: range.first - 100)
|
|
|
|
issue2 = create(:issue, project: project, relative_position: range.first)
|
|
|
|
issue.update!(relative_position: RelativePositioning::START_POSITION)
|
|
|
|
|
|
|
|
opts[:move_between_ids] = [issue1.id, issue2.id]
|
|
|
|
|
2022-01-26 12:08:38 +05:30
|
|
|
expect(Issues::RebalancingWorker).to receive(:perform_async).with(nil, nil, project.root_namespace.id)
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
update_issue(opts)
|
|
|
|
expect(issue.relative_position).to be_between(issue1.relative_position, issue2.relative_position)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'rebalances if needed on the right' do
|
|
|
|
range = described_class::NO_REBALANCING_NEEDED
|
|
|
|
issue1 = create(:issue, project: project, relative_position: range.last)
|
|
|
|
issue2 = create(:issue, project: project, relative_position: range.last + 100)
|
|
|
|
issue.update!(relative_position: RelativePositioning::START_POSITION)
|
|
|
|
|
|
|
|
opts[:move_between_ids] = [issue1.id, issue2.id]
|
|
|
|
|
2022-01-26 12:08:38 +05:30
|
|
|
expect(Issues::RebalancingWorker).to receive(:perform_async).with(nil, nil, project.root_namespace.id)
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
update_issue(opts)
|
|
|
|
expect(issue.relative_position).to be_between(issue1.relative_position, issue2.relative_position)
|
|
|
|
end
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
context 'when moving issue between issues from different projects' do
|
2018-05-01 15:08:00 +05:30
|
|
|
let(:group) { create(:group) }
|
2018-05-09 12:01:36 +05:30
|
|
|
let(:subgroup) { create(:group, parent: group) }
|
|
|
|
|
2018-05-01 15:08:00 +05:30
|
|
|
let(:project_1) { create(:project, namespace: group) }
|
|
|
|
let(:project_2) { create(:project, namespace: group) }
|
2018-05-09 12:01:36 +05:30
|
|
|
let(:project_3) { create(:project, namespace: subgroup) }
|
2018-05-01 15:08:00 +05:30
|
|
|
|
|
|
|
let(:issue_1) { create(:issue, project: project_1) }
|
|
|
|
let(:issue_2) { create(:issue, project: project_2) }
|
|
|
|
let(:issue_3) { create(:issue, project: project_3) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
group.add_developer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sorts issues as specified by parameters' do
|
|
|
|
# Moving all issues to end here like the last example won't work since
|
|
|
|
# all projects only have the same issue count
|
|
|
|
# so their relative_position will be the same.
|
|
|
|
issue_1.move_to_end
|
|
|
|
issue_2.move_after(issue_1)
|
|
|
|
issue_3.move_after(issue_2)
|
|
|
|
[issue_1, issue_2, issue_3].map(&:save)
|
|
|
|
|
|
|
|
opts[:move_between_ids] = [issue_1.id, issue_2.id]
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
described_class.new(project: issue_3.project, current_user: user, params: opts).execute(issue_3)
|
2018-05-01 15:08:00 +05:30
|
|
|
expect(issue_2.relative_position).to be_between(issue_1.relative_position, issue_2.relative_position)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
context 'when current user cannot admin issues in the project' do
|
|
|
|
it 'filters out params that cannot be set without the :admin_issue permission' do
|
2021-06-08 01:23:25 +05:30
|
|
|
described_class.new(
|
|
|
|
project: project, current_user: guest, params: opts.merge(
|
|
|
|
confidential: true,
|
|
|
|
issue_type: 'test_case'
|
|
|
|
)
|
|
|
|
).execute(issue)
|
2016-11-03 12:29:30 +05:30
|
|
|
|
|
|
|
expect(issue).to be_valid
|
|
|
|
expect(issue.title).to eq 'New title'
|
|
|
|
expect(issue.description).to eq 'Also please fix'
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(issue.assignees).to match_array [user3]
|
2016-11-03 12:29:30 +05:30
|
|
|
expect(issue.labels).to be_empty
|
|
|
|
expect(issue.milestone).to be_nil
|
|
|
|
expect(issue.due_date).to be_nil
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(issue.discussion_locked).to be_falsey
|
2020-10-04 03:57:07 +05:30
|
|
|
expect(issue.confidential).to be_falsey
|
2021-06-08 01:23:25 +05:30
|
|
|
expect(issue.issue_type).to eql('issue')
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
context 'with background jobs processed', :sidekiq_might_not_need_inline do
|
2016-11-03 12:29:30 +05:30
|
|
|
before do
|
|
|
|
perform_enqueued_jobs do
|
|
|
|
update_issue(opts)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sends email to user2 about assign of new issue and email to user3 about issue unassignment' do
|
|
|
|
deliveries = ActionMailer::Base.deliveries
|
|
|
|
email = deliveries.last
|
2019-10-12 21:52:04 +05:30
|
|
|
recipients = deliveries.last(2).flat_map(&:to)
|
2016-11-03 12:29:30 +05:30
|
|
|
expect(recipients).to include(user2.email, user3.email)
|
|
|
|
expect(email.subject).to include(issue.title)
|
|
|
|
end
|
2015-09-11 14:41:01 +05:30
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
it 'creates system note about issue reassign' do
|
2017-08-17 22:00:37 +05:30
|
|
|
note = find_note('assigned to')
|
2015-09-11 14:41:01 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(note.note).to include "assigned to #{user2.to_reference}"
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
it 'creates a resource label event' do
|
|
|
|
event = issue.resource_label_events.last
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
expect(event).not_to be_nil
|
|
|
|
expect(event.label_id).to eq label.id
|
|
|
|
expect(event.user_id).to eq user.id
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates system note about title change' do
|
2017-08-17 22:00:37 +05:30
|
|
|
note = find_note('changed title')
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(note.note).to eq 'changed title from **{-Old-} title** to **{+New+} title**'
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
it 'creates system note about discussion lock' do
|
|
|
|
note = find_note('locked this issue')
|
|
|
|
|
|
|
|
expect(note.note).to eq 'locked this issue'
|
|
|
|
end
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
|
|
|
|
context 'after_save callback to store_mentions' do
|
|
|
|
let(:issue) { create(:issue, title: 'Old title', description: "simple description", project: project, author: create(:user)) }
|
|
|
|
let(:labels) { create_pair(:label, project: project) }
|
|
|
|
let(:milestone) { create(:milestone, project: project) }
|
|
|
|
|
|
|
|
context 'when mentionable attributes change' do
|
|
|
|
let(:opts) { { description: "Description with #{user.to_reference}" } }
|
|
|
|
|
|
|
|
it 'saves mentions' do
|
|
|
|
expect(issue).to receive(:store_mentions!).and_call_original
|
|
|
|
|
|
|
|
expect { update_issue(opts) }.to change { IssueUserMention.count }.by(1)
|
|
|
|
|
|
|
|
expect(issue.referenced_users).to match_array([user])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when mentionable attributes do not change' do
|
|
|
|
let(:opts) { { label_ids: labels.map(&:id), milestone_id: milestone.id } }
|
|
|
|
|
|
|
|
it 'does not call store_mentions' do
|
|
|
|
expect(issue).not_to receive(:store_mentions!).and_call_original
|
|
|
|
|
|
|
|
expect { update_issue(opts) }.not_to change { IssueUserMention.count }
|
|
|
|
|
|
|
|
expect(issue.referenced_users).to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when save fails' do
|
|
|
|
let(:opts) { { title: '', label_ids: labels.map(&:id), milestone_id: milestone.id } }
|
|
|
|
|
|
|
|
it 'does not call store_mentions' do
|
|
|
|
expect(issue).not_to receive(:store_mentions!).and_call_original
|
|
|
|
|
|
|
|
expect { update_issue(opts) }.not_to change { IssueUserMention.count }
|
|
|
|
|
|
|
|
expect(issue.referenced_users).to be_empty
|
|
|
|
expect(issue.valid?).to be false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-09-30 23:02:18 +05:30
|
|
|
|
|
|
|
it 'verifies the number of queries' do
|
|
|
|
update_issue(description: "- [ ] Task 1 #{user.to_reference}")
|
|
|
|
|
|
|
|
baseline = ActiveRecord::QueryRecorder.new do
|
|
|
|
update_issue(description: "- [x] Task 1 #{user.to_reference}")
|
|
|
|
end
|
|
|
|
|
|
|
|
recorded = ActiveRecord::QueryRecorder.new do
|
|
|
|
update_issue(description: "- [x] Task 1 #{user.to_reference}\n- [ ] Task 2 #{user.to_reference}")
|
|
|
|
end
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
expect(recorded.count).to eq(baseline.count)
|
2021-09-30 23:02:18 +05:30
|
|
|
expect(recorded.cached_count).to eq(0)
|
|
|
|
end
|
2016-09-29 09:46:39 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
context 'when description changed' do
|
|
|
|
it 'creates system note about description change' do
|
|
|
|
update_issue(description: 'Changed description')
|
|
|
|
|
|
|
|
note = find_note('changed the description')
|
|
|
|
|
|
|
|
expect(note.note).to eq('changed the description')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
context 'when issue turns confidential' do
|
|
|
|
let(:opts) do
|
|
|
|
{
|
|
|
|
title: 'New title',
|
|
|
|
description: 'Also please fix',
|
2017-08-17 22:00:37 +05:30
|
|
|
assignee_ids: [user2],
|
2016-09-29 09:46:39 +05:30
|
|
|
state_event: 'close',
|
|
|
|
label_ids: [label.id],
|
|
|
|
confidential: true
|
|
|
|
}
|
|
|
|
end
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
it 'creates system note about confidentiality change' do
|
2016-09-29 09:46:39 +05:30
|
|
|
update_issue(confidential: true)
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
note = find_note('made the issue confidential')
|
2015-09-11 14:41:01 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(note.note).to eq 'made the issue confidential'
|
2015-09-11 14:41:01 +05:30
|
|
|
end
|
2015-12-23 02:04:40 +05:30
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
it 'executes confidential issue hooks' do
|
|
|
|
expect(project).to receive(:execute_hooks).with(an_instance_of(Hash), :confidential_issue_hooks)
|
2021-09-30 23:02:18 +05:30
|
|
|
expect(project).to receive(:execute_integrations).with(an_instance_of(Hash), :confidential_issue_hooks)
|
2016-09-29 09:46:39 +05:30
|
|
|
|
|
|
|
update_issue(confidential: true)
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
it 'does not update assignee_id with unauthorized users' do
|
2020-11-24 15:15:51 +05:30
|
|
|
project.update!(visibility_level: Gitlab::VisibilityLevel::PUBLIC)
|
2017-08-17 22:00:37 +05:30
|
|
|
update_issue(confidential: true)
|
|
|
|
non_member = create(:user)
|
|
|
|
original_assignees = issue.assignees
|
|
|
|
|
|
|
|
update_issue(assignee_ids: [non_member.id])
|
|
|
|
|
|
|
|
expect(issue.reload.assignees).to eq(original_assignees)
|
|
|
|
end
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
context 'todos' do
|
|
|
|
let!(:todo) { create(:todo, :assigned, user: user, project: project, target: issue, author: user2) }
|
|
|
|
|
|
|
|
context 'when the title change' do
|
|
|
|
before do
|
2016-09-29 09:46:39 +05:30
|
|
|
update_issue(title: 'New title')
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks pending todos as done' do
|
|
|
|
expect(todo.reload.done?).to eq true
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
it 'does not create any new todos' do
|
|
|
|
expect(Todo.count).to eq(1)
|
|
|
|
end
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the description change' do
|
|
|
|
before do
|
2017-08-17 22:00:37 +05:30
|
|
|
update_issue(description: "Also please fix #{user2.to_reference} #{user3.to_reference}")
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks todos as done' do
|
|
|
|
expect(todo.reload.done?).to eq true
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
it 'creates only 1 new todo' do
|
|
|
|
expect(Todo.count).to eq(2)
|
|
|
|
end
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'when is reassigned' do
|
|
|
|
before do
|
2017-08-17 22:00:37 +05:30
|
|
|
update_issue(assignees: [user2])
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks previous assignee todos as done' do
|
|
|
|
expect(todo.reload.done?).to eq true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a todo for new assignee' do
|
|
|
|
attributes = {
|
|
|
|
project: project,
|
|
|
|
author: user,
|
|
|
|
user: user2,
|
|
|
|
target_id: issue.id,
|
|
|
|
target_type: issue.class.name,
|
|
|
|
action: Todo::ASSIGNED,
|
|
|
|
state: :pending
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(Todo.where(attributes).count).to eq 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
context 'when a new assignee added' do
|
|
|
|
subject { update_issue(assignees: issue.assignees + [user2]) }
|
|
|
|
|
|
|
|
it 'creates only 1 new todo' do
|
|
|
|
expect { subject }.to change { Todo.count }.by(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a todo for new assignee' do
|
|
|
|
subject
|
|
|
|
|
|
|
|
attributes = {
|
|
|
|
project: project,
|
|
|
|
author: user,
|
|
|
|
user: user2,
|
|
|
|
target_id: issue.id,
|
|
|
|
target_type: issue.class.name,
|
|
|
|
action: Todo::ASSIGNED,
|
|
|
|
state: :pending
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(Todo.where(attributes).count).to eq(1)
|
|
|
|
end
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
context 'issue is incident type' do
|
|
|
|
let(:issue) { create(:incident, project: project) }
|
|
|
|
let(:current_user) { user }
|
|
|
|
|
|
|
|
it_behaves_like 'an incident management tracked event', :incident_management_incident_assigned
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
2020-04-08 14:13:33 +05:30
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
context 'when the milestone is removed' do
|
2018-12-13 13:39:08 +05:30
|
|
|
let!(:non_subscriber) { create(:user) }
|
|
|
|
|
|
|
|
let!(:subscriber) do
|
|
|
|
create(:user) do |u|
|
|
|
|
issue.toggle_subscription(u, project)
|
|
|
|
project.add_developer(u)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
it 'sends notifications for subscribers of changed milestone', :sidekiq_might_not_need_inline do
|
2019-03-13 22:55:13 +05:30
|
|
|
issue.milestone = create(:milestone, project: project)
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
issue.save!
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
|
|
perform_enqueued_jobs do
|
|
|
|
update_issue(milestone_id: "")
|
|
|
|
end
|
|
|
|
|
|
|
|
should_email(subscriber)
|
|
|
|
should_not_email(non_subscriber)
|
|
|
|
end
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
it 'clears milestone issue counters cache' do
|
|
|
|
issue.milestone = create(:milestone, project: project)
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
issue.save!
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
expect_next_instance_of(Milestones::IssuesCountService, issue.milestone) do |service|
|
|
|
|
expect(service).to receive(:delete_cache).and_call_original
|
|
|
|
end
|
|
|
|
expect_next_instance_of(Milestones::ClosedIssuesCountService, issue.milestone) do |service|
|
|
|
|
expect(service).to receive(:delete_cache).and_call_original
|
|
|
|
end
|
|
|
|
|
|
|
|
update_issue(milestone_id: "")
|
|
|
|
end
|
2018-12-13 13:39:08 +05:30
|
|
|
end
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
context 'when the milestone is assigned' do
|
2018-12-13 13:39:08 +05:30
|
|
|
let!(:non_subscriber) { create(:user) }
|
|
|
|
|
|
|
|
let!(:subscriber) do
|
|
|
|
create(:user) do |u|
|
|
|
|
issue.toggle_subscription(u, project)
|
|
|
|
project.add_developer(u)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'marks todos as done' do
|
2019-03-13 22:55:13 +05:30
|
|
|
update_issue(milestone: create(:milestone, project: project))
|
2016-04-02 18:10:28 +05:30
|
|
|
|
|
|
|
expect(todo.reload.done?).to eq true
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
it 'sends notifications for subscribers of changed milestone', :sidekiq_might_not_need_inline do
|
2018-12-13 13:39:08 +05:30
|
|
|
perform_enqueued_jobs do
|
2019-03-13 22:55:13 +05:30
|
|
|
update_issue(milestone: create(:milestone, project: project))
|
2018-12-13 13:39:08 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
should_email(subscriber)
|
|
|
|
should_not_email(non_subscriber)
|
|
|
|
end
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
it 'deletes issue counters cache for the milestone' do
|
|
|
|
milestone = create(:milestone, project: project)
|
|
|
|
|
|
|
|
expect_next_instance_of(Milestones::IssuesCountService, milestone) do |service|
|
|
|
|
expect(service).to receive(:delete_cache).and_call_original
|
|
|
|
end
|
|
|
|
expect_next_instance_of(Milestones::ClosedIssuesCountService, milestone) do |service|
|
|
|
|
expect(service).to receive(:delete_cache).and_call_original
|
|
|
|
end
|
|
|
|
|
|
|
|
update_issue(milestone: milestone)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the milestone is changed' do
|
|
|
|
it 'deletes issue counters cache for both milestones' do
|
|
|
|
old_milestone = create(:milestone, project: project)
|
|
|
|
new_milestone = create(:milestone, project: project)
|
|
|
|
|
|
|
|
issue.update!(milestone: old_milestone)
|
|
|
|
|
|
|
|
expect_next_instance_of(Milestones::IssuesCountService, old_milestone) do |service|
|
|
|
|
expect(service).to receive(:delete_cache).and_call_original
|
|
|
|
end
|
|
|
|
expect_next_instance_of(Milestones::ClosedIssuesCountService, old_milestone) do |service|
|
|
|
|
expect(service).to receive(:delete_cache).and_call_original
|
|
|
|
end
|
|
|
|
expect_next_instance_of(Milestones::IssuesCountService, new_milestone) do |service|
|
|
|
|
expect(service).to receive(:delete_cache).and_call_original
|
|
|
|
end
|
|
|
|
expect_next_instance_of(Milestones::ClosedIssuesCountService, new_milestone) do |service|
|
|
|
|
expect(service).to receive(:delete_cache).and_call_original
|
|
|
|
end
|
|
|
|
|
|
|
|
update_issue(milestone: new_milestone)
|
|
|
|
end
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the labels change' do
|
|
|
|
before do
|
2021-01-03 14:25:43 +05:30
|
|
|
travel_to(1.minute.from_now) do
|
2018-11-08 19:23:39 +05:30
|
|
|
update_issue(label_ids: [label.id])
|
|
|
|
end
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks todos as done' do
|
|
|
|
expect(todo.reload.done?).to eq true
|
|
|
|
end
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
it 'updates updated_at' do
|
2020-05-24 23:13:21 +05:30
|
|
|
expect(issue.reload.updated_at).to be > Time.current
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
context 'when the issue is relabeled' do
|
|
|
|
let!(:non_subscriber) { create(:user) }
|
2016-09-29 09:46:39 +05:30
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
let!(:subscriber) do
|
2018-12-13 13:39:08 +05:30
|
|
|
create(:user) do |u|
|
2017-08-17 22:00:37 +05:30
|
|
|
label.toggle_subscription(u, project)
|
2018-03-17 18:26:18 +05:30
|
|
|
project.add_developer(u)
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
it 'sends notifications for subscribers of newly added labels', :sidekiq_might_not_need_inline do
|
2016-06-02 11:05:42 +05:30
|
|
|
opts = { label_ids: [label.id] }
|
|
|
|
|
|
|
|
perform_enqueued_jobs do
|
2021-06-08 01:23:25 +05:30
|
|
|
@issue = described_class.new(project: project, current_user: user, params: opts).execute(issue)
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
should_email(subscriber)
|
|
|
|
should_not_email(non_subscriber)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when issue has the `label` label' do
|
2017-09-10 17:25:29 +05:30
|
|
|
before do
|
|
|
|
issue.labels << label
|
|
|
|
end
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
it 'does not send notifications for existing labels' do
|
|
|
|
opts = { label_ids: [label.id, label2.id] }
|
|
|
|
|
|
|
|
perform_enqueued_jobs do
|
2021-06-08 01:23:25 +05:30
|
|
|
@issue = described_class.new(project: project, current_user: user, params: opts).execute(issue)
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
should_not_email(subscriber)
|
|
|
|
should_not_email(non_subscriber)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not send notifications for removed labels' do
|
|
|
|
opts = { label_ids: [label2.id] }
|
|
|
|
|
|
|
|
perform_enqueued_jobs do
|
2021-06-08 01:23:25 +05:30
|
|
|
@issue = described_class.new(project: project, current_user: user, params: opts).execute(issue)
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
should_not_email(subscriber)
|
|
|
|
should_not_email(non_subscriber)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
context 'when issue has tasks' do
|
|
|
|
before do
|
|
|
|
update_issue(description: "- [ ] Task 1\n- [ ] Task 2")
|
|
|
|
end
|
2015-12-23 02:04:40 +05:30
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
it { expect(issue.tasks?).to eq(true) }
|
2015-12-23 02:04:40 +05:30
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
it_behaves_like 'updating a single task'
|
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
context 'when tasks are marked as completed' do
|
2017-09-10 17:25:29 +05:30
|
|
|
before do
|
|
|
|
update_issue(description: "- [x] Task 1\n- [X] Task 2")
|
|
|
|
end
|
2015-12-23 02:04:40 +05:30
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
it 'does not check for spam on task status change' do
|
|
|
|
params = {
|
|
|
|
update_task: {
|
|
|
|
index: 1,
|
|
|
|
checked: false,
|
|
|
|
line_source: '- [x] Task 1',
|
|
|
|
line_number: 1
|
|
|
|
}
|
|
|
|
}
|
2021-06-08 01:23:25 +05:30
|
|
|
service = described_class.new(project: project, current_user: user, params: params)
|
2019-09-30 21:07:59 +05:30
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
expect(Spam::SpamActionService).not_to receive(:new)
|
2019-09-30 21:07:59 +05:30
|
|
|
|
|
|
|
service.execute(issue)
|
|
|
|
end
|
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
it 'creates system note about task status change' do
|
2022-08-27 11:52:29 +05:30
|
|
|
note1 = find_note('marked the checklist item **Task 1** as completed')
|
|
|
|
note2 = find_note('marked the checklist item **Task 2** as completed')
|
2015-12-23 02:04:40 +05:30
|
|
|
|
|
|
|
expect(note1).not_to be_nil
|
|
|
|
expect(note2).not_to be_nil
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
description_notes = find_notes('description')
|
|
|
|
expect(description_notes.length).to eq(1)
|
2015-12-23 02:04:40 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when tasks are marked as incomplete' do
|
|
|
|
before do
|
2016-09-29 09:46:39 +05:30
|
|
|
update_issue(description: "- [x] Task 1\n- [X] Task 2")
|
|
|
|
update_issue(description: "- [ ] Task 1\n- [ ] Task 2")
|
2015-12-23 02:04:40 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates system note about task status change' do
|
2022-08-27 11:52:29 +05:30
|
|
|
note1 = find_note('marked the checklist item **Task 1** as incomplete')
|
|
|
|
note2 = find_note('marked the checklist item **Task 2** as incomplete')
|
2015-12-23 02:04:40 +05:30
|
|
|
|
|
|
|
expect(note1).not_to be_nil
|
|
|
|
expect(note2).not_to be_nil
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
description_notes = find_notes('description')
|
|
|
|
expect(description_notes.length).to eq(1)
|
2015-12-23 02:04:40 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when tasks position has been modified' do
|
|
|
|
before do
|
2016-09-29 09:46:39 +05:30
|
|
|
update_issue(description: "- [x] Task 1\n- [X] Task 2")
|
|
|
|
update_issue(description: "- [x] Task 1\n- [ ] Task 3\n- [ ] Task 2")
|
2015-12-23 02:04:40 +05:30
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'does not create a system note for the task' do
|
2022-08-27 11:52:29 +05:30
|
|
|
task_note = find_note('marked the checklist item **Task 2** as incomplete')
|
2017-09-10 17:25:29 +05:30
|
|
|
description_notes = find_notes('description')
|
2015-12-23 02:04:40 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(task_note).to be_nil
|
|
|
|
expect(description_notes.length).to eq(2)
|
2015-12-23 02:04:40 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when a Task list with a completed item is totally replaced' do
|
|
|
|
before do
|
2016-09-29 09:46:39 +05:30
|
|
|
update_issue(description: "- [ ] Task 1\n- [X] Task 2")
|
|
|
|
update_issue(description: "- [ ] One\n- [ ] Two\n- [ ] Three")
|
2015-12-23 02:04:40 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a system note referencing the position the old item' do
|
2022-08-27 11:52:29 +05:30
|
|
|
task_note = find_note('marked the checklist item **Two** as incomplete')
|
2017-09-10 17:25:29 +05:30
|
|
|
description_notes = find_notes('description')
|
2015-12-23 02:04:40 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(task_note).to be_nil
|
|
|
|
expect(description_notes.length).to eq(2)
|
2015-12-23 02:04:40 +05:30
|
|
|
end
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
it 'does not generate a new note at all' do
|
2015-12-23 02:04:40 +05:30
|
|
|
expect do
|
2016-09-29 09:46:39 +05:30
|
|
|
update_issue(description: "- [ ] One\n- [ ] Two\n- [ ] Three")
|
2015-12-23 02:04:40 +05:30
|
|
|
end.not_to change { Note.count }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-06-16 23:09:34 +05:30
|
|
|
|
|
|
|
context 'updating labels' do
|
|
|
|
let(:label3) { create(:label, project: project) }
|
2021-06-08 01:23:25 +05:30
|
|
|
let(:result) { described_class.new(project: project, current_user: user, params: params).execute(issue).reload }
|
2016-06-16 23:09:34 +05:30
|
|
|
|
|
|
|
context 'when add_label_ids and label_ids are passed' do
|
|
|
|
let(:params) { { label_ids: [label.id], add_label_ids: [label3.id] } }
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
before do
|
2020-11-24 15:15:51 +05:30
|
|
|
issue.update!(labels: [label2])
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
it 'replaces the labels with the ones in label_ids and adds those in add_label_ids' do
|
|
|
|
expect(result.label_ids).to contain_exactly(label.id, label3.id)
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when remove_label_ids and label_ids are passed' do
|
2020-06-23 00:09:42 +05:30
|
|
|
let(:params) { { label_ids: [label.id, label2.id, label3.id], remove_label_ids: [label.id] } }
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
before do
|
2020-11-24 15:15:51 +05:30
|
|
|
issue.update!(labels: [label, label3])
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
it 'replaces the labels with the ones in label_ids and removes those in remove_label_ids' do
|
|
|
|
expect(result.label_ids).to contain_exactly(label2.id, label3.id)
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when add_label_ids and remove_label_ids are passed' do
|
|
|
|
let(:params) { { add_label_ids: [label3.id], remove_label_ids: [label.id] } }
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
before do
|
2020-11-24 15:15:51 +05:30
|
|
|
issue.update!(labels: [label])
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
2016-06-16 23:09:34 +05:30
|
|
|
|
|
|
|
it 'adds the passed labels' do
|
|
|
|
expect(result.label_ids).to include(label3.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes the passed labels' do
|
|
|
|
expect(result.label_ids).not_to include(label.id)
|
|
|
|
end
|
|
|
|
end
|
2019-07-07 11:18:12 +05:30
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
context 'when same id is passed as add_label_ids and remove_label_ids' do
|
|
|
|
let(:params) { { add_label_ids: [label.id], remove_label_ids: [label.id] } }
|
|
|
|
|
|
|
|
context 'for a label assigned to an issue' do
|
|
|
|
it 'removes the label' do
|
2020-11-24 15:15:51 +05:30
|
|
|
issue.update!(labels: [label])
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
expect(result.label_ids).to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for a label not assigned to an issue' do
|
|
|
|
it 'does not add the label' do
|
|
|
|
expect(result.label_ids).to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
context 'when duplicate label titles are given' do
|
|
|
|
let(:params) do
|
|
|
|
{ labels: [label3.title, label3.title] }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'assigns the label once' do
|
|
|
|
expect(result.labels).to contain_exactly(label3)
|
|
|
|
end
|
|
|
|
end
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
2016-09-13 17:45:13 +05:30
|
|
|
|
2022-08-27 11:52:29 +05:30
|
|
|
context 'updating dates' do
|
|
|
|
subject(:result) { described_class.new(project: project, current_user: user, params: params).execute(issue) }
|
|
|
|
|
|
|
|
let(:updated_date) { 1.week.from_now.to_date }
|
|
|
|
|
|
|
|
shared_examples 'issue update service that triggers date updates' do
|
|
|
|
it 'triggers graphql date updated subscription' do
|
|
|
|
expect(GraphqlTriggers).to receive(:issuable_dates_updated).with(issue).and_call_original
|
|
|
|
|
|
|
|
result
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples 'issue update service that does not trigger date updates' do
|
|
|
|
it 'does not trigger date updated subscriptions' do
|
|
|
|
expect(GraphqlTriggers).not_to receive(:issuable_dates_updated)
|
|
|
|
|
|
|
|
result
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when due_date is updated' do
|
|
|
|
let(:params) { { due_date: updated_date } }
|
|
|
|
|
|
|
|
it_behaves_like 'issue update service that triggers date updates'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when start_date is updated' do
|
|
|
|
let(:params) { { start_date: updated_date } }
|
|
|
|
|
|
|
|
it_behaves_like 'issue update service that triggers date updates'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when no date is updated' do
|
|
|
|
let(:params) { { title: 'should not trigger date updates' } }
|
|
|
|
|
|
|
|
it_behaves_like 'issue update service that does not trigger date updates'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when update is not successful but date is provided' do
|
|
|
|
let(:params) { { title: '', due_date: updated_date } }
|
|
|
|
|
|
|
|
it_behaves_like 'issue update service that does not trigger date updates'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
context 'updating asssignee_id' do
|
|
|
|
it 'does not update assignee when assignee_id is invalid' do
|
|
|
|
update_issue(assignee_ids: [-1])
|
|
|
|
|
|
|
|
expect(issue.reload.assignees).to eq([user3])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'unassigns assignee when user id is 0' do
|
|
|
|
update_issue(assignee_ids: [0])
|
|
|
|
|
|
|
|
expect(issue.reload.assignees).to be_empty
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not update assignee_id when user cannot read issue' do
|
|
|
|
update_issue(assignee_ids: [create(:user).id])
|
|
|
|
|
|
|
|
expect(issue.reload.assignees).to eq([user3])
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when issuable feature is private" do
|
|
|
|
levels = [Gitlab::VisibilityLevel::INTERNAL, Gitlab::VisibilityLevel::PUBLIC]
|
|
|
|
|
|
|
|
levels.each do |level|
|
|
|
|
it "does not update with unauthorized assignee when project is #{Gitlab::VisibilityLevel.level_name(level)}" do
|
|
|
|
assignee = create(:user)
|
2020-11-24 15:15:51 +05:30
|
|
|
project.update!(visibility_level: level)
|
2017-08-17 22:00:37 +05:30
|
|
|
feature_visibility_attr = :"#{issue.model_name.plural}_access_level"
|
|
|
|
project.project_feature.update_attribute(feature_visibility_attr, ProjectFeature::PRIVATE)
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect { update_issue(assignee_ids: [assignee.id]) }.not_to change { issue.assignees }
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
context 'updating mentions' do
|
|
|
|
let(:mentionable) { issue }
|
2019-12-21 20:55:43 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
include_examples 'updating mentions', described_class
|
|
|
|
end
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
context 'updating severity' do
|
|
|
|
let(:opts) { { severity: 'low' } }
|
|
|
|
|
|
|
|
shared_examples 'updates the severity' do |expected_severity|
|
|
|
|
it 'has correct value' do
|
|
|
|
update_issue(opts)
|
|
|
|
|
|
|
|
expect(issue.severity).to eq(expected_severity)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a system note' do
|
|
|
|
expect(::IncidentManagement::AddSeveritySystemNoteWorker).to receive(:perform_async).with(issue.id, user.id)
|
|
|
|
|
|
|
|
update_issue(opts)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'triggers webhooks' do
|
|
|
|
expect(project).to receive(:execute_hooks).with(an_instance_of(Hash), :issue_hooks)
|
|
|
|
expect(project).to receive(:execute_integrations).with(an_instance_of(Hash), :issue_hooks)
|
|
|
|
|
|
|
|
update_issue(opts)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples 'does not change the severity' do
|
|
|
|
it 'retains the original value' do
|
|
|
|
expected_severity = issue.severity
|
|
|
|
|
|
|
|
update_issue(opts)
|
|
|
|
|
|
|
|
expect(issue.severity).to eq(expected_severity)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not trigger side-effects' do
|
|
|
|
expect(::IncidentManagement::AddSeveritySystemNoteWorker).not_to receive(:perform_async)
|
|
|
|
expect(project).not_to receive(:execute_hooks)
|
|
|
|
expect(project).not_to receive(:execute_integrations)
|
|
|
|
|
|
|
|
expect { update_issue(opts) }.not_to change(IssuableSeverity, :count)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'on incidents' do
|
|
|
|
let(:issue) { create(:incident, project: project) }
|
|
|
|
|
|
|
|
context 'when severity has not been set previously' do
|
|
|
|
it_behaves_like 'updates the severity', 'low'
|
|
|
|
|
|
|
|
it 'creates a new record' do
|
|
|
|
expect { update_issue(opts) }.to change(IssuableSeverity, :count).by(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with unsupported severity value' do
|
|
|
|
let(:opts) { { severity: 'unsupported-severity' } }
|
|
|
|
|
|
|
|
it_behaves_like 'does not change the severity'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with severity value defined but unchanged' do
|
|
|
|
let(:opts) { { severity: IssuableSeverity::DEFAULT } }
|
|
|
|
|
|
|
|
it_behaves_like 'does not change the severity'
|
|
|
|
end
|
2021-10-29 20:43:33 +05:30
|
|
|
|
|
|
|
context 'as guest' do
|
|
|
|
let(:user) { guest }
|
|
|
|
|
|
|
|
it_behaves_like 'does not change the severity'
|
|
|
|
|
|
|
|
context 'and also author' do
|
|
|
|
let(:issue) { create(:incident, project: project, author: user) }
|
|
|
|
|
|
|
|
it_behaves_like 'does not change the severity'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'and also assignee' do
|
|
|
|
let(:issue) { create(:incident, project: project, assignee_ids: [user.id]) }
|
|
|
|
|
|
|
|
it_behaves_like 'does not change the severity'
|
|
|
|
end
|
|
|
|
end
|
2021-09-30 23:02:18 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'when severity has been set before' do
|
|
|
|
before do
|
|
|
|
create(:issuable_severity, issue: issue, severity: 'high')
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'updates the severity', 'low'
|
|
|
|
|
|
|
|
it 'does not create a new record' do
|
|
|
|
expect { update_issue(opts) }.not_to change(IssuableSeverity, :count)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with unsupported severity value' do
|
|
|
|
let(:opts) { { severity: 'unsupported-severity' } }
|
|
|
|
|
|
|
|
it_behaves_like 'updates the severity', IssuableSeverity::DEFAULT
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with severity value defined but unchanged' do
|
|
|
|
let(:opts) { { severity: issue.severity } }
|
|
|
|
|
|
|
|
it_behaves_like 'does not change the severity'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when issue type is not incident' do
|
|
|
|
it_behaves_like 'does not change the severity'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
context 'updating escalation status' do
|
|
|
|
let(:opts) { { escalation_status: { status: 'acknowledged' } } }
|
|
|
|
let(:escalation_update_class) { ::IncidentManagement::IssuableEscalationStatuses::AfterUpdateService }
|
|
|
|
|
2022-08-13 15:12:31 +05:30
|
|
|
shared_examples 'updates the escalation status record' do |expected_status|
|
2022-03-02 08:16:31 +05:30
|
|
|
let(:service_double) { instance_double(escalation_update_class) }
|
|
|
|
|
|
|
|
it 'has correct value' do
|
2022-08-13 15:12:31 +05:30
|
|
|
expect(escalation_update_class).to receive(:new).with(issue, user).and_return(service_double)
|
2022-03-02 08:16:31 +05:30
|
|
|
expect(service_double).to receive(:execute)
|
|
|
|
|
|
|
|
update_issue(opts)
|
|
|
|
|
|
|
|
expect(issue.escalation_status.status_name).to eq(expected_status)
|
|
|
|
end
|
2022-05-07 20:08:51 +05:30
|
|
|
|
|
|
|
it 'triggers webhooks' do
|
|
|
|
expect(project).to receive(:execute_hooks).with(an_instance_of(Hash), :issue_hooks)
|
|
|
|
expect(project).to receive(:execute_integrations).with(an_instance_of(Hash), :issue_hooks)
|
|
|
|
|
|
|
|
update_issue(opts)
|
|
|
|
end
|
2022-03-02 08:16:31 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples 'does not change the status record' do
|
|
|
|
it 'retains the original value' do
|
|
|
|
expected_status = issue.escalation_status&.status_name
|
|
|
|
|
|
|
|
update_issue(opts)
|
|
|
|
|
|
|
|
expect(issue.escalation_status&.status_name).to eq(expected_status)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not trigger side-effects' do
|
2022-05-07 20:08:51 +05:30
|
|
|
expect(project).not_to receive(:execute_hooks)
|
|
|
|
expect(project).not_to receive(:execute_integrations)
|
2022-03-02 08:16:31 +05:30
|
|
|
|
|
|
|
update_issue(opts)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when issue is an incident' do
|
|
|
|
let(:issue) { create(:incident, project: project) }
|
|
|
|
|
|
|
|
context 'with an escalation status record' do
|
|
|
|
before do
|
|
|
|
create(:incident_management_issuable_escalation_status, issue: issue)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'updates the escalation status record', :acknowledged
|
|
|
|
|
|
|
|
context 'with unsupported status value' do
|
|
|
|
let(:opts) { { escalation_status: { status: 'unsupported-status' } } }
|
|
|
|
|
|
|
|
it_behaves_like 'does not change the status record'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with status value defined but unchanged' do
|
|
|
|
let(:opts) { { escalation_status: { status: issue.escalation_status.status_name } } }
|
|
|
|
|
|
|
|
it_behaves_like 'does not change the status record'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without an escalation status record' do
|
2022-06-21 17:19:12 +05:30
|
|
|
it 'creates a new record' do
|
|
|
|
expect { update_issue(opts) }.to change(::IncidentManagement::IssuableEscalationStatus, :count).by(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'updates the escalation status record', :acknowledged
|
|
|
|
end
|
2022-03-02 08:16:31 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'when issue type is not incident' do
|
|
|
|
it_behaves_like 'does not change the status record'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
context 'duplicate issue' do
|
|
|
|
let(:canonical_issue) { create(:issue, project: project) }
|
|
|
|
|
|
|
|
context 'invalid canonical_issue_id' do
|
|
|
|
it 'does not call the duplicate service' do
|
|
|
|
expect(Issues::DuplicateService).not_to receive(:new)
|
|
|
|
|
|
|
|
update_issue(canonical_issue_id: 123456789)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'valid canonical_issue_id' do
|
|
|
|
it 'calls the duplicate service with both issues' do
|
2020-01-01 13:55:28 +05:30
|
|
|
expect_next_instance_of(Issues::DuplicateService) do |service|
|
|
|
|
expect(service).to receive(:execute).with(issue, canonical_issue)
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
update_issue(canonical_issue_id: canonical_issue.id)
|
|
|
|
end
|
|
|
|
end
|
2016-09-13 17:45:13 +05:30
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
context 'move issue to another project' do
|
|
|
|
let(:target_project) { create(:project) }
|
|
|
|
|
|
|
|
context 'valid project' do
|
|
|
|
before do
|
2018-11-18 11:00:15 +05:30
|
|
|
target_project.add_maintainer(user)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'calls the move service with the proper issue and project' do
|
|
|
|
move_stub = instance_double(Issues::MoveService)
|
|
|
|
allow(Issues::MoveService).to receive(:new).and_return(move_stub)
|
|
|
|
allow(move_stub).to receive(:execute).with(issue, target_project).and_return(issue)
|
|
|
|
|
|
|
|
expect(move_stub).to receive(:execute).with(issue, target_project)
|
|
|
|
|
|
|
|
update_issue(target_project: target_project)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
context 'clone an issue' do
|
|
|
|
context 'valid project' do
|
|
|
|
let(:target_project) { create(:project) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
target_project.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'calls the move service with the proper issue and project' do
|
|
|
|
clone_stub = instance_double(Issues::CloneService)
|
|
|
|
allow(Issues::CloneService).to receive(:new).and_return(clone_stub)
|
|
|
|
allow(clone_stub).to receive(:execute).with(issue, target_project, with_notes: nil).and_return(issue)
|
|
|
|
|
|
|
|
expect(clone_stub).to receive(:execute).with(issue, target_project, with_notes: nil)
|
|
|
|
|
|
|
|
update_issue(target_clone_project: target_project)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'clone an issue with notes' do
|
|
|
|
context 'valid project' do
|
|
|
|
let(:target_project) { create(:project) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
target_project.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'calls the move service with the proper issue and project' do
|
|
|
|
clone_stub = instance_double(Issues::CloneService)
|
|
|
|
allow(Issues::CloneService).to receive(:new).and_return(clone_stub)
|
|
|
|
allow(clone_stub).to receive(:execute).with(issue, target_project, with_notes: true).and_return(issue)
|
|
|
|
|
|
|
|
expect(clone_stub).to receive(:execute).with(issue, target_project, with_notes: true)
|
|
|
|
|
|
|
|
update_issue(target_clone_project: target_project, clone_with_notes: true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
context 'when moving an issue ' do
|
2022-04-04 11:22:00 +05:30
|
|
|
it 'raises an error for invalid move ids' do
|
2020-04-22 19:07:51 +05:30
|
|
|
opts = { move_between_ids: [9000, non_existing_record_id] }
|
2019-09-30 21:07:59 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
expect { described_class.new(project: issue.project, current_user: user, params: opts).execute(issue) }
|
2019-09-30 21:07:59 +05:30
|
|
|
.to raise_error(ActiveRecord::RecordNotFound)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
include_examples 'issuable update service' do
|
|
|
|
let(:open_issuable) { issue }
|
|
|
|
let(:closed_issuable) { create(:closed_issue, project: project) }
|
|
|
|
end
|
2020-05-24 23:13:21 +05:30
|
|
|
|
2021-12-11 22:18:48 +05:30
|
|
|
context 'broadcasting issue assignee updates' do
|
2020-10-24 23:57:45 +05:30
|
|
|
let(:update_params) { { assignee_ids: [user2.id] } }
|
2020-05-24 23:13:21 +05:30
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
it 'triggers the GraphQL subscription' do
|
|
|
|
expect(GraphqlTriggers).to receive(:issuable_assignees_updated).with(issue)
|
2021-12-11 22:18:48 +05:30
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
update_issue(update_params)
|
2021-12-11 22:18:48 +05:30
|
|
|
end
|
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
context 'when assignee is not updated' do
|
|
|
|
let(:update_params) { { title: 'Some other title' } }
|
2021-12-11 22:18:48 +05:30
|
|
|
|
|
|
|
it 'does not trigger the GraphQL subscription' do
|
|
|
|
expect(GraphqlTriggers).not_to receive(:issuable_assignees_updated).with(issue)
|
2020-05-24 23:13:21 +05:30
|
|
|
|
|
|
|
update_issue(update_params)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-07-28 23:09:34 +05:30
|
|
|
|
2022-06-21 17:19:12 +05:30
|
|
|
context 'labels are updated' do
|
|
|
|
let(:label_a) { label }
|
|
|
|
let(:label_b) { label2 }
|
|
|
|
let(:issuable) { issue }
|
|
|
|
|
|
|
|
it_behaves_like 'keeps issuable labels sorted after update'
|
|
|
|
it_behaves_like 'broadcasting issuable labels updates'
|
|
|
|
|
|
|
|
def update_issuable(update_params)
|
|
|
|
update_issue(update_params)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
it_behaves_like 'issuable record that supports quick actions' do
|
|
|
|
let(:existing_issue) { create(:issue, project: project) }
|
2021-06-08 01:23:25 +05:30
|
|
|
let(:issuable) { described_class.new(project: project, current_user: user, params: params).execute(existing_issue) }
|
2020-07-28 23:09:34 +05:30
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|