mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-18 04:19:27 +00:00
Prefer structure checks over multi-line size/parts checks in parsed_body
(#32063)
This commit is contained in:
parent
d6f5ee75ab
commit
51777fe3e2
|
@ -23,8 +23,11 @@ RSpec.describe 'API V1 Accounts FollowerAccounts' do
|
||||||
expect(response).to have_http_status(200)
|
expect(response).to have_http_status(200)
|
||||||
expect(response.content_type)
|
expect(response.content_type)
|
||||||
.to start_with('application/json')
|
.to start_with('application/json')
|
||||||
expect(response.parsed_body.size).to eq 2
|
expect(response.parsed_body)
|
||||||
expect([response.parsed_body[0][:id], response.parsed_body[1][:id]]).to contain_exactly(alice.id.to_s, bob.id.to_s)
|
.to contain_exactly(
|
||||||
|
hash_including(id: alice.id.to_s),
|
||||||
|
hash_including(id: bob.id.to_s)
|
||||||
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'does not return blocked users', :aggregate_failures do
|
it 'does not return blocked users', :aggregate_failures do
|
||||||
|
@ -34,8 +37,10 @@ RSpec.describe 'API V1 Accounts FollowerAccounts' do
|
||||||
expect(response).to have_http_status(200)
|
expect(response).to have_http_status(200)
|
||||||
expect(response.content_type)
|
expect(response.content_type)
|
||||||
.to start_with('application/json')
|
.to start_with('application/json')
|
||||||
expect(response.parsed_body.size).to eq 1
|
expect(response.parsed_body)
|
||||||
expect(response.parsed_body[0][:id]).to eq alice.id.to_s
|
.to contain_exactly(
|
||||||
|
hash_including(id: alice.id.to_s)
|
||||||
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when requesting user is blocked' do
|
context 'when requesting user is blocked' do
|
||||||
|
@ -56,8 +61,11 @@ RSpec.describe 'API V1 Accounts FollowerAccounts' do
|
||||||
account.mute!(bob)
|
account.mute!(bob)
|
||||||
get "/api/v1/accounts/#{account.id}/followers", params: { limit: 2 }, headers: headers
|
get "/api/v1/accounts/#{account.id}/followers", params: { limit: 2 }, headers: headers
|
||||||
|
|
||||||
expect(response.parsed_body.size).to eq 2
|
expect(response.parsed_body)
|
||||||
expect([response.parsed_body[0][:id], response.parsed_body[1][:id]]).to contain_exactly(alice.id.to_s, bob.id.to_s)
|
.to contain_exactly(
|
||||||
|
hash_including(id: alice.id.to_s),
|
||||||
|
hash_including(id: bob.id.to_s)
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -23,8 +23,11 @@ RSpec.describe 'API V1 Accounts FollowingAccounts' do
|
||||||
expect(response).to have_http_status(200)
|
expect(response).to have_http_status(200)
|
||||||
expect(response.content_type)
|
expect(response.content_type)
|
||||||
.to start_with('application/json')
|
.to start_with('application/json')
|
||||||
expect(response.parsed_body.size).to eq 2
|
expect(response.parsed_body)
|
||||||
expect([response.parsed_body[0][:id], response.parsed_body[1][:id]]).to contain_exactly(alice.id.to_s, bob.id.to_s)
|
.to contain_exactly(
|
||||||
|
hash_including(id: alice.id.to_s),
|
||||||
|
hash_including(id: bob.id.to_s)
|
||||||
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'does not return blocked users', :aggregate_failures do
|
it 'does not return blocked users', :aggregate_failures do
|
||||||
|
@ -34,8 +37,10 @@ RSpec.describe 'API V1 Accounts FollowingAccounts' do
|
||||||
expect(response).to have_http_status(200)
|
expect(response).to have_http_status(200)
|
||||||
expect(response.content_type)
|
expect(response.content_type)
|
||||||
.to start_with('application/json')
|
.to start_with('application/json')
|
||||||
expect(response.parsed_body.size).to eq 1
|
expect(response.parsed_body)
|
||||||
expect(response.parsed_body[0][:id]).to eq alice.id.to_s
|
.to contain_exactly(
|
||||||
|
hash_including(id: alice.id.to_s)
|
||||||
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when requesting user is blocked' do
|
context 'when requesting user is blocked' do
|
||||||
|
@ -56,8 +61,11 @@ RSpec.describe 'API V1 Accounts FollowingAccounts' do
|
||||||
account.mute!(bob)
|
account.mute!(bob)
|
||||||
get "/api/v1/accounts/#{account.id}/following", params: { limit: 2 }, headers: headers
|
get "/api/v1/accounts/#{account.id}/following", params: { limit: 2 }, headers: headers
|
||||||
|
|
||||||
expect(response.parsed_body.size).to eq 2
|
expect(response.parsed_body)
|
||||||
expect([response.parsed_body[0][:id], response.parsed_body[1][:id]]).to contain_exactly(alice.id.to_s, bob.id.to_s)
|
.to contain_exactly(
|
||||||
|
hash_including(id: alice.id.to_s),
|
||||||
|
hash_including(id: bob.id.to_s)
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -84,8 +84,11 @@ RSpec.describe 'Directories API' do
|
||||||
expect(response).to have_http_status(200)
|
expect(response).to have_http_status(200)
|
||||||
expect(response.content_type)
|
expect(response.content_type)
|
||||||
.to start_with('application/json')
|
.to start_with('application/json')
|
||||||
expect(response.parsed_body.size).to eq(2)
|
expect(response.parsed_body)
|
||||||
expect(response.parsed_body.pluck(:id)).to contain_exactly(eligible_remote_account.id.to_s, local_discoverable_account.id.to_s)
|
.to contain_exactly(
|
||||||
|
hash_including(id: eligible_remote_account.id.to_s),
|
||||||
|
hash_including(id: local_discoverable_account.id.to_s)
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -105,9 +108,11 @@ RSpec.describe 'Directories API' do
|
||||||
expect(response).to have_http_status(200)
|
expect(response).to have_http_status(200)
|
||||||
expect(response.content_type)
|
expect(response.content_type)
|
||||||
.to start_with('application/json')
|
.to start_with('application/json')
|
||||||
expect(response.parsed_body.size).to eq(1)
|
expect(response.parsed_body)
|
||||||
expect(response.parsed_body.first[:id]).to include(local_account.id.to_s)
|
.to contain_exactly(
|
||||||
expect(response.body).to_not include(remote_account.id.to_s)
|
hash_including(id: local_account.id.to_s)
|
||||||
|
)
|
||||||
|
.and not_include(remote_account.id.to_s)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -121,9 +126,11 @@ RSpec.describe 'Directories API' do
|
||||||
expect(response).to have_http_status(200)
|
expect(response).to have_http_status(200)
|
||||||
expect(response.content_type)
|
expect(response.content_type)
|
||||||
.to start_with('application/json')
|
.to start_with('application/json')
|
||||||
expect(response.parsed_body.size).to eq(2)
|
expect(response.parsed_body)
|
||||||
expect(response.parsed_body.first[:id]).to include(new_stat.account_id.to_s)
|
.to contain_exactly(
|
||||||
expect(response.parsed_body.second[:id]).to include(old_stat.account_id.to_s)
|
hash_including(id: new_stat.account_id.to_s),
|
||||||
|
hash_including(id: old_stat.account_id.to_s)
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -138,9 +145,11 @@ RSpec.describe 'Directories API' do
|
||||||
expect(response).to have_http_status(200)
|
expect(response).to have_http_status(200)
|
||||||
expect(response.content_type)
|
expect(response.content_type)
|
||||||
.to start_with('application/json')
|
.to start_with('application/json')
|
||||||
expect(response.parsed_body.size).to eq(2)
|
expect(response.parsed_body)
|
||||||
expect(response.parsed_body.first[:id]).to include(account_new.id.to_s)
|
.to contain_exactly(
|
||||||
expect(response.parsed_body.second[:id]).to include(account_old.id.to_s)
|
hash_including(id: account_new.id.to_s),
|
||||||
|
hash_including(id: account_old.id.to_s)
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -55,10 +55,10 @@ RSpec.describe 'API Peers Search' do
|
||||||
.to have_http_status(200)
|
.to have_http_status(200)
|
||||||
expect(response.content_type)
|
expect(response.content_type)
|
||||||
.to start_with('application/json')
|
.to start_with('application/json')
|
||||||
expect(response.parsed_body.size)
|
expect(response.parsed_body)
|
||||||
.to eq(1)
|
.to contain_exactly(
|
||||||
expect(response.parsed_body.first)
|
eq(account.domain)
|
||||||
.to eq(account.domain)
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -36,8 +36,6 @@ RSpec.describe 'API V1 Statuses Favourited by Accounts' do
|
||||||
expect(response.content_type)
|
expect(response.content_type)
|
||||||
.to start_with('application/json')
|
.to start_with('application/json')
|
||||||
|
|
||||||
expect(response.parsed_body.size)
|
|
||||||
.to eq(2)
|
|
||||||
expect(response.parsed_body)
|
expect(response.parsed_body)
|
||||||
.to contain_exactly(
|
.to contain_exactly(
|
||||||
include(id: alice.id.to_s),
|
include(id: alice.id.to_s),
|
||||||
|
@ -50,9 +48,10 @@ RSpec.describe 'API V1 Statuses Favourited by Accounts' do
|
||||||
|
|
||||||
subject
|
subject
|
||||||
|
|
||||||
expect(response.parsed_body.size)
|
expect(response.parsed_body)
|
||||||
.to eq 1
|
.to contain_exactly(
|
||||||
expect(response.parsed_body.first[:id]).to eq(alice.id.to_s)
|
hash_including(id: alice.id.to_s)
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -35,8 +35,6 @@ RSpec.describe 'API V1 Statuses Reblogged by Accounts' do
|
||||||
expect(response.content_type)
|
expect(response.content_type)
|
||||||
.to start_with('application/json')
|
.to start_with('application/json')
|
||||||
|
|
||||||
expect(response.parsed_body.size)
|
|
||||||
.to eq(2)
|
|
||||||
expect(response.parsed_body)
|
expect(response.parsed_body)
|
||||||
.to contain_exactly(
|
.to contain_exactly(
|
||||||
include(id: alice.id.to_s),
|
include(id: alice.id.to_s),
|
||||||
|
@ -49,9 +47,10 @@ RSpec.describe 'API V1 Statuses Reblogged by Accounts' do
|
||||||
|
|
||||||
subject
|
subject
|
||||||
|
|
||||||
expect(response.parsed_body.size)
|
expect(response.parsed_body)
|
||||||
.to eq 1
|
.to contain_exactly(
|
||||||
expect(response.parsed_body.first[:id]).to eq(alice.id.to_s)
|
hash_including(id: alice.id.to_s)
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue