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
0
Merge Requests
0
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
Jérome Perrin
gitlab-ce
Commits
3ca064ee
Commit
3ca064ee
authored
Oct 13, 2016
by
Semyon Pupkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing tests for download snippet
ref:
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6720
parent
21e3712a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
83 additions
and
73 deletions
+83
-73
spec/controllers/snippets_controller_spec.rb
spec/controllers/snippets_controller_spec.rb
+83
-73
No files found.
spec/controllers/snippets_controller_spec.rb
View file @
3ca064ee
...
...
@@ -116,9 +116,8 @@ describe SnippetsController do
end
end
describe
'GET #raw'
do
let
(
:user
)
{
create
(
:user
)
}
%w(raw download)
.
each
do
|
action
|
describe
"GET
#{
action
}
"
do
context
'when the personal snippet is private'
do
let
(
:personal_snippet
)
{
create
(
:personal_snippet
,
:private
,
author:
user
)
}
...
...
@@ -132,25 +131,35 @@ describe SnippetsController do
let
(
:other_personal_snippet
)
{
create
(
:personal_snippet
,
:private
,
author:
other_author
)
}
it
'responds with status 404'
do
get
:raw
,
id:
other_personal_snippet
.
to_param
get
action
,
id:
other_personal_snippet
.
to_param
expect
(
response
).
to
have_http_status
(
404
)
end
end
context
'when signed in user is the author'
do
it
'renders the raw snippet'
do
get
:raw
,
id:
personal_snippet
.
to_param
before
{
get
action
,
id:
personal_snippet
.
to_param
}
it
'responds with status 200'
do
expect
(
assigns
(
:snippet
)).
to
eq
(
personal_snippet
)
expect
(
response
).
to
have_http_status
(
200
)
end
it
'has expected headers'
do
expect
(
response
.
header
[
'Content-Type'
]).
to
eq
(
'text/plain; charset=utf-8'
)
if
action
==
:download
expect
(
response
.
header
[
'Content-Disposition'
]).
to
match
(
/attachment/
)
elsif
action
==
:raw
expect
(
response
.
header
[
'Content-Disposition'
]).
to
match
(
/inline/
)
end
end
end
end
context
'when not signed in'
do
it
'redirects to the sign in page'
do
get
:raw
,
id:
personal_snippet
.
to_param
get
action
,
id:
personal_snippet
.
to_param
expect
(
response
).
to
redirect_to
(
new_user_session_path
)
end
...
...
@@ -165,8 +174,8 @@ describe SnippetsController do
sign_in
(
user
)
end
it
'renders the raw snippet
'
do
get
:raw
,
id:
personal_snippet
.
to_param
it
'responds with status 200
'
do
get
action
,
id:
personal_snippet
.
to_param
expect
(
assigns
(
:snippet
)).
to
eq
(
personal_snippet
)
expect
(
response
).
to
have_http_status
(
200
)
...
...
@@ -175,7 +184,7 @@ describe SnippetsController do
context
'when not signed in'
do
it
'redirects to the sign in page'
do
get
:raw
,
id:
personal_snippet
.
to_param
get
action
,
id:
personal_snippet
.
to_param
expect
(
response
).
to
redirect_to
(
new_user_session_path
)
end
...
...
@@ -190,8 +199,8 @@ describe SnippetsController do
sign_in
(
user
)
end
it
'renders the raw snippet
'
do
get
:raw
,
id:
personal_snippet
.
to_param
it
'responds with status 200
'
do
get
action
,
id:
personal_snippet
.
to_param
expect
(
assigns
(
:snippet
)).
to
eq
(
personal_snippet
)
expect
(
response
).
to
have_http_status
(
200
)
...
...
@@ -199,8 +208,8 @@ describe SnippetsController do
end
context
'when not signed in'
do
it
'renders the raw snippet
'
do
get
:raw
,
id:
personal_snippet
.
to_param
it
'responds with status 200
'
do
get
action
,
id:
personal_snippet
.
to_param
expect
(
assigns
(
:snippet
)).
to
eq
(
personal_snippet
)
expect
(
response
).
to
have_http_status
(
200
)
...
...
@@ -215,7 +224,7 @@ describe SnippetsController do
end
it
'responds with status 404'
do
get
:raw
,
id:
'doesntexist'
get
action
,
id:
'doesntexist'
expect
(
response
).
to
have_http_status
(
404
)
end
...
...
@@ -223,13 +232,14 @@ describe SnippetsController do
context
'when not signed in'
do
it
'responds with status 404'
do
get
:raw
,
id:
'doesntexist'
get
action
,
id:
'doesntexist'
expect
(
response
).
to
have_http_status
(
404
)
end
end
end
end
end
context
'award emoji on snippets'
do
let
(
:personal_snippet
)
{
create
(
:personal_snippet
,
:public
,
author:
user
)
}
...
...
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