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
0a0a1f14
Unverified
Commit
0a0a1f14
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/tags` (#25439)
parent
64f7a116
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.rubocop_todo.yml
+0
-2
0 additions, 2 deletions
.rubocop_todo.yml
spec/controllers/api/v1/tags_controller_spec.rb
+0
-88
0 additions, 88 deletions
spec/controllers/api/v1/tags_controller_spec.rb
spec/requests/api/v1/tags_spec.rb
+169
-0
169 additions, 0 deletions
spec/requests/api/v1/tags_spec.rb
with
169 additions
and
90 deletions
.rubocop_todo.yml
+
0
−
2
View file @
0a0a1f14
...
...
@@ -316,7 +316,6 @@ RSpec/LetSetup:
-
'
spec/controllers/api/v1/admin/accounts_controller_spec.rb'
-
'
spec/controllers/api/v1/filters_controller_spec.rb'
-
'
spec/controllers/api/v1/followed_tags_controller_spec.rb'
-
'
spec/controllers/api/v1/tags_controller_spec.rb'
-
'
spec/controllers/api/v2/admin/accounts_controller_spec.rb'
-
'
spec/controllers/api/v2/filters/keywords_controller_spec.rb'
-
'
spec/controllers/api/v2/filters/statuses_controller_spec.rb'
...
...
@@ -756,7 +755,6 @@ Rails/WhereExists:
-
'
app/workers/move_worker.rb'
-
'
db/migrate/20190529143559_preserve_old_layout_for_existing_users.rb'
-
'
lib/tasks/tests.rake'
-
'
spec/controllers/api/v1/tags_controller_spec.rb'
-
'
spec/models/account_spec.rb'
-
'
spec/services/activitypub/process_collection_service_spec.rb'
-
'
spec/services/purge_domain_service_spec.rb'
...
...
This diff is collapsed.
Click to expand it.
spec/controllers/api/v1/tags_controller_spec.rb
deleted
100644 → 0
+
0
−
88
View file @
64f7a116
# frozen_string_literal: true
require
'rails_helper'
RSpec
.
describe
Api
::
V1
::
TagsController
do
render_views
let
(
:user
)
{
Fabricate
(
:user
)
}
let
(
:scopes
)
{
'write:follows'
}
let
(
:token
)
{
Fabricate
(
:accessible_access_token
,
resource_owner_id:
user
.
id
,
scopes:
scopes
)
}
before
{
allow
(
controller
).
to
receive
(
:doorkeeper_token
)
{
token
}
}
describe
'GET #show'
do
before
do
get
:show
,
params:
{
id:
name
}
end
context
'with existing tag'
do
let!
(
:tag
)
{
Fabricate
(
:tag
)
}
let
(
:name
)
{
tag
.
name
}
it
'returns http success'
do
expect
(
response
).
to
have_http_status
(
:success
)
end
end
context
'with non-existing tag'
do
let
(
:name
)
{
'hoge'
}
it
'returns http success'
do
expect
(
response
).
to
have_http_status
(
:success
)
end
end
end
describe
'POST #follow'
do
let!
(
:unrelated_tag
)
{
Fabricate
(
:tag
)
}
before
do
TagFollow
.
create!
(
account:
user
.
account
,
tag:
unrelated_tag
)
post
:follow
,
params:
{
id:
name
}
end
context
'with existing tag'
do
let!
(
:tag
)
{
Fabricate
(
:tag
)
}
let
(
:name
)
{
tag
.
name
}
it
'returns http success'
do
expect
(
response
).
to
have_http_status
(
:success
)
end
it
'creates follow'
do
expect
(
TagFollow
.
where
(
tag:
tag
,
account:
user
.
account
).
exists?
).
to
be
true
end
end
context
'with non-existing tag'
do
let
(
:name
)
{
'hoge'
}
it
'returns http success'
do
expect
(
response
).
to
have_http_status
(
:success
)
end
it
'creates follow'
do
expect
(
TagFollow
.
where
(
tag:
Tag
.
find_by!
(
name:
name
),
account:
user
.
account
).
exists?
).
to
be
true
end
end
end
describe
'POST #unfollow'
do
let!
(
:tag
)
{
Fabricate
(
:tag
,
name:
'foo'
)
}
let!
(
:tag_follow
)
{
Fabricate
(
:tag_follow
,
account:
user
.
account
,
tag:
tag
)
}
before
do
post
:unfollow
,
params:
{
id:
tag
.
name
}
end
it
'returns http success'
do
expect
(
response
).
to
have_http_status
(
:success
)
end
it
'removes the follow'
do
expect
(
TagFollow
.
where
(
tag:
tag
,
account:
user
.
account
).
exists?
).
to
be
false
end
end
end
This diff is collapsed.
Click to expand it.
spec/requests/api/v1/tags_spec.rb
0 → 100644
+
169
−
0
View file @
0a0a1f14
# frozen_string_literal: true
require
'rails_helper'
RSpec
.
describe
'Tags'
do
let
(
:user
)
{
Fabricate
(
:user
)
}
let
(
:scopes
)
{
'write:follows'
}
let
(
:token
)
{
Fabricate
(
:accessible_access_token
,
resource_owner_id:
user
.
id
,
scopes:
scopes
)
}
let
(
:headers
)
{
{
'Authorization'
=>
"Bearer
#{
token
.
token
}
"
}
}
describe
'GET /api/v1/tags/:id'
do
subject
do
get
"/api/v1/tags/
#{
name
}
"
end
context
'when the tag exists'
do
let!
(
:tag
)
{
Fabricate
(
:tag
)
}
let
(
:name
)
{
tag
.
name
}
it
'returns http success'
do
subject
expect
(
response
).
to
have_http_status
(
200
)
end
it
'returns the tag'
do
subject
expect
(
body_as_json
[
:name
]).
to
eq
(
name
)
end
end
context
'when the tag does not exist'
do
let
(
:name
)
{
'hoge'
}
it
'returns http success'
do
subject
expect
(
response
).
to
have_http_status
(
200
)
end
end
context
'when the tag name is invalid'
do
let
(
:name
)
{
'tag-name'
}
it
'returns http not found'
do
subject
expect
(
response
).
to
have_http_status
(
404
)
end
end
end
describe
'POST /api/v1/tags/:id/follow'
do
subject
do
post
"/api/v1/tags/
#{
name
}
/follow"
,
headers:
headers
end
let!
(
:tag
)
{
Fabricate
(
:tag
)
}
let
(
:name
)
{
tag
.
name
}
it_behaves_like
'forbidden for wrong scope'
,
'read read:follows'
context
'when the tag exists'
do
it
'returns http success'
do
subject
expect
(
response
).
to
have_http_status
(
:success
)
end
it
'creates follow'
do
subject
expect
(
TagFollow
.
where
(
tag:
tag
,
account:
user
.
account
)).
to
exist
end
end
context
'when the tag does not exist'
do
let
(
:name
)
{
'hoge'
}
it
'returns http success'
do
subject
expect
(
response
).
to
have_http_status
(
200
)
end
it
'creates a new tag with the specified name'
do
subject
expect
(
Tag
.
where
(
name:
name
)).
to
exist
end
it
'creates follow'
do
subject
expect
(
TagFollow
.
where
(
tag:
Tag
.
find_by
(
name:
name
),
account:
user
.
account
)).
to
exist
end
end
context
'when the tag name is invalid'
do
let
(
:name
)
{
'tag-name'
}
it
'returns http not found'
do
subject
expect
(
response
).
to
have_http_status
(
404
)
end
end
context
'when the Authorization header is missing'
do
let
(
:headers
)
{
{}
}
let
(
:name
)
{
'unauthorized'
}
it
'returns http unauthorized'
do
subject
expect
(
response
).
to
have_http_status
(
401
)
end
end
end
describe
'POST #unfollow'
do
subject
do
post
"/api/v1/tags/
#{
name
}
/unfollow"
,
headers:
headers
end
let
(
:name
)
{
tag
.
name
}
let!
(
:tag
)
{
Fabricate
(
:tag
,
name:
'foo'
)
}
before
do
Fabricate
(
:tag_follow
,
account:
user
.
account
,
tag:
tag
)
end
it_behaves_like
'forbidden for wrong scope'
,
'read read:follows'
it
'returns http success'
do
subject
expect
(
response
).
to
have_http_status
(
200
)
end
it
'removes the follow'
do
subject
expect
(
TagFollow
.
where
(
tag:
tag
,
account:
user
.
account
)).
to_not
exist
end
context
'when the tag name is invalid'
do
let
(
:name
)
{
'tag-name'
}
it
'returns http not found'
do
subject
expect
(
response
).
to
have_http_status
(
404
)
end
end
context
'when the Authorization header is missing'
do
let
(
:headers
)
{
{}
}
let
(
:name
)
{
'unauthorized'
}
it
'returns http unauthorized'
do
subject
expect
(
response
).
to
have_http_status
(
401
)
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