debian-mirror-gitlab/spec/services/issues/update_service_spec.rb

728 lines
22 KiB
Ruby
Raw Normal View History

# coding: utf-8
2019-07-31 22:56:46 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
require 'spec_helper'
2017-09-10 17:25:29 +05:30
describe Issues::UpdateService, :mailer do
2014-09-02 18:07:02 +05:30
let(:user) { create(:user) }
let(:user2) { create(:user) }
2015-11-26 14:37:03 +05:30
let(:user3) { create(:user) }
2017-09-10 17:25:29 +05:30
let(:project) { create(:project) }
2016-06-02 11:05:42 +05:30
let(:label) { create(:label, project: project) }
let(:label2) { create(:label) }
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
before do
2018-11-18 11:00:15 +05:30
project.add_maintainer(user)
2018-03-17 18:26:18 +05:30
project.add_developer(user2)
project.add_developer(user3)
2014-09-02 18:07:02 +05:30
end
2015-09-11 14:41:01 +05:30
describe 'execute' do
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)
described_class.new(project, user, opts).execute(issue)
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,
discussion_locked: true
2014-09-02 18:07:02 +05:30
}
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
end
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.
expect { update_issue(confidential: true) }
.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)
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)
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
it 'sorts issues as specified by parameters' do
issue1 = create(:issue, project: project, assignees: [user3])
issue2 = create(:issue, project: project, assignees: [user3])
[issue, issue1, issue2].each do |issue|
issue.move_to_end
issue.save
end
2018-03-17 18:26:18 +05:30
opts[:move_between_ids] = [issue1.id, issue2.id]
2017-08-17 22:00:37 +05:30
update_issue(opts)
expect(issue.relative_position).to be_between(issue1.relative_position, issue2.relative_position)
end
2018-05-09 12:01:36 +05:30
context 'when moving issue between issues from different projects', :nested_groups 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]
opts[:board_group_id] = group.id
described_class.new(issue_3.project, user, opts).execute(issue_3)
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
let(:guest) { create(:user) }
before do
2018-03-17 18:26:18 +05:30
project.add_guest(guest)
2016-11-03 12:29:30 +05:30
end
2015-09-11 14:41:01 +05:30
2016-11-03 12:29:30 +05:30
it 'filters out params that cannot be set without the :admin_issue permission' do
described_class.new(project, guest, opts).execute(issue)
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
2016-11-03 12:29:30 +05:30
end
2015-04-26 12:48:37 +05:30
end
2016-11-03 12:29:30 +05:30
context 'with background jobs processed' do
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
recipients = deliveries.last(2).map(&:to).flatten
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
2016-11-03 12:29:30 +05:30
expect(note).not_to be_nil
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
expect(note).not_to be_nil
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).not_to be_nil
expect(note.note).to eq 'locked this issue'
end
2016-06-02 11:05:42 +05:30
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).not_to be_nil
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
expect(note).not_to be_nil
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)
expect(project).to receive(:execute_services).with(an_instance_of(Hash), :confidential_issue_hooks)
update_issue(confidential: true)
end
2017-08-17 22:00:37 +05:30
it 'does not update assignee_id with unauthorized users' do
project.update(visibility_level: Gitlab::VisibilityLevel::PUBLIC)
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
end
2018-12-13 13:39:08 +05:30
context 'when the milestone is removed' do
let!(:non_subscriber) { create(:user) }
let!(:subscriber) do
create(:user) do |u|
issue.toggle_subscription(u, project)
project.add_developer(u)
end
end
it_behaves_like 'system notes for milestones'
it 'sends notifications for subscribers of changed milestone' do
2019-03-13 22:55:13 +05:30
issue.milestone = create(:milestone, project: project)
2018-12-13 13:39:08 +05:30
issue.save
perform_enqueued_jobs do
update_issue(milestone_id: "")
end
should_email(subscriber)
should_not_email(non_subscriber)
end
end
context 'when the milestone is changed' do
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
it_behaves_like 'system notes for milestones'
2018-12-13 13:39:08 +05:30
it 'sends notifications for subscribers of changed milestone' do
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
2016-04-02 18:10:28 +05:30
end
context 'when the labels change' do
before do
2018-11-08 19:23:39 +05:30
Timecop.freeze(1.minute.from_now) do
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
expect(issue.reload.updated_at).to be > Time.now
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
it 'sends notifications for subscribers of newly added labels' do
opts = { label_ids: [label.id] }
perform_enqueued_jobs do
2016-09-29 09:46:39 +05:30
@issue = described_class.new(project, user, 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
2016-09-29 09:46:39 +05:30
@issue = described_class.new(project, user, 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
2016-09-29 09:46:39 +05:30
@issue = described_class.new(project, user, 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
}
}
service = described_class.new(project, user, params)
expect(service).not_to receive(:spam_check)
service.execute(issue)
end
2015-12-23 02:04:40 +05:30
it 'creates system note about task status change' do
2017-08-17 22:00:37 +05:30
note1 = find_note('marked the task **Task 1** as completed')
note2 = find_note('marked the task **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
2017-08-17 22:00:37 +05:30
note1 = find_note('marked the task **Task 1** as incomplete')
note2 = find_note('marked the task **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
task_note = find_note('marked the task **Task 2** as incomplete')
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
2017-09-10 17:25:29 +05:30
task_note = find_note('marked the task **Two** as incomplete')
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
context 'updating labels' do
let(:label3) { create(:label, project: project) }
2016-09-29 09:46:39 +05:30
let(:result) { described_class.new(project, user, params).execute(issue).reload }
context 'when add_label_ids and label_ids are passed' do
let(:params) { { label_ids: [label.id], add_label_ids: [label3.id] } }
it 'ignores the label_ids parameter' do
expect(result.label_ids).not_to include(label.id)
end
it 'adds the passed labels' do
expect(result.label_ids).to include(label3.id)
end
end
context 'when remove_label_ids and label_ids are passed' do
let(:params) { { label_ids: [], remove_label_ids: [label.id] } }
2017-09-10 17:25:29 +05:30
before do
2018-11-18 11:00:15 +05:30
issue.update(labels: [label, label3])
2017-09-10 17:25:29 +05:30
end
it 'ignores the label_ids parameter' do
expect(result.label_ids).not_to be_empty
end
it 'removes the passed labels' do
expect(result.label_ids).not_to include(label.id)
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
2018-11-18 11:00:15 +05:30
issue.update(labels: [label])
2017-09-10 17:25:29 +05:30
end
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
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
end
2016-09-13 17:45:13 +05:30
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)
project.update(visibility_level: level)
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 }
2017-09-10 17:25:29 +05:30
include_examples 'updating mentions', described_class
end
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
expect_any_instance_of(Issues::DuplicateService)
.to receive(:execute).with(issue, canonical_issue)
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
2019-09-30 21:07:59 +05:30
context 'when moving an issue ', :nested_groups do
it 'raises an error for invalid move ids within a project' do
opts = { move_between_ids: [9000, 9999] }
expect { described_class.new(issue.project, user, opts).execute(issue) }
.to raise_error(ActiveRecord::RecordNotFound)
end
it 'raises an error for invalid move ids within a group' do
opts = { move_between_ids: [9000, 9999], board_group_id: create(:group).id }
expect { described_class.new(issue.project, user, opts).execute(issue) }
.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
2014-09-02 18:07:02 +05:30
end
end