forked from mastodon/mastodon
-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add unlisted-public tag/circle/list tests
- Loading branch information
Showing
7 changed files
with
360 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
92 changes: 92 additions & 0 deletions
92
spec/controllers/api/v1/circles/accounts_controller_spec.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'rails_helper' | ||
|
||
describe Api::V1::Circles::AccountsController do | ||
render_views | ||
|
||
let(:user) { Fabricate(:user) } | ||
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: scopes) } | ||
let(:circle) { Fabricate(:circle, account: user.account) } | ||
let(:follow) { Fabricate(:follow, target_account: user.account) } | ||
|
||
before do | ||
circle.accounts << follow.account | ||
allow(controller).to receive(:doorkeeper_token) { token } | ||
end | ||
|
||
describe 'GET #index' do | ||
let(:scopes) { 'read:lists' } | ||
|
||
it 'returns http success' do | ||
get :show, params: { circle_id: circle.id } | ||
|
||
expect(response).to have_http_status(200) | ||
end | ||
end | ||
|
||
describe 'POST #create' do | ||
let(:scopes) { 'write:lists' } | ||
let(:bob) { Fabricate(:account, username: 'bob') } | ||
|
||
context 'when the added account is followed' do | ||
before do | ||
bob.follow!(user.account) | ||
post :create, params: { circle_id: circle.id, account_ids: [bob.id] } | ||
end | ||
|
||
it 'returns http success' do | ||
expect(response).to have_http_status(200) | ||
end | ||
|
||
it 'adds account to the circle' do | ||
expect(circle.accounts.include?(bob)).to be true | ||
end | ||
end | ||
|
||
context 'when the added account has been sent a follow request' do | ||
before do | ||
bob.follow_requests.create!(target_account: user.account) | ||
post :create, params: { circle_id: circle.id, account_ids: [bob.id] } | ||
end | ||
|
||
it 'returns http success' do | ||
expect(response).to have_http_status(404) | ||
end | ||
|
||
it 'adds account to the circle' do | ||
expect(circle.accounts.include?(bob)).to be false | ||
end | ||
end | ||
|
||
context 'when the added account is not followed' do | ||
before do | ||
post :create, params: { circle_id: circle.id, account_ids: [bob.id] } | ||
end | ||
|
||
it 'returns http not found' do | ||
expect(response).to have_http_status(404) | ||
end | ||
|
||
it 'does not add the account to the circle' do | ||
expect(circle.accounts.include?(bob)).to be false | ||
end | ||
end | ||
end | ||
|
||
describe 'DELETE #destroy' do | ||
let(:scopes) { 'write:lists' } | ||
|
||
before do | ||
delete :destroy, params: { circle_id: circle.id, account_ids: [circle.accounts.first.id] } | ||
end | ||
|
||
it 'returns http success' do | ||
expect(response).to have_http_status(200) | ||
end | ||
|
||
it 'removes account from the circle' do | ||
expect(circle.accounts.count).to eq 0 | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'rails_helper' | ||
|
||
describe Api::V1::CirclesController do | ||
render_views | ||
|
||
let(:user) { Fabricate(:user) } | ||
let(:circle) { Fabricate(:circle, account: user.account) } | ||
|
||
before do | ||
allow(controller).to receive(:doorkeeper_token) { token } | ||
end | ||
|
||
context 'with a user context' do | ||
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read:lists') } | ||
|
||
describe 'GET #show' do | ||
it 'returns http success' do | ||
get :show, params: { id: circle.id } | ||
expect(response).to have_http_status(200) | ||
end | ||
end | ||
end | ||
|
||
context 'with the wrong user context' do | ||
let(:other_user) { Fabricate(:user) } | ||
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: other_user.id, scopes: 'read') } | ||
|
||
describe 'GET #show' do | ||
it 'returns http not found' do | ||
get :show, params: { id: circle.id } | ||
expect(response).to have_http_status(404) | ||
end | ||
end | ||
end | ||
|
||
context 'without a user context' do | ||
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: nil, scopes: 'read') } | ||
|
||
describe 'GET #show' do | ||
it 'returns http unprocessable entity' do | ||
get :show, params: { id: circle.id } | ||
|
||
expect(response).to have_http_status(422) | ||
expect(response.headers['Link']).to be_nil | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'rails_helper' | ||
|
||
describe Api::V1::ListsController do | ||
render_views | ||
|
||
let(:user) { Fabricate(:user) } | ||
let(:list) { Fabricate(:list, account: user.account) } | ||
|
||
before do | ||
allow(controller).to receive(:doorkeeper_token) { token } | ||
end | ||
|
||
context 'with a user context' do | ||
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read:lists') } | ||
|
||
describe 'GET #show' do | ||
it 'returns http success' do | ||
get :show, params: { id: list.id } | ||
expect(response).to have_http_status(200) | ||
end | ||
end | ||
end | ||
|
||
context 'with the wrong user context' do | ||
let(:other_user) { Fabricate(:user) } | ||
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: other_user.id, scopes: 'read') } | ||
|
||
describe 'GET #show' do | ||
it 'returns http not found' do | ||
get :show, params: { id: list.id } | ||
expect(response).to have_http_status(404) | ||
end | ||
end | ||
end | ||
|
||
context 'without a user context' do | ||
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: nil, scopes: 'read') } | ||
|
||
describe 'GET #show' do | ||
it 'returns http unprocessable entity' do | ||
get :show, params: { id: list.id } | ||
|
||
expect(response).to have_http_status(422) | ||
expect(response.headers['Link']).to be_nil | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.