2023-02-22 00:55:31 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-08 19:52:15 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-04 03:49:53 +00:00
|
|
|
RSpec.describe ActivityPub::OutboxesController do
|
2017-08-08 19:52:15 +00:00
|
|
|
let!(:account) { Fabricate(:account) }
|
|
|
|
|
|
|
|
before do
|
2020-05-03 14:30:36 +00:00
|
|
|
Fabricate(:status, account: account, visibility: :public)
|
|
|
|
Fabricate(:status, account: account, visibility: :unlisted)
|
|
|
|
Fabricate(:status, account: account, visibility: :private)
|
|
|
|
Fabricate(:status, account: account, visibility: :direct)
|
|
|
|
Fabricate(:status, account: account, visibility: :limited)
|
|
|
|
|
2022-09-21 20:45:57 +00:00
|
|
|
allow(controller).to receive(:signed_request_actor).and_return(remote_account)
|
2017-08-08 19:52:15 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
2020-05-03 14:30:36 +00:00
|
|
|
context 'without signature' do
|
2020-11-07 23:28:39 +00:00
|
|
|
subject(:response) { get :show, params: { account_username: account.username, page: page } }
|
2023-02-20 01:46:00 +00:00
|
|
|
|
2023-05-04 03:48:35 +00:00
|
|
|
let(:body) { body_as_json }
|
2023-02-20 04:24:14 +00:00
|
|
|
let(:remote_account) { nil }
|
2020-05-03 14:30:36 +00:00
|
|
|
|
|
|
|
context 'with page not requested' do
|
|
|
|
let(:page) { nil }
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns application/activity+json' do
|
2021-03-17 09:09:55 +00:00
|
|
|
expect(response.media_type).to eq 'application/activity+json'
|
2020-05-03 14:30:36 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns totalItems' do
|
2020-11-07 23:28:39 +00:00
|
|
|
expect(body[:totalItems]).to eq 4
|
2020-05-03 14:30:36 +00:00
|
|
|
end
|
2017-08-08 19:52:15 +00:00
|
|
|
|
2022-03-06 21:51:40 +00:00
|
|
|
it_behaves_like 'cacheable response'
|
2020-11-07 23:28:39 +00:00
|
|
|
|
2021-07-03 19:13:47 +00:00
|
|
|
it 'does not have a Vary header' do
|
|
|
|
expect(response.headers['Vary']).to be_nil
|
|
|
|
end
|
|
|
|
|
2020-11-07 23:28:39 +00:00
|
|
|
context 'when account is permanently suspended' do
|
|
|
|
before do
|
|
|
|
account.suspend!
|
|
|
|
account.deletion_request.destroy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http gone' do
|
|
|
|
expect(response).to have_http_status(410)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when account is temporarily suspended' do
|
|
|
|
before do
|
|
|
|
account.suspend!
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http forbidden' do
|
|
|
|
expect(response).to have_http_status(403)
|
|
|
|
end
|
|
|
|
end
|
2020-05-03 14:30:36 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'with page requested' do
|
|
|
|
let(:page) { 'true' }
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns application/activity+json' do
|
2021-03-17 09:09:55 +00:00
|
|
|
expect(response.media_type).to eq 'application/activity+json'
|
2020-05-03 14:30:36 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns orderedItems with public or unlisted statuses' do
|
2020-11-07 23:28:39 +00:00
|
|
|
expect(body[:orderedItems]).to be_an Array
|
|
|
|
expect(body[:orderedItems].size).to eq 2
|
2024-01-11 16:17:21 +00:00
|
|
|
expect(body[:orderedItems].all? { |item| targets_public_collection?(item) }).to be true
|
2020-05-03 14:30:36 +00:00
|
|
|
end
|
|
|
|
|
2022-03-06 21:51:40 +00:00
|
|
|
it_behaves_like 'cacheable response'
|
2020-11-07 23:28:39 +00:00
|
|
|
|
2021-07-03 19:13:47 +00:00
|
|
|
it 'returns Vary header with Signature' do
|
|
|
|
expect(response.headers['Vary']).to include 'Signature'
|
|
|
|
end
|
|
|
|
|
2020-11-07 23:28:39 +00:00
|
|
|
context 'when account is permanently suspended' do
|
|
|
|
before do
|
|
|
|
account.suspend!
|
|
|
|
account.deletion_request.destroy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http gone' do
|
|
|
|
expect(response).to have_http_status(410)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when account is temporarily suspended' do
|
|
|
|
before do
|
|
|
|
account.suspend!
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http forbidden' do
|
|
|
|
expect(response).to have_http_status(403)
|
|
|
|
end
|
|
|
|
end
|
2020-05-03 14:30:36 +00:00
|
|
|
end
|
2017-08-08 19:52:15 +00:00
|
|
|
end
|
2017-08-14 02:16:43 +00:00
|
|
|
|
2020-05-03 14:30:36 +00:00
|
|
|
context 'with signature' do
|
|
|
|
let(:remote_account) { Fabricate(:account, domain: 'example.com') }
|
|
|
|
let(:page) { 'true' }
|
|
|
|
|
|
|
|
context 'when signed request account does not follow account' do
|
|
|
|
before do
|
|
|
|
get :show, params: { account_username: account.username, page: page }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns application/activity+json' do
|
2021-03-17 09:09:55 +00:00
|
|
|
expect(response.media_type).to eq 'application/activity+json'
|
2020-05-03 14:30:36 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns orderedItems with public or unlisted statuses' do
|
|
|
|
json = body_as_json
|
|
|
|
expect(json[:orderedItems]).to be_an Array
|
|
|
|
expect(json[:orderedItems].size).to eq 2
|
2024-01-11 16:17:21 +00:00
|
|
|
expect(json[:orderedItems].all? { |item| targets_public_collection?(item) }).to be true
|
2020-05-03 14:30:36 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns private Cache-Control header' do
|
2021-07-03 19:13:47 +00:00
|
|
|
expect(response.headers['Cache-Control']).to eq 'max-age=60, private'
|
2020-05-03 14:30:36 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when signed request account follows account' do
|
|
|
|
before do
|
|
|
|
remote_account.follow!(account)
|
|
|
|
get :show, params: { account_username: account.username, page: page }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns application/activity+json' do
|
2021-03-17 09:09:55 +00:00
|
|
|
expect(response.media_type).to eq 'application/activity+json'
|
2020-05-03 14:30:36 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns orderedItems with private statuses' do
|
|
|
|
json = body_as_json
|
|
|
|
expect(json[:orderedItems]).to be_an Array
|
|
|
|
expect(json[:orderedItems].size).to eq 3
|
2024-01-11 16:17:21 +00:00
|
|
|
expect(json[:orderedItems].all? { |item| targets_public_collection?(item) || targets_followers_collection?(item, account) }).to be true
|
2020-05-03 14:30:36 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns private Cache-Control header' do
|
2021-07-03 19:13:47 +00:00
|
|
|
expect(response.headers['Cache-Control']).to eq 'max-age=60, private'
|
2020-05-03 14:30:36 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when signed request account is blocked' do
|
|
|
|
before do
|
|
|
|
account.block!(remote_account)
|
|
|
|
get :show, params: { account_username: account.username, page: page }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns application/activity+json' do
|
2021-03-17 09:09:55 +00:00
|
|
|
expect(response.media_type).to eq 'application/activity+json'
|
2020-05-03 14:30:36 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns empty orderedItems' do
|
|
|
|
json = body_as_json
|
|
|
|
expect(json[:orderedItems]).to be_an Array
|
|
|
|
expect(json[:orderedItems].size).to eq 0
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns private Cache-Control header' do
|
2021-07-03 19:13:47 +00:00
|
|
|
expect(response.headers['Cache-Control']).to eq 'max-age=60, private'
|
2020-05-03 14:30:36 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when signed request account is domain blocked' do
|
|
|
|
before do
|
|
|
|
account.block_domain!(remote_account.domain)
|
|
|
|
get :show, params: { account_username: account.username, page: page }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns application/activity+json' do
|
2021-03-17 09:09:55 +00:00
|
|
|
expect(response.media_type).to eq 'application/activity+json'
|
2020-05-03 14:30:36 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns empty orderedItems' do
|
|
|
|
json = body_as_json
|
|
|
|
expect(json[:orderedItems]).to be_an Array
|
|
|
|
expect(json[:orderedItems].size).to eq 0
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns private Cache-Control header' do
|
2021-07-03 19:13:47 +00:00
|
|
|
expect(response.headers['Cache-Control']).to eq 'max-age=60, private'
|
2020-05-03 14:30:36 +00:00
|
|
|
end
|
|
|
|
end
|
2017-08-14 02:16:43 +00:00
|
|
|
end
|
2017-08-08 19:52:15 +00:00
|
|
|
end
|
2024-01-11 16:17:21 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def ap_public_collection
|
|
|
|
ActivityPub::TagManager::COLLECTIONS[:public]
|
|
|
|
end
|
|
|
|
|
|
|
|
def targets_public_collection?(item)
|
|
|
|
item[:to].include?(ap_public_collection) || item[:cc].include?(ap_public_collection)
|
|
|
|
end
|
|
|
|
|
|
|
|
def targets_followers_collection?(item, account)
|
|
|
|
item[:to].include?(
|
|
|
|
account_followers_url(account, ActionMailer::Base.default_url_options)
|
|
|
|
)
|
|
|
|
end
|
2017-08-08 19:52:15 +00:00
|
|
|
end
|