Merge commit 'a324edabdf' into upstream-20250416

This commit is contained in:
KMY 2025-04-24 07:27:26 +09:00
commit 94eb912030
71 changed files with 513 additions and 141 deletions

View file

@ -13,8 +13,30 @@ RSpec.describe 'Accounts Pins API' do
kevin.account.followers << user.account
end
describe 'POST /api/v1/accounts/:account_id/pin' do
subject { post "/api/v1/accounts/#{kevin.account.id}/pin", headers: headers }
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
@ -26,8 +48,8 @@ RSpec.describe 'Accounts Pins API' do
end
end
describe 'POST /api/v1/accounts/:account_id/unpin' do
subject { post "/api/v1/accounts/#{kevin.account.id}/unpin", headers: headers }
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)

View file

@ -140,9 +140,12 @@ RSpec.describe 'Lists' do
it 'returns http unprocessable entity' do
subject
expect(response).to have_http_status(422)
expect(response)
.to have_http_status(422)
expect(response.content_type)
.to start_with('application/json')
expect(response.parsed_body)
.to include(error: /Replies policy is not included/)
end
end
end

View file

@ -141,6 +141,21 @@ RSpec.describe 'Filters' do
.to start_with('application/json')
end
end
context 'when the given filter_action value is invalid' do
let(:params) { { title: 'magic', filter_action: 'imaginary_value', keywords_attributes: [keyword: 'magic'] } }
it 'returns http unprocessable entity' do
subject
expect(response)
.to have_http_status(422)
expect(response.content_type)
.to start_with('application/json')
expect(response.parsed_body)
.to include(error: /Action is not included/)
end
end
end
describe 'GET /api/v2/filters/:id' do