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
6fb4a756
Unverified
Commit
6fb4a756
authored
1 year ago
by
Daniel M Brasil
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Migrate to request specs in `/api/v1/statuses/:status_id/bookmark` (#25624)
parent
4859958a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
spec/controllers/api/v1/statuses/bookmarks_controller_spec.rb
+0
-113
0 additions, 113 deletions
.../controllers/api/v1/statuses/bookmarks_controller_spec.rb
spec/requests/api/v1/statuses/bookmarks_spec.rb
+155
-0
155 additions, 0 deletions
spec/requests/api/v1/statuses/bookmarks_spec.rb
with
155 additions
and
113 deletions
spec/controllers/api/v1/statuses/bookmarks_controller_spec.rb
deleted
100644 → 0
+
0
−
113
View file @
4859958a
# frozen_string_literal: true
require
'rails_helper'
describe
Api
::
V1
::
Statuses
::
BookmarksController
do
render_views
let
(
:user
)
{
Fabricate
(
:user
)
}
let
(
:app
)
{
Fabricate
(
:application
,
name:
'Test app'
,
website:
'http://testapp.com'
)
}
let
(
:token
)
{
Fabricate
(
:accessible_access_token
,
resource_owner_id:
user
.
id
,
scopes:
'write:bookmarks'
,
application:
app
)
}
context
'with an oauth token'
do
before
do
allow
(
controller
).
to
receive
(
:doorkeeper_token
)
{
token
}
end
describe
'POST #create'
do
let
(
:status
)
{
Fabricate
(
:status
,
account:
user
.
account
)
}
before
do
post
:create
,
params:
{
status_id:
status
.
id
}
end
context
'with public status'
do
it
'returns http success'
do
expect
(
response
).
to
have_http_status
(
:success
)
end
it
'updates the bookmarked attribute'
do
expect
(
user
.
account
.
bookmarked?
(
status
)).
to
be
true
end
it
'returns json with updated attributes'
do
hash_body
=
body_as_json
expect
(
hash_body
[
:id
]).
to
eq
status
.
id
.
to_s
expect
(
hash_body
[
:bookmarked
]).
to
be
true
end
end
context
'with private status of not-followed account'
do
let
(
:status
)
{
Fabricate
(
:status
,
visibility: :private
)
}
it
'returns http not found'
do
expect
(
response
).
to
have_http_status
(
404
)
end
end
end
describe
'POST #destroy'
do
context
'with public status'
do
let
(
:status
)
{
Fabricate
(
:status
,
account:
user
.
account
)
}
before
do
Bookmark
.
find_or_create_by!
(
account:
user
.
account
,
status:
status
)
post
:destroy
,
params:
{
status_id:
status
.
id
}
end
it
'returns http success'
do
expect
(
response
).
to
have_http_status
(
:success
)
end
it
'updates the bookmarked attribute'
do
expect
(
user
.
account
.
bookmarked?
(
status
)).
to
be
false
end
it
'returns json with updated attributes'
do
hash_body
=
body_as_json
expect
(
hash_body
[
:id
]).
to
eq
status
.
id
.
to_s
expect
(
hash_body
[
:bookmarked
]).
to
be
false
end
end
context
'with public status when blocked by its author'
do
let
(
:status
)
{
Fabricate
(
:status
)
}
before
do
Bookmark
.
find_or_create_by!
(
account:
user
.
account
,
status:
status
)
status
.
account
.
block!
(
user
.
account
)
post
:destroy
,
params:
{
status_id:
status
.
id
}
end
it
'returns http success'
do
expect
(
response
).
to
have_http_status
(
200
)
end
it
'updates the bookmarked attribute'
do
expect
(
user
.
account
.
bookmarked?
(
status
)).
to
be
false
end
it
'returns json with updated attributes'
do
hash_body
=
body_as_json
expect
(
hash_body
[
:id
]).
to
eq
status
.
id
.
to_s
expect
(
hash_body
[
:bookmarked
]).
to
be
false
end
end
context
'with private status that was not bookmarked'
do
let
(
:status
)
{
Fabricate
(
:status
,
visibility: :private
)
}
before
do
post
:destroy
,
params:
{
status_id:
status
.
id
}
end
it
'returns http not found'
do
expect
(
response
).
to
have_http_status
(
404
)
end
end
end
end
end
This diff is collapsed.
Click to expand it.
spec/requests/api/v1/statuses/bookmarks_spec.rb
0 → 100644
+
155
−
0
View file @
6fb4a756
# frozen_string_literal: true
require
'rails_helper'
RSpec
.
describe
'Bookmarks'
do
let
(
:user
)
{
Fabricate
(
:user
)
}
let
(
:scopes
)
{
'write:bookmarks'
}
let
(
:token
)
{
Fabricate
(
:accessible_access_token
,
resource_owner_id:
user
.
id
,
scopes:
scopes
)
}
let
(
:headers
)
{
{
'Authorization'
=>
"Bearer
#{
token
.
token
}
"
}
}
describe
'POST /api/v1/statuses/:status_id/bookmark'
do
subject
do
post
"/api/v1/statuses/
#{
status
.
id
}
/bookmark"
,
headers:
headers
end
let
(
:status
)
{
Fabricate
(
:status
)
}
it_behaves_like
'forbidden for wrong scope'
,
'read'
context
'with public status'
do
it
'bookmarks the status successfully'
,
:aggregate_failures
do
subject
expect
(
response
).
to
have_http_status
(
200
)
expect
(
user
.
account
.
bookmarked?
(
status
)).
to
be
true
end
it
'returns json with updated attributes'
do
subject
expect
(
body_as_json
).
to
match
(
a_hash_including
(
id:
status
.
id
.
to_s
,
bookmarked:
true
)
)
end
end
context
'with private status of not-followed account'
do
let
(
:status
)
{
Fabricate
(
:status
,
visibility: :private
)
}
it
'returns http not found'
do
subject
expect
(
response
).
to
have_http_status
(
404
)
end
end
context
'with private status of followed account'
do
let
(
:status
)
{
Fabricate
(
:status
,
visibility: :private
)
}
before
do
user
.
account
.
follow!
(
status
.
account
)
end
it
'bookmarks the status successfully'
,
:aggregate_failures
do
subject
expect
(
response
).
to
have_http_status
(
200
)
expect
(
user
.
account
.
bookmarked?
(
status
)).
to
be
true
end
end
context
'when the status does not exist'
do
it
'returns http not found'
do
post
'/api/v1/statuses/-1/bookmark'
,
headers:
headers
expect
(
response
).
to
have_http_status
(
404
)
end
end
context
'without an authorization header'
do
let
(
:headers
)
{
{}
}
it
'returns http unauthorized'
do
subject
expect
(
response
).
to
have_http_status
(
401
)
end
end
end
describe
'POST /api/v1/statuses/:status_id/unbookmark'
do
subject
do
post
"/api/v1/statuses/
#{
status
.
id
}
/unbookmark"
,
headers:
headers
end
let
(
:status
)
{
Fabricate
(
:status
)
}
it_behaves_like
'forbidden for wrong scope'
,
'read'
context
'with public status'
do
context
'when the status was previously bookmarked'
do
before
do
Bookmark
.
find_or_create_by!
(
account:
user
.
account
,
status:
status
)
end
it
'unbookmarks the status successfully'
,
:aggregate_failures
do
subject
expect
(
response
).
to
have_http_status
(
200
)
expect
(
user
.
account
.
bookmarked?
(
status
)).
to
be
false
end
it
'returns json with updated attributes'
do
subject
expect
(
body_as_json
).
to
match
(
a_hash_including
(
id:
status
.
id
.
to_s
,
bookmarked:
false
)
)
end
end
context
'when the requesting user was blocked by the status author'
do
let
(
:status
)
{
Fabricate
(
:status
)
}
before
do
Bookmark
.
find_or_create_by!
(
account:
user
.
account
,
status:
status
)
status
.
account
.
block!
(
user
.
account
)
end
it
'unbookmarks the status successfully'
,
:aggregate_failures
do
subject
expect
(
response
).
to
have_http_status
(
200
)
expect
(
user
.
account
.
bookmarked?
(
status
)).
to
be
false
end
it
'returns json with updated attributes'
do
subject
expect
(
body_as_json
).
to
match
(
a_hash_including
(
id:
status
.
id
.
to_s
,
bookmarked:
false
)
)
end
end
context
'when the status is not bookmarked'
do
it
'returns http success'
do
subject
expect
(
response
).
to
have_http_status
(
200
)
end
end
end
context
'with private status that was not bookmarked'
do
let
(
:status
)
{
Fabricate
(
:status
,
visibility: :private
)
}
it
'returns http not found'
do
subject
expect
(
response
).
to
have_http_status
(
404
)
end
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