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
02ed1a17
Commit
02ed1a17
authored
Dec 21, 2017
by
Jarka Kadlecová
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve code & add tests
parent
8d91df9d
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
247 additions
and
169 deletions
+247
-169
ee/app/services/epic_issues/update_service.rb
ee/app/services/epic_issues/update_service.rb
+5
-3
ee/app/services/issuable_links/list_service.rb
ee/app/services/issuable_links/list_service.rb
+5
-0
ee/lib/api/epic_issues.rb
ee/lib/api/epic_issues.rb
+16
-11
spec/ee/spec/controllers/groups/epic_issues_controller_spec.rb
...ee/spec/controllers/groups/epic_issues_controller_spec.rb
+146
-117
spec/ee/spec/features/epics/epic_issues_spec.rb
spec/ee/spec/features/epics/epic_issues_spec.rb
+2
-2
spec/ee/spec/requests/api/epic_issues_spec.rb
spec/ee/spec/requests/api/epic_issues_spec.rb
+50
-35
spec/ee/spec/services/epic_issues/create_service_spec.rb
spec/ee/spec/services/epic_issues/create_service_spec.rb
+1
-1
spec/ee/spec/services/epic_issues/update_service_spec.rb
spec/ee/spec/services/epic_issues/update_service_spec.rb
+22
-0
No files found.
ee/app/services/epic_issues/update_service.rb
View file @
02ed1a17
...
...
@@ -28,7 +28,6 @@ module EpicIssues
def
issues_to_move
@issues_to_move
||=
epic
.
epic_issues
.
where
(
'position >= ? AND position <= ? AND id != ?'
,
from
,
to
,
epic_issue
.
id
)
.
order
(
:position
)
end
def
from
...
...
@@ -45,8 +44,11 @@ module EpicIssues
def
new_position
@new_position
||=
begin
replacing_issue
=
epic
.
epic_issues
.
order
(
:position
).
limit
(
1
).
offset
(
params
[
:position
])[
0
]
replacing_issue
.
position
replacing_issue
=
epic
.
epic_issues
.
order
(
:position
).
limit
(
1
).
offset
(
params
[
:position
])
return
replacing_issue
[
0
].
position
if
replacing_issue
.
present?
epic
.
epic_issues
.
order
(
:position
).
last
.
position
end
end
end
...
...
ee/app/services/issuable_links/list_service.rb
View file @
02ed1a17
...
...
@@ -16,6 +16,11 @@ module IssuableLinks
private
def
relation_path
(
issue
)
raise
NotImplementedError
end
def
reference
(
issue
)
issue
.
to_reference
(
issuable
.
project
)
end
...
...
ee/lib/api/epic_issues.rb
View file @
02ed1a17
...
...
@@ -2,12 +2,22 @@ module API
class
EpicIssues
<
Grape
::
API
before
do
authenticate!
check_epics
!
authorize_can_admin
!
end
helpers
do
def
check_epics!
forbidden!
unless
::
License
.
feature_available?
(
:epics
)
# TODO: check for group feature instead
def
authorize_can_admin!
forbidden!
unless
user_group
.
feature_available?
(
:epics
)
# TODO: check for group feature instead
authorize!
(
:admin_epic
,
epic
)
forbidden!
if
link
.
epic
!=
epic
end
def
epic
@epic
||=
user_group
.
epics
.
find_by
(
iid:
params
[
:epic_iid
])
end
def
link
@link
||=
EpicIssue
.
find
(
params
[
:epic_issue_id
])
end
end
...
...
@@ -24,15 +34,10 @@ module API
requires
:position
,
type:
Integer
,
desc:
'The new position of the issue in the epic (index starting with 0)'
end
put
':id/-/epics/:epic_iid/issues/:epic_issue_id'
do
epic
=
user_group
.
epics
.
find_by
(
iid:
params
[
:epic_iid
])
authorize!
(
:admin_epic
,
epic
)
link
=
EpicIssue
.
find
(
params
[
:epic_issue_id
])
forbidden!
if
link
.
epic
!=
epic
result
=
::
EpicIssues
::
UpdateService
.
new
(
link
,
current_user
,
{
position:
params
[
:position
].
to_i
}).
execute
result
=
::
EpicIssues
::
UpdateService
.
new
(
link
,
current_user
,
{
position:
params
[
:position
].
to_i
}).
execute
# For now we return empty body
# The issues list in the correct order in body will be returned as part of #4250
render_api_error!
({
error:
"Issue could not be moved!"
},
400
)
unless
result
end
end
...
...
spec/ee/spec/controllers/groups/epic_issues_controller_spec.rb
View file @
02ed1a17
...
...
@@ -13,13 +13,31 @@ describe Groups::EpicIssuesController do
sign_in
(
user
)
end
shared_examples
'unlicensed epics action'
do
before
do
stub_licensed_features
(
epics:
false
)
group
.
add_developer
(
user
)
subject
end
it
'returns 400 status'
do
expect
(
response
).
to
have_gitlab_http_status
(
404
)
end
end
describe
'GET #index'
do
let!
(
:epic_issues
)
{
create
(
:epic_issue
,
epic:
epic
,
issue:
issue
)
}
subject
{
get
:index
,
group_id:
group
,
epic_id:
epic
.
to_param
}
it_behaves_like
'unlicensed epics action'
context
'when epics feature is enabled'
do
before
do
group
.
add_developer
(
user
)
get
:index
,
group_id:
group
,
epic_id:
epic
.
to_param
subject
end
it
'returns status 200'
do
...
...
@@ -40,6 +58,7 @@ describe Groups::EpicIssuesController do
expect
(
JSON
.
parse
(
response
.
body
)).
to
eq
(
expected_result
)
end
end
end
describe
'POST #create'
do
subject
do
...
...
@@ -48,6 +67,9 @@ describe Groups::EpicIssuesController do
post
:create
,
group_id:
group
,
epic_id:
epic
.
to_param
,
issue_references:
reference
end
it_behaves_like
'unlicensed epics action'
context
'when epics feature is enabled'
do
context
'when user has permissions to create requested association'
do
before
do
group
.
add_developer
(
user
)
...
...
@@ -78,14 +100,16 @@ describe Groups::EpicIssuesController do
end
end
end
end
describe
'DELETE #destroy'
do
let!
(
:epic_issue
)
{
create
(
:epic_issue
,
epic:
epic
,
issue:
issue
)
}
subject
do
delete
:destroy
,
group_id:
group
,
epic_id:
epic
.
to_param
,
id:
epic_issue
.
id
end
subject
{
delete
:destroy
,
group_id:
group
,
epic_id:
epic
.
to_param
,
id:
epic_issue
.
id
}
it_behaves_like
'unlicensed epics action'
context
'when epics feature is enabled'
do
context
'when user has permissions to delete the link'
do
before
do
group
.
add_developer
(
user
)
...
...
@@ -144,6 +168,7 @@ describe Groups::EpicIssuesController do
end
end
end
end
describe
'PUT #update'
do
let
(
:issue2
)
{
create
(
:issue
,
project:
project
)
}
...
...
@@ -154,6 +179,9 @@ describe Groups::EpicIssuesController do
put
:update
,
group_id:
group
,
epic_id:
epic
.
to_param
,
id:
epic_issue1
.
id
,
epic:
{
position:
1
}
end
it_behaves_like
'unlicensed epics action'
context
'when epics feature is enabled'
do
context
'when user has permissions to admin the epic'
do
before
do
group
.
add_developer
(
user
)
...
...
@@ -212,4 +240,5 @@ describe Groups::EpicIssuesController do
end
end
end
end
end
spec/ee/spec/features/epics/epic_issues_spec.rb
View file @
02ed1a17
...
...
@@ -13,8 +13,8 @@ describe 'Epic Issues', :js do
let!
(
:epic_issues
)
do
[
create
(
:epic_issue
,
epic:
epic
,
issue:
public_issue
),
create
(
:epic_issue
,
epic:
epic
,
issue:
private_issue
)
create
(
:epic_issue
,
epic:
epic
,
issue:
public_issue
,
position:
1
),
create
(
:epic_issue
,
epic:
epic
,
issue:
private_issue
,
position:
2
)
]
end
...
...
spec/ee/spec/requests/api/epic_issues_spec.rb
View file @
02ed1a17
...
...
@@ -3,7 +3,7 @@ require 'spec_helper'
describe
API
::
EpicIssues
do
let
(
:user
)
{
create
(
:user
)
}
let
(
:group
)
{
create
(
:group
)
}
let
(
:project
)
{
create
(
:project
,
group:
group
)
}
let
(
:project
)
{
create
(
:project
,
:public
,
group:
group
)
}
let
(
:epic
)
{
create
(
:epic
,
group:
group
)
}
let
(
:issues
)
{
create_list
(
:issue
,
2
,
project:
project
)
}
let!
(
:epic_issue1
)
{
create
(
:epic_issue
,
epic:
epic
,
issue:
issues
[
0
],
position:
1
)
}
...
...
@@ -11,31 +11,46 @@ describe API::EpicIssues do
describe
'PUT /groups/:id/-/epics/:epic_iid/issues/:epic_issue_id'
do
let
(
:url
)
{
"/groups/
#{
group
.
path
}
/-/epics/
#{
epic
.
iid
}
/issues/
#{
epic_issue1
.
id
}
?position=1"
}
context
'when epics feature is disabled'
do
it
'returns 403 forbidden error'
do
group
.
add_developer
(
user
)
put
api
(
url
,
user
)
expect
(
response
).
to
have_gitlab_http_status
(
403
)
end
end
context
'when epics feature is enabled'
do
before
do
stub_licensed_features
(
epics:
true
)
end
context
'when an error occurs'
do
it
'returns 401 unauthorized error for non auteh
nticated user'
do
it
'returns 401 unauthorized error for non authe
nticated user'
do
put
api
(
url
)
expect
(
response
).
to
have_gitlab_http_status
(
401
)
end
it
'returns 404 not found error for user who does not have permissions to see the group'
do
it
'returns 404 not found error for a user without permissions to see the group'
do
project
.
update
(
visibility_level:
Gitlab
::
VisibilityLevel
::
PRIVATE
)
group
.
update
(
visibility_level:
Gitlab
::
VisibilityLevel
::
PRIVATE
)
put
api
(
url
,
user
)
expect
(
response
).
to
have_gitlab_http_status
(
404
)
end
it
'returns 403 forbidden error for user who does can not move the issue'
do
group
.
update
(
visibility_level:
Gitlab
::
VisibilityLevel
::
PRIVATE
)
it
'returns 403 forbidden error for a user who can not move the issue'
do
put
api
(
url
,
user
)
expect
(
response
).
to
have_gitlab_http_status
(
404
)
expect
(
response
).
to
have_gitlab_http_status
(
403
)
end
it
'returns 403 forbidden error for the link of another epic'
do
group
.
add_developer
(
user
)
another_epic
=
create
(
:epic
,
group:
group
)
url
=
"/groups/
#{
group
.
path
}
/-/epics/
#{
another_epic
.
iid
}
/issues/
#{
epic_issue1
.
id
}
?position=1"
put
api
(
url
,
user
)
expect
(
response
).
to
have_gitlab_http_status
(
403
)
...
...
@@ -46,7 +61,6 @@ describe API::EpicIssues do
let!
(
:epic_issue2
)
{
create
(
:epic_issue
,
epic:
epic
,
issue:
issues
[
1
],
position:
2
)
}
before
do
stub_licensed_features
(
epics:
true
)
group
.
add_developer
(
user
)
put
api
(
url
,
user
)
end
...
...
@@ -61,4 +75,5 @@ describe API::EpicIssues do
end
end
end
end
end
spec/ee/spec/services/epic_issues/create_service_spec.rb
View file @
02ed1a17
...
...
@@ -187,7 +187,7 @@ describe EpicIssues::CreateService do
expect
(
subject
).
to
eq
(
status: :success
)
end
it
'creates 2 system notes for each
assiues
'
do
it
'creates 2 system notes for each
issue
'
do
expect
{
subject
}.
to
change
{
Note
.
count
}.
from
(
0
).
to
(
4
)
end
end
...
...
spec/ee/spec/services/epic_issues/update_service_spec.rb
View file @
02ed1a17
...
...
@@ -104,5 +104,27 @@ describe EpicIssues::UpdateService do
end
end
end
context
'moving issues to the last position'
do
context
'when index of the last possition is correct'
do
before
do
order_issue
(
epic_issue1
,
3
)
end
it
'orders issues correctly'
do
expect
(
ordered_epics
).
to
eq
([
epic_issue2
,
epic_issue3
,
epic_issue4
,
epic_issue1
])
end
end
context
'when index of the last possition is too high'
do
before
do
order_issue
(
epic_issue1
,
100
)
end
it
'orders issues correctly'
do
expect
(
ordered_epics
).
to
eq
([
epic_issue2
,
epic_issue3
,
epic_issue4
,
epic_issue1
])
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