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
401a1b25
Commit
401a1b25
authored
May 19, 2020
by
Francisco Javier López
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add presence validation to content and title in snippet rest endpoints
parent
079c18c1
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
70 additions
and
29 deletions
+70
-29
changelogs/unreleased/fj-add-presence-validation-rest-snippet-endpoints.yml
...sed/fj-add-presence-validation-rest-snippet-endpoints.yml
+5
-0
lib/api/project_snippets.rb
lib/api/project_snippets.rb
+3
-3
lib/api/snippets.rb
lib/api/snippets.rb
+4
-4
spec/requests/api/project_snippets_spec.rb
spec/requests/api/project_snippets_spec.rb
+19
-2
spec/requests/api/snippets_spec.rb
spec/requests/api/snippets_spec.rb
+39
-20
No files found.
changelogs/unreleased/fj-add-presence-validation-rest-snippet-endpoints.yml
0 → 100644
View file @
401a1b25
---
title
:
Add presence validation to content and title in snippet rest endpoints
merge_request
:
32522
author
:
type
:
changed
lib/api/project_snippets.rb
View file @
401a1b25
...
...
@@ -55,9 +55,9 @@ module API
success
Entities
::
ProjectSnippet
end
params
do
requires
:title
,
type:
String
,
desc:
'The title of the snippet'
requires
:title
,
type:
String
,
allow_blank:
false
,
desc:
'The title of the snippet'
requires
:file_name
,
type:
String
,
desc:
'The file name of the snippet'
optional
:content
,
type:
String
,
allow_blank:
false
,
desc:
'The content of the snippet'
requires
:content
,
type:
String
,
allow_blank:
false
,
desc:
'The content of the snippet'
optional
:description
,
type:
String
,
desc:
'The description of a snippet'
requires
:visibility
,
type:
String
,
values:
Gitlab
::
VisibilityLevel
.
string_values
,
...
...
@@ -84,7 +84,7 @@ module API
end
params
do
requires
:snippet_id
,
type:
Integer
,
desc:
'The ID of a project snippet'
optional
:title
,
type:
String
,
desc:
'The title of the snippet'
optional
:title
,
type:
String
,
allow_blank:
false
,
desc:
'The title of the snippet'
optional
:file_name
,
type:
String
,
desc:
'The file name of the snippet'
optional
:content
,
type:
String
,
allow_blank:
false
,
desc:
'The content of the snippet'
optional
:description
,
type:
String
,
desc:
'The description of a snippet'
...
...
lib/api/snippets.rb
View file @
401a1b25
...
...
@@ -65,9 +65,9 @@ module API
success
Entities
::
PersonalSnippet
end
params
do
requires
:title
,
type:
String
,
desc:
'The title of a snippet'
requires
:title
,
type:
String
,
allow_blank:
false
,
desc:
'The title of a snippet'
requires
:file_name
,
type:
String
,
desc:
'The name of a snippet file'
requires
:content
,
type:
String
,
desc:
'The content of a snippet'
requires
:content
,
type:
String
,
allow_blank:
false
,
desc:
'The content of a snippet'
optional
:description
,
type:
String
,
desc:
'The description of a snippet'
optional
:visibility
,
type:
String
,
values:
Gitlab
::
VisibilityLevel
.
string_values
,
...
...
@@ -96,9 +96,9 @@ module API
end
params
do
requires
:id
,
type:
Integer
,
desc:
'The ID of a snippet'
optional
:title
,
type:
String
,
desc:
'The title of a snippet'
optional
:title
,
type:
String
,
allow_blank:
false
,
desc:
'The title of a snippet'
optional
:file_name
,
type:
String
,
desc:
'The name of a snippet file'
optional
:content
,
type:
String
,
desc:
'The content of a snippet'
optional
:content
,
type:
String
,
allow_blank:
false
,
desc:
'The content of a snippet'
optional
:description
,
type:
String
,
desc:
'The description of a snippet'
optional
:visibility
,
type:
String
,
values:
Gitlab
::
VisibilityLevel
.
string_values
,
...
...
spec/requests/api/project_snippets_spec.rb
View file @
401a1b25
...
...
@@ -216,12 +216,22 @@ describe API::ProjectSnippets do
expect
(
response
).
to
have_gitlab_http_status
(
:bad_request
)
end
it
'returns 400
for empty content field
'
do
it
'returns 400
if content is blank
'
do
params
[
:content
]
=
''
post
api
(
"/projects/
#{
project
.
id
}
/snippets/"
,
admin
),
params:
params
expect
(
response
).
to
have_gitlab_http_status
(
:bad_request
)
expect
(
json_response
[
'error'
]).
to
eq
'content is empty'
end
it
'returns 400 if title is blank'
do
params
[
:title
]
=
''
post
api
(
"/projects/
#{
project
.
id
}
/snippets/"
,
admin
),
params:
params
expect
(
response
).
to
have_gitlab_http_status
(
:bad_request
)
expect
(
json_response
[
'error'
]).
to
eq
'title is empty'
end
context
'when save fails because the repository could not be created'
do
...
...
@@ -323,12 +333,19 @@ describe API::ProjectSnippets do
expect
(
response
).
to
have_gitlab_http_status
(
:bad_request
)
end
it
'returns 400
for empty content field
'
do
it
'returns 400
if content is blank
'
do
update_snippet
(
params:
{
content:
''
})
expect
(
response
).
to
have_gitlab_http_status
(
:bad_request
)
end
it
'returns 400 if title is blank'
do
update_snippet
(
params:
{
title:
''
})
expect
(
response
).
to
have_gitlab_http_status
(
:bad_request
)
expect
(
json_response
[
'error'
]).
to
eq
'title is empty'
end
it_behaves_like
'update with repository actions'
do
let
(
:snippet_without_repo
)
{
create
(
:project_snippet
,
author:
admin
,
project:
project
,
visibility_level:
visibility_level
)
}
end
...
...
spec/requests/api/snippets_spec.rb
View file @
401a1b25
...
...
@@ -3,7 +3,7 @@
require
'spec_helper'
describe
API
::
Snippets
do
let
!
(
:user
)
{
create
(
:user
)
}
let
_it_be
(
:user
)
{
create
(
:user
)
}
describe
'GET /snippets/'
do
it
'returns snippets available'
do
...
...
@@ -195,7 +195,7 @@ describe API::Snippets do
end
describe
'POST /snippets/'
do
let
(
:params
)
do
let
(
:
base_
params
)
do
{
title:
'Test Title'
,
file_name:
'test.rb'
,
...
...
@@ -204,12 +204,14 @@ describe API::Snippets do
visibility:
'public'
}
end
let
(
:params
)
{
base_params
.
merge
(
extra_params
)
}
let
(
:extra_params
)
{
{}
}
subject
{
post
api
(
"/snippets/"
,
user
),
params:
params
}
shared_examples
'snippet creation'
do
let
(
:snippet
)
{
Snippet
.
find
(
json_response
[
"id"
])
}
subject
{
post
api
(
"/snippets/"
,
user
),
params:
params
}
it
'creates a new snippet'
do
expect
do
subject
...
...
@@ -253,7 +255,7 @@ describe API::Snippets do
let
(
:user
)
{
create
(
:user
,
:external
)
}
it
'does not create a new snippet'
do
post
api
(
"/snippets/"
,
user
),
params:
params
subject
expect
(
response
).
to
have_gitlab_http_status
(
:forbidden
)
end
...
...
@@ -262,17 +264,27 @@ describe API::Snippets do
it
'returns 400 for missing parameters'
do
params
.
delete
(
:title
)
post
api
(
"/snippets/"
,
user
),
params:
params
subject
expect
(
response
).
to
have_gitlab_http_status
(
:bad_request
)
end
it
'returns 400 for validation errors'
do
it
'returns 400 if content is blank'
do
params
[
:content
]
=
''
subject
expect
(
response
).
to
have_gitlab_http_status
(
:bad_request
)
expect
(
json_response
[
'error'
]).
to
eq
'content is empty'
end
it
'returns 400 if title is blank'
do
params
[
:title
]
=
''
post
api
(
"/snippets/"
,
user
),
params:
params
subject
expect
(
response
).
to
have_gitlab_http_status
(
:bad_request
)
expect
(
json_response
[
'error'
]).
to
eq
'title is empty'
end
context
'when save fails because the repository could not be created'
do
...
...
@@ -283,17 +295,13 @@ describe API::Snippets do
end
it
'returns 400'
do
post
api
(
"/snippets/"
,
user
),
params:
params
subject
expect
(
response
).
to
have_gitlab_http_status
(
:bad_request
)
end
end
context
'when the snippet is spam'
do
def
create_snippet
(
snippet_params
=
{})
post
api
(
'/snippets'
,
user
),
params:
params
.
merge
(
snippet_params
)
end
before
do
allow_next_instance_of
(
Spam
::
AkismetService
)
do
|
instance
|
allow
(
instance
).
to
receive
(
:spam?
).
and_return
(
true
)
...
...
@@ -301,23 +309,25 @@ describe API::Snippets do
end
context
'when the snippet is private'
do
let
(
:extra_params
)
{
{
visibility:
'private'
}
}
it
'creates the snippet'
do
expect
{
create_snippet
(
visibility:
'private'
)
}
.
to
change
{
Snippet
.
count
}.
by
(
1
)
expect
{
subject
}.
to
change
{
Snippet
.
count
}.
by
(
1
)
end
end
context
'when the snippet is public'
do
let
(
:extra_params
)
{
{
visibility:
'public'
}
}
it
'rejects the shippet'
do
expect
{
create_snippet
(
visibility:
'public'
)
}
.
not_to
change
{
Snippet
.
count
}
expect
{
subject
}.
not_to
change
{
Snippet
.
count
}
expect
(
response
).
to
have_gitlab_http_status
(
:bad_request
)
expect
(
json_response
[
'message'
]).
to
eq
({
"error"
=>
"Spam detected"
})
end
it
'creates a spam log'
do
expect
{
create_snippet
(
visibility:
'public'
)
}
expect
{
subject
}
.
to
log_spam
(
title:
'Test Title'
,
user_id:
user
.
id
,
noteable_type:
'PersonalSnippet'
)
end
end
...
...
@@ -325,8 +335,9 @@ describe API::Snippets do
end
describe
'PUT /snippets/:id'
do
let_it_be
(
:other_user
)
{
create
(
:user
)
}
let
(
:visibility_level
)
{
Snippet
::
PUBLIC
}
let
(
:other_user
)
{
create
(
:user
)
}
let
(
:snippet
)
do
create
(
:personal_snippet
,
:repository
,
author:
user
,
visibility_level:
visibility_level
)
end
...
...
@@ -378,10 +389,18 @@ describe API::Snippets do
expect
(
response
).
to
have_gitlab_http_status
(
:bad_request
)
end
it
'returns 400 for validation errors'
do
it
'returns 400 if content is blank'
do
update_snippet
(
params:
{
content:
''
})
expect
(
response
).
to
have_gitlab_http_status
(
:bad_request
)
expect
(
json_response
[
'error'
]).
to
eq
'content is empty'
end
it
'returns 400 if title is blank'
do
update_snippet
(
params:
{
title:
''
})
expect
(
response
).
to
have_gitlab_http_status
(
:bad_request
)
expect
(
json_response
[
'error'
]).
to
eq
'title is empty'
end
it_behaves_like
'update with repository actions'
do
...
...
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