Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mastodon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pierre Boudes
mastodon
Commits
413e700f
Commit
413e700f
authored
8 years ago
by
Eugen Rochko
Browse files
Options
Downloads
Patches
Plain Diff
Enhancing test suite but I think the problem might have been caching setting
parent
b5ebf994
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
config/environments/production.rb
+1
-1
1 addition, 1 deletion
config/environments/production.rb
spec/controllers/api/statuses_controller_spec.rb
+68
-5
68 additions, 5 deletions
spec/controllers/api/statuses_controller_spec.rb
with
69 additions
and
6 deletions
config/environments/production.rb
+
1
−
1
View file @
413e700f
...
...
@@ -12,7 +12,7 @@ Rails.application.configure do
# Full error reports are disabled and caching is turned on.
config
.
consider_all_requests_local
=
false
config
.
action_controller
.
perform_caching
=
tru
e
config
.
action_controller
.
perform_caching
=
fals
e
# Disable serving static files from the `/public` folder by default since
# Apache or NGINX already handles this.
...
...
This diff is collapsed.
Click to expand it.
spec/controllers/api/statuses_controller_spec.rb
+
68
−
5
View file @
413e700f
require
'rails_helper'
RSpec
.
describe
Api
::
StatusesController
,
type: :controller
do
render_views
let
(
:user
)
{
Fabricate
(
:user
,
account:
Fabricate
(
:account
,
username:
'alice'
))
}
let
(
:token
)
{
double
acceptable?:
true
,
resource_owner_id:
user
.
id
}
before
do
stub_request
(
:post
,
"https://pubsubhubbub.superfeedr.com/"
).
to_return
(
:status
=>
200
,
:body
=>
""
,
:headers
=>
{})
allow
(
controller
).
to
receive
(
:doorkeeper_token
)
{
token
}
end
...
...
@@ -18,22 +21,82 @@ RSpec.describe Api::StatusesController, type: :controller do
end
describe
'GET #home'
do
it
'returns http success'
it
'returns http success'
do
get
:home
expect
(
response
).
to
have_http_status
(
:success
)
end
end
describe
'GET #mentions'
do
it
'returns http success'
it
'returns http success'
do
get
:mentions
expect
(
response
).
to
have_http_status
(
:success
)
end
end
describe
'POST #create'
do
it
'returns http success'
before
do
post
:create
,
params:
{
status:
'Hello world'
}
end
it
'returns http success'
do
expect
(
response
).
to
have_http_status
(
:success
)
end
end
describe
'POST #reblog'
do
it
'returns http success'
let
(
:status
)
{
Fabricate
(
:status
,
account:
user
.
account
)
}
before
do
post
:reblog
,
params:
{
id:
status
.
id
}
end
it
'returns http success'
do
expect
(
response
).
to
have_http_status
(
:success
)
end
it
'updates the reblogs count'
do
expect
(
status
.
reblogs_count
).
to
eq
1
end
it
'updates the reblogged attribute'
do
expect
(
user
.
account
.
reblogged?
(
status
)).
to
be
true
end
it
'return json with updated attributes'
do
hash_body
=
JSON
.
parse
(
response
.
body
).
with_indifferent_access
expect
(
hash_body
[
:reblog
][
:id
]).
to
eq
status
.
id
expect
(
hash_body
[
:reblog
][
:reblogs_count
]).
to
eq
1
expect
(
hash_body
[
:reblog
][
:reblogged
]).
to
be
true
end
end
describe
'POST #favourite'
do
it
'returns http success'
let
(
:status
)
{
Fabricate
(
:status
,
account:
user
.
account
)
}
before
do
post
:favourite
,
params:
{
id:
status
.
id
}
end
it
'returns http success'
do
expect
(
response
).
to
have_http_status
(
:success
)
end
it
'updates the favourites count'
do
expect
(
status
.
favourites_count
).
to
eq
1
end
it
'updates the favourited attribute'
do
expect
(
user
.
account
.
favourited?
(
status
)).
to
be
true
end
it
'return json with updated attributes'
do
hash_body
=
JSON
.
parse
(
response
.
body
).
with_indifferent_access
expect
(
hash_body
[
:id
]).
to
eq
status
.
id
expect
(
hash_body
[
:favourites_count
]).
to
eq
1
expect
(
hash_body
[
:favourited
]).
to
be
true
end
end
end
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment