mastodon/spec/requests/api/v1/accounts/endorsements_spec.rb
David Roetzel d2f82d402a
Add shared context for API authentication
And use it in request specs.
2025-11-21 16:18:28 +01:00

66 lines
1.9 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'Accounts Pins API' do
include_context 'with API authentication', oauth_scopes: 'write:accounts'
let(:kevin) { Fabricate(:user) }
before do
kevin.account.followers << user.account
end
describe 'GET /api/v1/accounts/:account_id/endorsements' do
subject { get "/api/v1/accounts/#{user.account.id}/endorsements", headers: headers }
let(:scopes) { 'read:accounts' }
before do
user.account.endorsed_accounts << kevin.account
end
it 'returns the expected accounts', :aggregate_failures do
subject
expect(response).to have_http_status(200)
expect(response.content_type)
.to start_with('application/json')
expect(response.parsed_body)
.to contain_exactly(
hash_including(id: kevin.account_id.to_s)
)
end
end
describe 'POST /api/v1/accounts/:account_id/endorse' do
subject { post "/api/v1/accounts/#{kevin.account.id}/endorse", headers: headers }
it 'creates account_pin', :aggregate_failures do
expect do
subject
end.to change { AccountPin.where(account: user.account, target_account: kevin.account).count }.by(1)
expect(response).to have_http_status(200)
expect(response.content_type)
.to start_with('application/json')
end
end
describe 'POST /api/v1/accounts/:account_id/unendorse' do
subject { post "/api/v1/accounts/#{kevin.account.id}/unendorse", headers: headers }
before do
Fabricate(:account_pin, account: user.account, target_account: kevin.account)
end
it 'destroys account_pin', :aggregate_failures do
expect do
subject
end.to change { AccountPin.where(account: user.account, target_account: kevin.account).count }.by(-1)
expect(response).to have_http_status(200)
expect(response.content_type)
.to start_with('application/json')
end
end
end