2016-05-31 07:45:55 -04:00
|
|
|
# coding: utf-8
|
2014-04-02 06:54:41 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-12-09 05:55:49 -05:00
|
|
|
describe Issues::UpdateService, services: true do
|
2014-04-02 06:54:41 -04:00
|
|
|
let(:user) { create(:user) }
|
2014-04-02 09:33:07 -04:00
|
|
|
let(:user2) { create(:user) }
|
2015-11-17 10:51:39 -05:00
|
|
|
let(:user3) { create(:user) }
|
2016-04-21 06:25:21 -04:00
|
|
|
let(:project) { create(:empty_project) }
|
|
|
|
let(:label) { create(:label, project: project) }
|
2016-03-01 11:33:13 -05:00
|
|
|
let(:label2) { create(:label) }
|
2016-04-21 06:25:21 -04:00
|
|
|
|
|
|
|
let(:issue) do
|
|
|
|
create(:issue, title: 'Old title',
|
|
|
|
assignee_id: user3.id,
|
|
|
|
project: project)
|
|
|
|
end
|
2014-04-02 06:54:41 -04:00
|
|
|
|
2014-04-02 09:33:07 -04:00
|
|
|
before do
|
|
|
|
project.team << [user, :master]
|
|
|
|
project.team << [user2, :developer]
|
2015-11-17 10:51:39 -05:00
|
|
|
project.team << [user3, :developer]
|
2014-04-02 09:33:07 -04:00
|
|
|
end
|
|
|
|
|
2015-05-26 21:49:04 -04:00
|
|
|
describe 'execute' do
|
2015-10-22 11:18:59 -04:00
|
|
|
def find_note(starting_with)
|
|
|
|
@issue.notes.find do |note|
|
|
|
|
note && note.note.start_with?(starting_with)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-04-02 06:54:41 -04:00
|
|
|
context "valid params" do
|
|
|
|
before do
|
|
|
|
opts = {
|
|
|
|
title: 'New title',
|
2014-04-02 09:33:07 -04:00
|
|
|
description: 'Also please fix',
|
|
|
|
assignee_id: user2.id,
|
2015-02-07 06:14:55 -05:00
|
|
|
state_event: 'close',
|
2016-04-20 18:41:11 -04:00
|
|
|
label_ids: [label.id],
|
|
|
|
confidential: true
|
2014-04-02 06:54:41 -04:00
|
|
|
}
|
|
|
|
|
2015-11-30 11:03:07 -05:00
|
|
|
perform_enqueued_jobs do
|
|
|
|
@issue = Issues::UpdateService.new(project, user, opts).execute(issue)
|
|
|
|
end
|
|
|
|
|
2015-01-26 01:49:05 -05:00
|
|
|
@issue.reload
|
2014-04-02 06:54:41 -04:00
|
|
|
end
|
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(@issue).to be_valid }
|
|
|
|
it { expect(@issue.title).to eq('New title') }
|
|
|
|
it { expect(@issue.assignee).to eq(user2) }
|
|
|
|
it { expect(@issue).to be_closed }
|
|
|
|
it { expect(@issue.labels.count).to eq(1) }
|
2016-02-12 09:58:39 -05:00
|
|
|
it { expect(@issue.labels.first.title).to eq(label.name) }
|
2014-04-02 09:33:07 -04:00
|
|
|
|
2015-11-17 10:53:15 -05:00
|
|
|
it 'should send email to user2 about assign of new issue and email to user3 about issue unassignment' do
|
2015-11-17 10:51:39 -05:00
|
|
|
deliveries = ActionMailer::Base.deliveries
|
2015-11-09 11:26:01 -05:00
|
|
|
email = deliveries.last
|
2015-11-17 10:51:39 -05:00
|
|
|
recipients = deliveries.last(2).map(&:to).flatten
|
|
|
|
expect(recipients).to include(user2.email, user3.email)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(email.subject).to include(issue.title)
|
2014-04-02 09:33:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should create system note about issue reassign' do
|
2015-05-26 21:49:04 -04:00
|
|
|
note = find_note('Reassigned to')
|
|
|
|
|
|
|
|
expect(note).not_to be_nil
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(note.note).to include "Reassigned to \@#{user2.username}"
|
2014-04-02 09:33:07 -04:00
|
|
|
end
|
2015-02-07 06:14:55 -05:00
|
|
|
|
|
|
|
it 'should create system note about issue label edit' do
|
2015-05-26 21:49:04 -04:00
|
|
|
note = find_note('Added ~')
|
|
|
|
|
|
|
|
expect(note).not_to be_nil
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(note.note).to include "Added ~#{label.id} label"
|
2015-02-07 06:14:55 -05:00
|
|
|
end
|
2015-05-26 21:49:04 -04:00
|
|
|
|
|
|
|
it 'creates system note about title change' do
|
2016-04-06 15:37:09 -04:00
|
|
|
note = find_note('Changed title:')
|
2015-05-26 21:49:04 -04:00
|
|
|
|
|
|
|
expect(note).not_to be_nil
|
2016-04-06 15:37:09 -04:00
|
|
|
expect(note.note).to eq 'Changed title: **{-Old-} title** → **{+New+} title**'
|
2015-05-26 21:49:04 -04:00
|
|
|
end
|
2016-04-20 18:41:11 -04:00
|
|
|
|
|
|
|
it 'creates system note about confidentiality change' do
|
2016-05-18 13:56:13 -04:00
|
|
|
note = find_note('Made the issue confidential')
|
2016-04-20 18:41:11 -04:00
|
|
|
|
|
|
|
expect(note).not_to be_nil
|
2016-05-18 13:56:13 -04:00
|
|
|
expect(note.note).to eq 'Made the issue confidential'
|
2016-04-20 18:41:11 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_issue(opts)
|
|
|
|
@issue = Issues::UpdateService.new(project, user, opts).execute(issue)
|
|
|
|
@issue.reload
|
2016-02-15 21:26:33 -05:00
|
|
|
end
|
2016-02-15 13:13:52 -05:00
|
|
|
|
2016-02-20 08:59:59 -05:00
|
|
|
context 'todos' do
|
|
|
|
let!(:todo) { create(:todo, :assigned, user: user, project: project, target: issue, author: user2) }
|
2016-02-15 21:26:33 -05:00
|
|
|
|
|
|
|
context 'when the title change' do
|
|
|
|
before do
|
|
|
|
update_issue({ title: 'New title' })
|
|
|
|
end
|
|
|
|
|
2016-02-20 08:59:59 -05:00
|
|
|
it 'marks pending todos as done' do
|
|
|
|
expect(todo.reload.done?).to eq true
|
2016-02-15 21:26:33 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the description change' do
|
|
|
|
before do
|
|
|
|
update_issue({ description: 'Also please fix' })
|
|
|
|
end
|
|
|
|
|
2016-02-20 08:59:59 -05:00
|
|
|
it 'marks todos as done' do
|
|
|
|
expect(todo.reload.done?).to eq true
|
2016-02-15 21:26:33 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when is reassigned' do
|
|
|
|
before do
|
|
|
|
update_issue({ assignee: user2 })
|
|
|
|
end
|
|
|
|
|
2016-02-20 08:59:59 -05:00
|
|
|
it 'marks previous assignee todos as done' do
|
|
|
|
expect(todo.reload.done?).to eq true
|
2016-02-15 21:26:33 -05:00
|
|
|
end
|
2016-02-15 13:13:52 -05:00
|
|
|
|
2016-02-20 08:59:59 -05:00
|
|
|
it 'creates a todo for new assignee' do
|
2016-02-15 21:26:33 -05:00
|
|
|
attributes = {
|
|
|
|
project: project,
|
|
|
|
author: user,
|
|
|
|
user: user2,
|
2016-02-20 08:59:59 -05:00
|
|
|
target_id: issue.id,
|
|
|
|
target_type: issue.class.name,
|
|
|
|
action: Todo::ASSIGNED,
|
2016-02-15 21:26:33 -05:00
|
|
|
state: :pending
|
|
|
|
}
|
|
|
|
|
2016-02-20 08:59:59 -05:00
|
|
|
expect(Todo.where(attributes).count).to eq 1
|
2016-02-15 21:26:33 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the milestone change' do
|
|
|
|
before do
|
|
|
|
update_issue({ milestone: create(:milestone) })
|
|
|
|
end
|
|
|
|
|
2016-02-20 08:59:59 -05:00
|
|
|
it 'marks todos as done' do
|
|
|
|
expect(todo.reload.done?).to eq true
|
2016-02-15 21:26:33 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the labels change' do
|
|
|
|
before do
|
|
|
|
update_issue({ label_ids: [label.id] })
|
|
|
|
end
|
|
|
|
|
2016-02-20 08:59:59 -05:00
|
|
|
it 'marks todos as done' do
|
|
|
|
expect(todo.reload.done?).to eq true
|
2016-02-15 21:26:33 -05:00
|
|
|
end
|
2016-02-15 13:13:52 -05:00
|
|
|
end
|
2014-04-02 06:54:41 -04:00
|
|
|
end
|
2015-10-22 11:18:59 -04:00
|
|
|
|
2016-03-01 11:33:13 -05:00
|
|
|
context 'when the issue is relabeled' do
|
|
|
|
let!(:non_subscriber) { create(:user) }
|
2016-03-21 19:20:53 -04:00
|
|
|
let!(:subscriber) do
|
|
|
|
create(:user).tap do |u|
|
|
|
|
label.toggle_subscription(u)
|
|
|
|
project.team << [u, :developer]
|
|
|
|
end
|
|
|
|
end
|
2016-02-12 09:58:39 -05:00
|
|
|
|
2016-03-01 11:33:13 -05:00
|
|
|
it 'sends notifications for subscribers of newly added labels' do
|
2016-02-12 09:58:39 -05:00
|
|
|
opts = { label_ids: [label.id] }
|
|
|
|
|
|
|
|
perform_enqueued_jobs do
|
|
|
|
@issue = Issues::UpdateService.new(project, user, opts).execute(issue)
|
|
|
|
end
|
|
|
|
|
|
|
|
should_email(subscriber)
|
|
|
|
should_not_email(non_subscriber)
|
|
|
|
end
|
|
|
|
|
2016-03-01 11:33:13 -05:00
|
|
|
context 'when issue has the `label` label' do
|
|
|
|
before { issue.labels << label }
|
2016-02-12 09:58:39 -05:00
|
|
|
|
2016-03-01 11:33:13 -05:00
|
|
|
it 'does not send notifications for existing labels' do
|
|
|
|
opts = { label_ids: [label.id, label2.id] }
|
2016-02-12 09:58:39 -05:00
|
|
|
|
2016-03-01 11:33:13 -05:00
|
|
|
perform_enqueued_jobs do
|
|
|
|
@issue = Issues::UpdateService.new(project, user, opts).execute(issue)
|
|
|
|
end
|
2016-02-12 09:58:39 -05:00
|
|
|
|
2016-03-01 11:33:13 -05:00
|
|
|
should_not_email(subscriber)
|
|
|
|
should_not_email(non_subscriber)
|
|
|
|
end
|
2016-02-12 09:58:39 -05:00
|
|
|
|
2016-03-01 11:33:13 -05:00
|
|
|
it 'does not send notifications for removed labels' do
|
|
|
|
opts = { label_ids: [label2.id] }
|
2016-02-12 09:58:39 -05:00
|
|
|
|
2016-03-01 11:33:13 -05:00
|
|
|
perform_enqueued_jobs do
|
|
|
|
@issue = Issues::UpdateService.new(project, user, opts).execute(issue)
|
|
|
|
end
|
2016-02-12 09:58:39 -05:00
|
|
|
|
2016-03-01 11:33:13 -05:00
|
|
|
should_not_email(subscriber)
|
|
|
|
should_not_email(non_subscriber)
|
2016-02-12 09:58:39 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-10-22 11:18:59 -04:00
|
|
|
context 'when Issue has tasks' do
|
|
|
|
before { update_issue({ description: "- [ ] Task 1\n- [ ] Task 2" }) }
|
|
|
|
|
|
|
|
it { expect(@issue.tasks?).to eq(true) }
|
|
|
|
|
|
|
|
context 'when tasks are marked as completed' do
|
|
|
|
before { update_issue({ description: "- [x] Task 1\n- [X] Task 2" }) }
|
|
|
|
|
|
|
|
it 'creates system note about task status change' do
|
|
|
|
note1 = find_note('Marked the task **Task 1** as completed')
|
|
|
|
note2 = find_note('Marked the task **Task 2** as completed')
|
|
|
|
|
|
|
|
expect(note1).not_to be_nil
|
|
|
|
expect(note2).not_to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when tasks are marked as incomplete' do
|
|
|
|
before do
|
|
|
|
update_issue({ description: "- [x] Task 1\n- [X] Task 2" })
|
|
|
|
update_issue({ description: "- [ ] Task 1\n- [ ] Task 2" })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates system note about task status change' do
|
|
|
|
note1 = find_note('Marked the task **Task 1** as incomplete')
|
|
|
|
note2 = find_note('Marked the task **Task 2** as incomplete')
|
|
|
|
|
|
|
|
expect(note1).not_to be_nil
|
|
|
|
expect(note2).not_to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when tasks position has been modified' do
|
|
|
|
before do
|
|
|
|
update_issue({ description: "- [x] Task 1\n- [X] Task 2" })
|
|
|
|
update_issue({ description: "- [x] Task 1\n- [ ] Task 3\n- [ ] Task 2" })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a system note' do
|
|
|
|
note = find_note('Marked the task **Task 2** as incomplete')
|
|
|
|
|
|
|
|
expect(note).to be_nil
|
|
|
|
end
|
|
|
|
end
|
2015-11-20 13:58:45 -05:00
|
|
|
|
|
|
|
context 'when a Task list with a completed item is totally replaced' do
|
|
|
|
before do
|
|
|
|
update_issue({ description: "- [ ] Task 1\n- [X] Task 2" })
|
|
|
|
update_issue({ description: "- [ ] One\n- [ ] Two\n- [ ] Three" })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a system note referencing the position the old item' do
|
|
|
|
note = find_note('Marked the task **Two** as incomplete')
|
|
|
|
|
|
|
|
expect(note).to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not generate a new note at all' do
|
2015-11-20 14:27:31 -05:00
|
|
|
expect do
|
2015-11-20 13:58:45 -05:00
|
|
|
update_issue({ description: "- [ ] One\n- [ ] Two\n- [ ] Three" })
|
2015-11-20 14:27:31 -05:00
|
|
|
end.not_to change { Note.count }
|
2015-11-20 13:58:45 -05:00
|
|
|
end
|
|
|
|
end
|
2015-10-22 11:18:59 -04:00
|
|
|
end
|
2016-05-31 07:45:55 -04:00
|
|
|
|
|
|
|
context 'updating labels' do
|
|
|
|
let(:label3) { create(:label, project: project) }
|
|
|
|
let(:result) { Issues::UpdateService.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] } }
|
|
|
|
|
|
|
|
before { issue.update_attributes(labels: [label, label3]) }
|
|
|
|
|
|
|
|
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] } }
|
|
|
|
|
|
|
|
before { issue.update_attributes(labels: [label]) }
|
|
|
|
|
|
|
|
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
|
|
|
|
end
|
2014-04-02 06:54:41 -04:00
|
|
|
end
|
|
|
|
end
|