Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
14c983fb
Commit
14c983fb
authored
Feb 22, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add implementation that rewrites issue notes when moving
parent
c8e7d1ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
71 additions
and
19 deletions
+71
-19
app/services/issues/move_service.rb
app/services/issues/move_service.rb
+18
-5
spec/services/issues/move_service_spec.rb
spec/services/issues/move_service_spec.rb
+53
-14
No files found.
app/services/issues/move_service.rb
View file @
14c983fb
...
@@ -15,9 +15,19 @@ module Issues
...
@@ -15,9 +15,19 @@ module Issues
def
execute
def
execute
return
unless
move?
return
unless
move?
# New issue tasks
#
open_new_issue
open_new_issue
rewrite_notes
rewrite_notes
add_moved_from_note
# Old issue tasks
#
close_old_issue
close_old_issue
add_moved_to_note
# Notifications
#
notify_participants
notify_participants
@issue_new
@issue_new
...
@@ -40,25 +50,28 @@ module Issues
...
@@ -40,25 +50,28 @@ module Issues
def
open_new_issue
def
open_new_issue
@issue_new
.
project
=
@project_new
@issue_new
.
project
=
@project_new
@issue_new
.
save!
@issue_new
.
save!
add_note_moved_from
end
end
def
rewrite_notes
def
rewrite_notes
@issue_old
.
notes
.
find_each
do
|
note
|
note_new
=
note
.
dup
note_new
.
project
=
@project_new
note_new
.
noteable
=
@issue_new
note_new
.
save!
end
end
end
def
close_old_issue
def
close_old_issue
add_note_moved_to
end
end
def
notify_participants
def
notify_participants
end
end
def
add_
note_moved_from
def
add_
moved_from_note
SystemNoteService
.
noteable_moved
(
:from
,
@issue_new
,
@project_new
,
@issue_old
,
@current_user
)
SystemNoteService
.
noteable_moved
(
:from
,
@issue_new
,
@project_new
,
@issue_old
,
@current_user
)
end
end
def
add_
note_moved_to
def
add_
moved_to_note
SystemNoteService
.
noteable_moved
(
:to
,
@issue_old
,
@project_old
,
@issue_new
,
@current_user
)
SystemNoteService
.
noteable_moved
(
:to
,
@issue_old
,
@project_old
,
@issue_new
,
@current_user
)
end
end
end
end
...
...
spec/services/issues/move_service_spec.rb
View file @
14c983fb
...
@@ -2,15 +2,15 @@ require 'spec_helper'
...
@@ -2,15 +2,15 @@ require 'spec_helper'
describe
Issues
::
MoveService
,
services:
true
do
describe
Issues
::
MoveService
,
services:
true
do
let
(
:user
)
{
create
(
:user
)
}
let
(
:user
)
{
create
(
:user
)
}
let
(
:issue
)
{
create
(
:issue
,
title:
'Some issue'
,
description:
'Some issue description'
)
}
let
(
:title
)
{
'Some issue'
}
let
(
:current_project
)
{
issue
.
project
}
let
(
:description
)
{
'Some issue description'
}
let
(
:old_issue
)
{
create
(
:issue
,
title:
title
,
description:
description
)
}
let
(
:current_project
)
{
old_issue
.
project
}
let
(
:new_project
)
{
create
(
:project
)
}
let
(
:new_project
)
{
create
(
:project
)
}
let
(
:move_params
)
{
{
'move_to_project_id'
=>
new_project
.
id
}
}
let
(
:move_params
)
{
{
'move_to_project_id'
=>
new_project
.
id
}
}
let
(
:move_service
)
{
described_class
.
new
(
current_project
,
user
,
move_params
,
issue
)
}
let
(
:move_service
)
{
described_class
.
new
(
current_project
,
user
,
move_params
,
old_
issue
)
}
before
do
before
{
current_project
.
team
<<
[
user
,
:master
]
}
current_project
.
team
<<
[
user
,
:master
]
end
context
'issue movable'
do
context
'issue movable'
do
describe
'#move?'
do
describe
'#move?'
do
...
@@ -19,18 +19,57 @@ describe Issues::MoveService, services: true do
...
@@ -19,18 +19,57 @@ describe Issues::MoveService, services: true do
end
end
describe
'#execute'
do
describe
'#execute'
do
let!
(
:new_issue
)
{
move_service
.
execute
}
shared_context
'issue move executed'
do
let!
(
:new_issue
)
{
move_service
.
execute
}
it
'should create a new issue in a new project'
do
expect
(
new_issue
.
project
).
to
eq
new_project
end
end
it
'should add system note to old issue'
do
context
'generic issue'
do
expect
(
issue
.
notes
.
last
.
note
).
to
match
/^Moved to/
include_context
'issue move executed'
it
'creates a new issue in a new project'
do
expect
(
new_issue
.
project
).
to
eq
new_project
end
it
'rewrites issue title'
do
expect
(
new_issue
.
title
).
to
eq
title
end
it
'rewrites issue description'
do
expect
(
new_issue
.
description
).
to
include
description
end
it
'adds system note to old issue at the end'
do
expect
(
old_issue
.
notes
.
last
.
note
).
to
match
/^Moved to/
end
it
'adds system note to new issue at the end'
do
expect
(
new_issue
.
notes
.
last
.
note
).
to
match
/^Moved from/
end
end
end
it
'should add system note to new issue'
do
context
'notes exist'
do
expect
(
new_issue
.
notes
.
last
.
note
).
to
match
/^Moved from/
let
(
:note_contents
)
do
[
'Some system note 1'
,
'Some comment'
,
'Some system note 2'
]
end
before
do
note_params
=
{
noteable:
old_issue
,
project:
current_project
,
author:
user
}
create
(
:system_note
,
note_params
.
merge
(
note:
note_contents
.
first
))
create
(
:note
,
note_params
.
merge
(
note:
note_contents
.
second
))
create
(
:system_note
,
note_params
.
merge
(
note:
note_contents
.
third
))
end
include_context
'issue move executed'
let
(
:new_notes
)
{
new_issue
.
notes
.
order
(
'id ASC'
).
pluck
(
:note
)
}
it
'rewrites existing system notes in valid order'
do
expect
(
new_notes
.
first
(
3
)).
to
eq
note_contents
end
it
'adds a system note about move after rewritten notes'
do
expect
(
new_notes
.
last
).
to
match
/^Moved from/
end
end
end
end
end
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment