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
ae68c1a1
Commit
ae68c1a1
authored
Feb 01, 2021
by
Brett Walker
Committed by
Matthias Käppler
Feb 01, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix labels in API to accept `.` in name/label_id
For example, a label such as `v.1` should be allowed
parent
fb56d1ef
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
77 additions
and
54 deletions
+77
-54
changelogs/unreleased/223618-project-labels-api-return-404-label-not-found-if-label-name-contai.yml
...s-api-return-404-label-not-found-if-label-name-contai.yml
+5
-0
lib/api/group_labels.rb
lib/api/group_labels.rb
+1
-1
lib/api/labels.rb
lib/api/labels.rb
+5
-1
lib/api/subscriptions.rb
lib/api/subscriptions.rb
+4
-1
spec/requests/api/group_labels_spec.rb
spec/requests/api/group_labels_spec.rb
+30
-24
spec/requests/api/labels_spec.rb
spec/requests/api/labels_spec.rb
+32
-27
No files found.
changelogs/unreleased/223618-project-labels-api-return-404-label-not-found-if-label-name-contai.yml
0 → 100644
View file @
ae68c1a1
---
title
:
Allow dots in label names through REST API
merge_request
:
52591
author
:
type
:
fixed
lib/api/group_labels.rb
View file @
ae68c1a1
...
...
@@ -12,7 +12,7 @@ module API
params
do
requires
:id
,
type:
String
,
desc:
'The ID of a group'
end
resource
:groups
,
requirements:
API
::
NAMESPACE_OR_PROJEC
T_REQUIREMENTS
do
resource
:groups
,
requirements:
::
API
::
Labels
::
LABEL_ENDPOIN
T_REQUIREMENTS
do
desc
'Get all labels of the group'
do
detail
'This feature was added in GitLab 11.8'
success
Entities
::
GroupLabel
...
...
lib/api/labels.rb
View file @
ae68c1a1
...
...
@@ -9,10 +9,14 @@ module API
feature_category
:issue_tracking
LABEL_ENDPOINT_REQUIREMENTS
=
API
::
NAMESPACE_OR_PROJECT_REQUIREMENTS
.
merge
(
name:
API
::
NO_SLASH_URL_PART_REGEX
,
label_id:
API
::
NO_SLASH_URL_PART_REGEX
)
params
do
requires
:id
,
type:
String
,
desc:
'The ID of a project'
end
resource
:projects
,
requirements:
API
::
NAMESPACE_OR_PROJEC
T_REQUIREMENTS
do
resource
:projects
,
requirements:
LABEL_ENDPOIN
T_REQUIREMENTS
do
desc
'Get all labels of the project'
do
success
Entities
::
ProjectLabel
end
...
...
lib/api/subscriptions.rb
View file @
ae68c1a1
...
...
@@ -6,6 +6,9 @@ module API
before
{
authenticate!
}
SUBSCRIBE_ENDPOINT_REQUIREMENTS
=
API
::
NAMESPACE_OR_PROJECT_REQUIREMENTS
.
merge
(
subscribable_id:
API
::
NO_SLASH_URL_PART_REGEX
)
subscribables
=
[
{
type:
'merge_requests'
,
...
...
@@ -44,7 +47,7 @@ module API
requires
:id
,
type:
String
,
desc:
"The
#{
source_type
}
ID"
requires
:subscribable_id
,
type:
String
,
desc:
'The ID of a resource'
end
resource
source_type
.
pluralize
,
requirements:
API
::
NAMESPACE_OR_PROJEC
T_REQUIREMENTS
do
resource
source_type
.
pluralize
,
requirements:
SUBSCRIBE_ENDPOIN
T_REQUIREMENTS
do
desc
'Subscribe to a resource'
do
success
subscribable
[
:entity
]
end
...
...
spec/requests/api/group_labels_spec.rb
View file @
ae68c1a1
...
...
@@ -3,13 +3,19 @@
require
'spec_helper'
RSpec
.
describe
API
::
GroupLabels
do
let_it_be
(
:valid_group_label_title_1
)
{
'Label foo & bar:subgroup::v.1'
}
let_it_be
(
:valid_group_label_title_1_esc
)
{
ERB
::
Util
.
url_encode
(
valid_group_label_title_1
)
}
let_it_be
(
:valid_group_label_title_2
)
{
'Bar & foo:subgroup::v.2'
}
let_it_be
(
:valid_subgroup_label_title_1
)
{
'Support label foobar:sub::v.1'
}
let_it_be
(
:valid_new_label_title
)
{
'New & foo:feature::v.3'
}
let
(
:user
)
{
create
(
:user
)
}
let
(
:group
)
{
create
(
:group
)
}
let
(
:subgroup
)
{
create
(
:group
,
parent:
group
)
}
let!
(
:group_member
)
{
create
(
:group_member
,
group:
group
,
user:
user
)
}
let!
(
:group_label1
)
{
create
(
:group_label
,
title:
'feature-label'
,
group:
group
)
}
let!
(
:group_label2
)
{
create
(
:group_label
,
title:
'bug'
,
group:
group
)
}
let!
(
:subgroup_label
)
{
create
(
:group_label
,
title:
'support-label'
,
group:
subgroup
)
}
let!
(
:group_label1
)
{
create
(
:group_label
,
title:
valid_group_label_title_1
,
group:
group
)
}
let!
(
:group_label2
)
{
create
(
:group_label
,
title:
valid_group_label_title_2
,
group:
group
)
}
let!
(
:subgroup_label
)
{
create
(
:group_label
,
title:
valid_subgroup_label_title_1
,
group:
subgroup
)
}
describe
'GET :id/labels'
do
context
'get current group labels'
do
...
...
@@ -104,7 +110,7 @@ RSpec.describe API::GroupLabels do
describe
'GET :id/labels/:label_id'
do
it
'returns a single label for the group'
do
get
api
(
"/groups/
#{
group
.
id
}
/labels/
#{
group_label1
.
name
}
"
,
user
)
get
api
(
"/groups/
#{
group
.
id
}
/labels/
#{
valid_group_label_title_1_esc
}
"
,
user
)
expect
(
response
).
to
have_gitlab_http_status
(
:ok
)
expect
(
json_response
[
'name'
]).
to
eq
(
group_label1
.
name
)
...
...
@@ -117,13 +123,13 @@ RSpec.describe API::GroupLabels do
it
'returns created label when all params are given'
do
post
api
(
"/groups/
#{
group
.
id
}
/labels"
,
user
),
params:
{
name:
'Foo'
,
name:
valid_new_label_title
,
color:
'#FFAABB'
,
description:
'test'
}
expect
(
response
).
to
have_gitlab_http_status
(
:created
)
expect
(
json_response
[
'name'
]).
to
eq
(
'Foo'
)
expect
(
json_response
[
'name'
]).
to
eq
(
valid_new_label_title
)
expect
(
json_response
[
'color'
]).
to
eq
(
'#FFAABB'
)
expect
(
json_response
[
'description'
]).
to
eq
(
'test'
)
end
...
...
@@ -131,12 +137,12 @@ RSpec.describe API::GroupLabels do
it
'returns created label when only required params are given'
do
post
api
(
"/groups/
#{
group
.
id
}
/labels"
,
user
),
params:
{
name:
'Foo & Bar'
,
name:
valid_new_label_title
,
color:
'#FFAABB'
}
expect
(
response
).
to
have_gitlab_http_status
(
:created
)
expect
(
json_response
[
'name'
]).
to
eq
(
'Foo & Bar'
)
expect
(
json_response
[
'name'
]).
to
eq
(
valid_new_label_title
)
expect
(
json_response
[
'color'
]).
to
eq
(
'#FFAABB'
)
expect
(
json_response
[
'description'
]).
to
be_nil
end
...
...
@@ -204,7 +210,7 @@ RSpec.describe API::GroupLabels do
describe
'DELETE /groups/:id/labels/:label_id'
do
it
'returns 204 for existing label'
do
delete
api
(
"/groups/
#{
group
.
id
}
/labels/
#{
group_label1
.
name
}
"
,
user
)
delete
api
(
"/groups/
#{
group
.
id
}
/labels/
#{
valid_group_label_title_1_esc
}
"
,
user
)
expect
(
response
).
to
have_gitlab_http_status
(
:no_content
)
end
...
...
@@ -228,7 +234,7 @@ RSpec.describe API::GroupLabels do
end
it_behaves_like
'412 response'
do
let
(
:request
)
{
api
(
"/groups/
#{
group
.
id
}
/labels/
#{
group_label1
.
name
}
"
,
user
)
}
let
(
:request
)
{
api
(
"/groups/
#{
group
.
id
}
/labels/
#{
valid_group_label_title_1_esc
}
"
,
user
)
}
end
end
...
...
@@ -237,13 +243,13 @@ RSpec.describe API::GroupLabels do
put
api
(
"/groups/
#{
group
.
id
}
/labels"
,
user
),
params:
{
name:
group_label1
.
name
,
new_name:
'New Label'
,
new_name:
valid_new_label_title
,
color:
'#FFFFFF'
,
description:
'test'
}
expect
(
response
).
to
have_gitlab_http_status
(
:ok
)
expect
(
json_response
[
'name'
]).
to
eq
(
'New Label'
)
expect
(
json_response
[
'name'
]).
to
eq
(
valid_new_label_title
)
expect
(
json_response
[
'color'
]).
to
eq
(
'#FFFFFF'
)
expect
(
json_response
[
'description'
]).
to
eq
(
'test'
)
end
...
...
@@ -255,11 +261,11 @@ RSpec.describe API::GroupLabels do
put
api
(
"/groups/
#{
subgroup
.
id
}
/labels"
,
user
),
params:
{
name:
subgroup_label
.
name
,
new_name:
'New Label'
new_name:
valid_new_label_title
}
expect
(
response
).
to
have_gitlab_http_status
(
:ok
)
expect
(
subgroup
.
labels
[
0
].
name
).
to
eq
(
'New Label'
)
expect
(
subgroup
.
labels
[
0
].
name
).
to
eq
(
valid_new_label_title
)
expect
(
group_label1
.
name
).
to
eq
(
group_label1
.
title
)
end
...
...
@@ -267,7 +273,7 @@ RSpec.describe API::GroupLabels do
put
api
(
"/groups/
#{
group
.
id
}
/labels"
,
user
),
params:
{
name:
'not_exists'
,
new_name:
'label3'
new_name:
valid_new_label_title
}
expect
(
response
).
to
have_gitlab_http_status
(
:not_found
)
...
...
@@ -291,15 +297,15 @@ RSpec.describe API::GroupLabels do
describe
'PUT /groups/:id/labels/:label_id'
do
it
'returns 200 if name and colors and description are changed'
do
put
api
(
"/groups/
#{
group
.
id
}
/labels/
#{
group_label1
.
name
}
"
,
user
),
put
api
(
"/groups/
#{
group
.
id
}
/labels/
#{
valid_group_label_title_1_esc
}
"
,
user
),
params:
{
new_name:
'New Label'
,
new_name:
valid_new_label_title
,
color:
'#FFFFFF'
,
description:
'test'
}
expect
(
response
).
to
have_gitlab_http_status
(
:ok
)
expect
(
json_response
[
'name'
]).
to
eq
(
'New Label'
)
expect
(
json_response
[
'name'
]).
to
eq
(
valid_new_label_title
)
expect
(
json_response
[
'color'
]).
to
eq
(
'#FFFFFF'
)
expect
(
json_response
[
'description'
]).
to
eq
(
'test'
)
end
...
...
@@ -310,25 +316,25 @@ RSpec.describe API::GroupLabels do
put
api
(
"/groups/
#{
subgroup
.
id
}
/labels/
#{
subgroup_label
.
name
}
"
,
user
),
params:
{
new_name:
'New Label'
new_name:
valid_new_label_title
}
expect
(
response
).
to
have_gitlab_http_status
(
:ok
)
expect
(
subgroup
.
labels
[
0
].
name
).
to
eq
(
'New Label'
)
expect
(
subgroup
.
labels
[
0
].
name
).
to
eq
(
valid_new_label_title
)
expect
(
group_label1
.
name
).
to
eq
(
group_label1
.
title
)
end
it
'returns 404 if label does not exist'
do
put
api
(
"/groups/
#{
group
.
id
}
/labels/not_exists"
,
user
),
params:
{
new_name:
'label3'
new_name:
valid_new_label_title
}
expect
(
response
).
to
have_gitlab_http_status
(
:not_found
)
end
it
'returns 400 if no new parameters given'
do
put
api
(
"/groups/
#{
group
.
id
}
/labels/
#{
group_label1
.
name
}
"
,
user
)
put
api
(
"/groups/
#{
group
.
id
}
/labels/
#{
valid_group_label_title_1_esc
}
"
,
user
)
expect
(
response
).
to
have_gitlab_http_status
(
:bad_request
)
expect
(
json_response
[
'error'
]).
to
eq
(
'new_name, color, description are missing, '
\
...
...
@@ -339,7 +345,7 @@ RSpec.describe API::GroupLabels do
describe
'POST /groups/:id/labels/:label_id/subscribe'
do
context
'when label_id is a label title'
do
it
'subscribes to the label'
do
post
api
(
"/groups/
#{
group
.
id
}
/labels/
#{
group_label1
.
title
}
/subscribe"
,
user
)
post
api
(
"/groups/
#{
group
.
id
}
/labels/
#{
valid_group_label_title_1_esc
}
/subscribe"
,
user
)
expect
(
response
).
to
have_gitlab_http_status
(
:created
)
expect
(
json_response
[
'name'
]).
to
eq
(
group_label1
.
title
)
...
...
@@ -385,7 +391,7 @@ RSpec.describe API::GroupLabels do
context
'when label_id is a label title'
do
it
'unsubscribes from the label'
do
post
api
(
"/groups/
#{
group
.
id
}
/labels/
#{
group_label1
.
title
}
/unsubscribe"
,
user
)
post
api
(
"/groups/
#{
group
.
id
}
/labels/
#{
valid_group_label_title_1_esc
}
/unsubscribe"
,
user
)
expect
(
response
).
to
have_gitlab_http_status
(
:created
)
expect
(
json_response
[
'name'
]).
to
eq
(
group_label1
.
title
)
...
...
spec/requests/api/labels_spec.rb
View file @
ae68c1a1
...
...
@@ -10,14 +10,19 @@ RSpec.describe API::Labels do
else
label_id
=
spec_params
[
:name
]
||
spec_params
[
:label_id
]
put
api
(
"/projects/
#{
project
.
id
}
/labels/
#{
label_id
}
"
,
user
),
put
api
(
"/projects/
#{
project
.
id
}
/labels/
#{
ERB
::
Util
.
url_encode
(
label_id
)
}
"
,
user
),
params:
request_params
.
merge
(
spec_params
.
except
(
:name
,
:id
))
end
end
let_it_be
(
:valid_label_title_1
)
{
'Label foo & bar:subgroup::v.1'
}
let_it_be
(
:valid_label_title_1_esc
)
{
ERB
::
Util
.
url_encode
(
valid_label_title_1
)
}
let_it_be
(
:valid_label_title_2
)
{
'Label bar & foo:subgroup::v.2'
}
let_it_be
(
:valid_group_label_title_1
)
{
'Group label foobar:sub::v.1'
}
let
(
:user
)
{
create
(
:user
)
}
let
(
:project
)
{
create
(
:project
,
creator_id:
user
.
id
,
namespace:
user
.
namespace
)
}
let!
(
:label1
)
{
create
(
:label
,
description:
'the best label
'
,
title:
'label1'
,
project:
project
)
}
let!
(
:label1
)
{
create
(
:label
,
description:
'the best label
v.1'
,
title:
valid_label_title_1
,
project:
project
)
}
let!
(
:priority_label
)
{
create
(
:label
,
title:
'bug'
,
project:
project
,
priority:
3
)
}
route_types
=
[
:deprecated
,
:rest
]
...
...
@@ -25,10 +30,10 @@ RSpec.describe API::Labels do
shared_examples
'label update API'
do
route_types
.
each
do
|
route_type
|
it
"returns 200 if name is changed (
#{
route_type
}
route)"
do
put_labels_api
(
route_type
,
user
,
spec_params
,
new_name:
'New Label'
)
put_labels_api
(
route_type
,
user
,
spec_params
,
new_name:
valid_label_title_2
)
expect
(
response
).
to
have_gitlab_http_status
(
:ok
)
expect
(
json_response
[
'name'
]).
to
eq
(
'New Label'
)
expect
(
json_response
[
'name'
]).
to
eq
(
valid_label_title_2
)
expect
(
json_response
[
'color'
]).
to
eq
(
label1
.
color
)
end
...
...
@@ -77,10 +82,10 @@ RSpec.describe API::Labels do
end
it
"returns 200 if name and colors and description are changed (
#{
route_type
}
route)"
do
put_labels_api
(
route_type
,
user
,
spec_params
,
new_name:
'New Label'
,
color:
'#FFFFFF'
,
description:
'test'
)
put_labels_api
(
route_type
,
user
,
spec_params
,
new_name:
valid_label_title_2
,
color:
'#FFFFFF'
,
description:
'test'
)
expect
(
response
).
to
have_gitlab_http_status
(
:ok
)
expect
(
json_response
[
'name'
]).
to
eq
(
'New Label'
)
expect
(
json_response
[
'name'
]).
to
eq
(
valid_label_title_2
)
expect
(
json_response
[
'color'
]).
to
eq
(
'#FFFFFF'
)
expect
(
json_response
[
'description'
]).
to
eq
(
'test'
)
end
...
...
@@ -141,7 +146,7 @@ RSpec.describe API::Labels do
priority:
nil
}.
merge
(
spec_params
.
except
(
:name
,
:id
))
put
api
(
"/projects/
#{
project
.
id
}
/labels/
#{
label_id
}
"
,
user
),
put
api
(
"/projects/
#{
project
.
id
}
/labels/
#{
ERB
::
Util
.
url_encode
(
label_id
)
}
"
,
user
),
params:
request_params
expect
(
response
).
to
have_gitlab_http_status
(
:ok
)
...
...
@@ -167,7 +172,7 @@ RSpec.describe API::Labels do
it
'returns 204 for existing label (rest route)'
do
label_id
=
spec_params
[
:name
]
||
spec_params
[
:label_id
]
delete
api
(
"/projects/
#{
project
.
id
}
/labels/
#{
label_id
}
"
,
user
),
params:
spec_params
.
except
(
:name
,
:label_id
)
delete
api
(
"/projects/
#{
project
.
id
}
/labels/
#{
ERB
::
Util
.
url_encode
(
label_id
)
}
"
,
user
),
params:
spec_params
.
except
(
:name
,
:label_id
)
expect
(
response
).
to
have_gitlab_http_status
(
:no_content
)
end
...
...
@@ -179,7 +184,7 @@ RSpec.describe API::Labels do
describe
'GET /projects/:id/labels'
do
let_it_be
(
:group
)
{
create
(
:group
)
}
let_it_be
(
:group_label
)
{
create
(
:group_label
,
title:
'feature label'
,
group:
group
)
}
let_it_be
(
:group_label
)
{
create
(
:group_label
,
title:
valid_group_label_title_1
,
group:
group
)
}
before
do
project
.
update!
(
group:
group
)
...
...
@@ -219,7 +224,7 @@ RSpec.describe API::Labels do
'closed_issues_count'
=>
1
,
'open_merge_requests_count'
=>
0
,
'name'
=>
label1
.
name
,
'description'
=>
'the best label'
,
'description'
=>
label1
.
description
,
'color'
=>
a_string_matching
(
/^#\h{6}$/
),
'text_color'
=>
a_string_matching
(
/^#\h{6}$/
),
'priority'
=>
nil
,
...
...
@@ -293,14 +298,14 @@ RSpec.describe API::Labels do
it
'returns created label when all params'
do
post
api
(
"/projects/
#{
project
.
id
}
/labels"
,
user
),
params:
{
name:
'Foo'
,
name:
valid_label_title_2
,
color:
'#FFAABB'
,
description:
'test'
,
priority:
2
}
expect
(
response
).
to
have_gitlab_http_status
(
:created
)
expect
(
json_response
[
'name'
]).
to
eq
(
'Foo'
)
expect
(
json_response
[
'name'
]).
to
eq
(
valid_label_title_2
)
expect
(
json_response
[
'color'
]).
to
eq
(
'#FFAABB'
)
expect
(
json_response
[
'description'
]).
to
eq
(
'test'
)
expect
(
json_response
[
'priority'
]).
to
eq
(
2
)
...
...
@@ -309,12 +314,12 @@ RSpec.describe API::Labels do
it
'returns created label when only required params'
do
post
api
(
"/projects/
#{
project
.
id
}
/labels"
,
user
),
params:
{
name:
'Foo & Bar'
,
name:
valid_label_title_2
,
color:
'#FFAABB'
}
expect
(
response
).
to
have_gitlab_http_status
(
:created
)
expect
(
json_response
[
'name'
]).
to
eq
(
'Foo & Bar'
)
expect
(
json_response
[
'name'
]).
to
eq
(
valid_label_title_2
)
expect
(
json_response
[
'color'
]).
to
eq
(
'#FFAABB'
)
expect
(
json_response
[
'description'
]).
to
be_nil
expect
(
json_response
[
'priority'
]).
to
be_nil
...
...
@@ -323,13 +328,13 @@ RSpec.describe API::Labels do
it
'creates a prioritized label'
do
post
api
(
"/projects/
#{
project
.
id
}
/labels"
,
user
),
params:
{
name:
'Foo & Bar'
,
name:
valid_label_title_2
,
color:
'#FFAABB'
,
priority:
3
}
expect
(
response
).
to
have_gitlab_http_status
(
:created
)
expect
(
json_response
[
'name'
]).
to
eq
(
'Foo & Bar'
)
expect
(
json_response
[
'name'
]).
to
eq
(
valid_label_title_2
)
expect
(
json_response
[
'color'
]).
to
eq
(
'#FFAABB'
)
expect
(
json_response
[
'description'
]).
to
be_nil
expect
(
json_response
[
'priority'
]).
to
eq
(
3
)
...
...
@@ -348,7 +353,7 @@ RSpec.describe API::Labels do
it
'returns 400 for invalid color'
do
post
api
(
"/projects/
#{
project
.
id
}
/labels"
,
user
),
params:
{
name:
'Foo'
,
name:
valid_label_title_2
,
color:
'#FFAA'
}
expect
(
response
).
to
have_gitlab_http_status
(
:bad_request
)
...
...
@@ -358,7 +363,7 @@ RSpec.describe API::Labels do
it
'returns 400 for too long color code'
do
post
api
(
"/projects/
#{
project
.
id
}
/labels"
,
user
),
params:
{
name:
'Foo'
,
name:
valid_label_title_2
,
color:
'#FFAAFFFF'
}
expect
(
response
).
to
have_gitlab_http_status
(
:bad_request
)
...
...
@@ -393,7 +398,7 @@ RSpec.describe API::Labels do
it
'returns 400 for invalid priority'
do
post
api
(
"/projects/
#{
project
.
id
}
/labels"
,
user
),
params:
{
name:
'Foo'
,
name:
valid_label_title_2
,
color:
'#FFAAFFFF'
,
priority:
'foo'
}
...
...
@@ -404,7 +409,7 @@ RSpec.describe API::Labels do
it
'returns 409 if label already exists in project'
do
post
api
(
"/projects/
#{
project
.
id
}
/labels"
,
user
),
params:
{
name:
'label1'
,
name:
valid_label_title_1
,
color:
'#FFAABB'
}
expect
(
response
).
to
have_gitlab_http_status
(
:conflict
)
...
...
@@ -414,7 +419,7 @@ RSpec.describe API::Labels do
describe
'DELETE /projects/:id/labels'
do
it_behaves_like
'label delete API'
do
let
(
:spec_params
)
{
{
name:
'label1'
}
}
let
(
:spec_params
)
{
{
name:
valid_label_title_1
}
}
end
it_behaves_like
'label delete API'
do
...
...
@@ -422,7 +427,7 @@ RSpec.describe API::Labels do
end
it
'returns 404 for non existing label'
do
delete
api
(
"/projects/
#{
project
.
id
}
/labels"
,
user
),
params:
{
name:
'
label2
'
}
delete
api
(
"/projects/
#{
project
.
id
}
/labels"
,
user
),
params:
{
name:
'
unknown
'
}
expect
(
response
).
to
have_gitlab_http_status
(
:not_found
)
expect
(
json_response
[
'message'
]).
to
eq
(
'404 Label Not Found'
)
...
...
@@ -446,14 +451,14 @@ RSpec.describe API::Labels do
it_behaves_like
'412 response'
do
let
(
:request
)
{
api
(
"/projects/
#{
project
.
id
}
/labels"
,
user
)
}
let
(
:params
)
{
{
name:
'label1'
}
}
let
(
:params
)
{
{
name:
valid_label_title_1
}
}
end
end
describe
'PUT /projects/:id/labels'
do
context
'when using name'
do
it_behaves_like
'label update API'
do
let
(
:spec_params
)
{
{
name:
'label1'
}
}
let
(
:spec_params
)
{
{
name:
valid_label_title_1
}
}
let
(
:expected_response_label_id
)
{
label1
.
id
}
end
end
...
...
@@ -468,7 +473,7 @@ RSpec.describe API::Labels do
it
'returns 404 if label does not exist'
do
put
api
(
"/projects/
#{
project
.
id
}
/labels"
,
user
),
params:
{
name:
'label2'
,
name:
valid_label_title_2
,
new_name:
'label3'
}
...
...
@@ -571,7 +576,7 @@ RSpec.describe API::Labels do
describe
"POST /projects/:id/labels/:label_id/subscribe"
do
context
"when label_id is a label title"
do
it
"subscribes to the label"
do
post
api
(
"/projects/
#{
project
.
id
}
/labels/
#{
label1
.
title
}
/subscribe"
,
user
)
post
api
(
"/projects/
#{
project
.
id
}
/labels/
#{
valid_label_title_1_esc
}
/subscribe"
,
user
)
expect
(
response
).
to
have_gitlab_http_status
(
:created
)
expect
(
json_response
[
"name"
]).
to
eq
(
label1
.
title
)
...
...
@@ -617,7 +622,7 @@ RSpec.describe API::Labels do
context
"when label_id is a label title"
do
it
"unsubscribes from the label"
do
post
api
(
"/projects/
#{
project
.
id
}
/labels/
#{
label1
.
title
}
/unsubscribe"
,
user
)
post
api
(
"/projects/
#{
project
.
id
}
/labels/
#{
valid_label_title_1_esc
}
/unsubscribe"
,
user
)
expect
(
response
).
to
have_gitlab_http_status
(
:created
)
expect
(
json_response
[
"name"
]).
to
eq
(
label1
.
title
)
...
...
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