2017-04-30 00:25:38 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe StatusesController do
|
|
|
|
render_views
|
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
describe 'GET #show' do
|
|
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
let(:status) { Fabricate(:status, account: account) }
|
2017-04-30 00:25:38 +02:00
|
|
|
|
2020-11-08 00:28:39 +01:00
|
|
|
context 'when account is permanently suspended' do
|
2020-05-03 16:30:36 +02:00
|
|
|
before do
|
2020-11-08 00:28:39 +01:00
|
|
|
account.suspend!
|
|
|
|
account.deletion_request.destroy
|
|
|
|
|
2017-05-23 16:34:28 +02:00
|
|
|
get :show, params: { account_username: account.username, id: status.id }
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
2017-05-23 16:34:28 +02:00
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
it 'returns http gone' do
|
2017-05-23 16:34:28 +02:00
|
|
|
expect(response).to have_http_status(410)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-11-08 00:28:39 +01:00
|
|
|
context 'when account is temporarily suspended' do
|
|
|
|
before do
|
|
|
|
account.suspend!
|
|
|
|
|
|
|
|
get :show, params: { account_username: account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http forbidden' do
|
|
|
|
expect(response).to have_http_status(403)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
context 'when status is a reblog' do
|
|
|
|
let(:original_account) { Fabricate(:account, domain: 'example.com') }
|
|
|
|
let(:original_status) { Fabricate(:status, account: original_account, url: 'https://example.com/123') }
|
|
|
|
let(:status) { Fabricate(:status, account: account, reblog: original_status) }
|
2017-05-23 16:34:28 +02:00
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
before do
|
2017-05-23 16:34:28 +02:00
|
|
|
get :show, params: { account_username: status.account.username, id: status.id }
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
2017-05-23 16:34:28 +02:00
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
it 'redirects to the original status' do
|
|
|
|
expect(response).to redirect_to(original_status.url)
|
2017-05-23 16:34:28 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
context 'when status is public' do
|
|
|
|
before do
|
|
|
|
get :show, params: { account_username: status.account.username, id: status.id, format: format }
|
|
|
|
end
|
2017-08-24 16:21:42 +02:00
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with HTML' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'html' }
|
2017-08-24 16:21:42 +02:00
|
|
|
|
2023-06-22 14:51:53 +02:00
|
|
|
it 'renders status successfully', :aggregate_failures do
|
2023-11-16 10:54:51 +01:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
.and render_template(:show)
|
|
|
|
expect(response.headers).to include(
|
|
|
|
'Vary' => 'Accept, Accept-Language, Cookie',
|
|
|
|
'Cache-Control' => include('public'),
|
|
|
|
'Link' => satisfy { |header| header.to_s.include?('activity+json') }
|
|
|
|
)
|
2020-05-03 16:30:36 +02:00
|
|
|
expect(response.body).to include status.text
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with JSON' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'json' }
|
|
|
|
|
2023-10-16 17:52:06 +02:00
|
|
|
it_behaves_like 'cacheable response', expects_vary: 'Accept, Accept-Language, Cookie'
|
2020-05-03 16:30:36 +02:00
|
|
|
|
2023-06-22 14:51:53 +02:00
|
|
|
it 'renders ActivityPub Note object successfully', :aggregate_failures do
|
2023-11-16 10:54:51 +01:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
expect(response.headers).to include(
|
|
|
|
'Vary' => 'Accept, Accept-Language, Cookie',
|
|
|
|
'Content-Type' => include('application/activity+json'),
|
|
|
|
'Link' => satisfy { |header| header.to_s.include?('activity+json') }
|
|
|
|
)
|
|
|
|
expect(body_as_json)
|
|
|
|
.to include(content: include(status.text))
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
2017-08-24 16:21:42 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
context 'when status is private' do
|
|
|
|
let(:status) { Fabricate(:status, account: account, visibility: :private) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
get :show, params: { account_username: status.account.username, id: status.id, format: format }
|
2017-05-23 16:34:28 +02:00
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with JSON' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'json' }
|
|
|
|
|
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
2017-05-23 16:34:28 +02:00
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with HTML' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'html' }
|
2017-05-23 16:34:28 +02:00
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when status is direct' do
|
|
|
|
let(:status) { Fabricate(:status, account: account, visibility: :direct) }
|
2017-05-23 16:34:28 +02:00
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
before do
|
|
|
|
get :show, params: { account_username: status.account.username, id: status.id, format: format }
|
2017-05-23 16:34:28 +02:00
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with JSON' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'json' }
|
|
|
|
|
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
2017-05-23 16:34:28 +02:00
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with HTML' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'html' }
|
2018-04-23 19:27:35 +02:00
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when signed-in' do
|
|
|
|
let(:user) { Fabricate(:user) }
|
2018-04-23 19:27:35 +02:00
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
before do
|
|
|
|
sign_in(user)
|
2018-04-23 19:27:35 +02:00
|
|
|
end
|
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
context 'when account blocks user' do
|
|
|
|
before do
|
|
|
|
account.block!(user.account)
|
|
|
|
get :show, params: { account_username: status.account.username, id: status.id }
|
|
|
|
end
|
2018-04-23 19:27:35 +02:00
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when status is public' do
|
|
|
|
before do
|
|
|
|
get :show, params: { account_username: status.account.username, id: status.id, format: format }
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with HTML' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'html' }
|
|
|
|
|
2023-06-22 14:51:53 +02:00
|
|
|
it 'renders status successfully', :aggregate_failures do
|
2023-11-16 10:54:51 +01:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
.and render_template(:show)
|
|
|
|
expect(response.headers).to include(
|
|
|
|
'Vary' => 'Accept, Accept-Language, Cookie',
|
|
|
|
'Cache-Control' => include('private'),
|
|
|
|
'Link' => satisfy { |header| header.to_s.include?('activity+json') }
|
|
|
|
)
|
2020-05-03 16:30:36 +02:00
|
|
|
expect(response.body).to include status.text
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with JSON' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'json' }
|
|
|
|
|
2023-06-22 14:51:53 +02:00
|
|
|
it 'renders ActivityPub Note object successfully', :aggregate_failures do
|
2023-11-16 10:54:51 +01:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
expect(response.headers).to include(
|
|
|
|
'Vary' => 'Accept, Accept-Language, Cookie',
|
|
|
|
'Cache-Control' => include('private'),
|
|
|
|
'Content-Type' => include('application/activity+json'),
|
|
|
|
'Link' => satisfy { |header| header.to_s.include?('activity+json') }
|
|
|
|
)
|
|
|
|
expect(body_as_json)
|
|
|
|
.to include(content: include(status.text))
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
end
|
2018-04-23 19:27:35 +02:00
|
|
|
end
|
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
context 'when status is private' do
|
|
|
|
let(:status) { Fabricate(:status, account: account, visibility: :private) }
|
2018-04-23 19:27:35 +02:00
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
context 'when user is authorized to see it' do
|
|
|
|
before do
|
|
|
|
user.account.follow!(account)
|
|
|
|
get :show, params: { account_username: status.account.username, id: status.id, format: format }
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with HTML' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'html' }
|
|
|
|
|
2023-06-22 14:51:53 +02:00
|
|
|
it 'renders status successfully', :aggregate_failures do
|
2023-11-16 10:54:51 +01:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
.and render_template(:show)
|
|
|
|
|
|
|
|
expect(response.headers).to include(
|
|
|
|
'Vary' => 'Accept, Accept-Language, Cookie',
|
|
|
|
'Cache-Control' => include('private'),
|
|
|
|
'Link' => satisfy { |header| header.to_s.include?('activity+json') }
|
|
|
|
)
|
2020-05-03 16:30:36 +02:00
|
|
|
expect(response.body).to include status.text
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with JSON' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'json' }
|
|
|
|
|
2023-06-22 14:51:53 +02:00
|
|
|
it 'renders ActivityPub Note object successfully', :aggregate_failures do
|
2023-11-16 10:54:51 +01:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
expect(response.headers).to include(
|
|
|
|
'Vary' => 'Accept, Accept-Language, Cookie',
|
|
|
|
'Cache-Control' => include('private'),
|
|
|
|
'Content-Type' => include('application/activity+json'),
|
|
|
|
'Link' => satisfy { |header| header.to_s.include?('activity+json') }
|
|
|
|
)
|
|
|
|
expect(body_as_json)
|
|
|
|
.to include(content: include(status.text))
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is not authorized to see it' do
|
|
|
|
before do
|
|
|
|
get :show, params: { account_username: status.account.username, id: status.id, format: format }
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with JSON' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'json' }
|
|
|
|
|
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with HTML' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'html' }
|
|
|
|
|
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-04-23 19:27:35 +02:00
|
|
|
end
|
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
context 'when status is direct' do
|
|
|
|
let(:status) { Fabricate(:status, account: account, visibility: :direct) }
|
2018-04-23 19:27:35 +02:00
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
context 'when user is authorized to see it' do
|
|
|
|
before do
|
|
|
|
Fabricate(:mention, account: user.account, status: status)
|
|
|
|
get :show, params: { account_username: status.account.username, id: status.id, format: format }
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with HTML' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'html' }
|
|
|
|
|
2023-06-22 14:51:53 +02:00
|
|
|
it 'renders status successfully', :aggregate_failures do
|
2023-11-16 10:54:51 +01:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
.and render_template(:show)
|
|
|
|
expect(response.headers).to include(
|
|
|
|
'Vary' => 'Accept, Accept-Language, Cookie',
|
|
|
|
'Cache-Control' => include('private'),
|
|
|
|
'Link' => satisfy { |header| header.to_s.include?('activity+json') }
|
|
|
|
)
|
2020-05-03 16:30:36 +02:00
|
|
|
expect(response.body).to include status.text
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with JSON' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'json' }
|
|
|
|
|
2023-06-22 14:51:53 +02:00
|
|
|
it 'renders ActivityPub Note object successfully' do
|
2023-11-16 10:54:51 +01:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
expect(response.headers).to include(
|
|
|
|
'Vary' => 'Accept, Accept-Language, Cookie',
|
|
|
|
'Cache-Control' => include('private'),
|
|
|
|
'Content-Type' => include('application/activity+json'),
|
|
|
|
'Link' => satisfy { |header| header.to_s.include?('activity+json') }
|
|
|
|
)
|
|
|
|
expect(body_as_json)
|
|
|
|
.to include(content: include(status.text))
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is not authorized to see it' do
|
|
|
|
before do
|
|
|
|
get :show, params: { account_username: status.account.username, id: status.id, format: format }
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with JSON' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'json' }
|
2018-04-23 19:27:35 +02:00
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with HTML' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'html' }
|
|
|
|
|
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-04-23 19:27:35 +02:00
|
|
|
end
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
2018-04-23 19:27:35 +02:00
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
context 'with signature' do
|
|
|
|
let(:remote_account) { Fabricate(:account, domain: 'example.com') }
|
|
|
|
|
|
|
|
before do
|
2022-09-21 22:45:57 +02:00
|
|
|
allow(controller).to receive(:signed_request_actor).and_return(remote_account)
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when account blocks account' do
|
|
|
|
before do
|
|
|
|
account.block!(remote_account)
|
|
|
|
get :show, params: { account_username: status.account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when account domain blocks account' do
|
|
|
|
before do
|
|
|
|
account.block_domain!(remote_account.domain)
|
|
|
|
get :show, params: { account_username: status.account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when status is public' do
|
|
|
|
before do
|
|
|
|
get :show, params: { account_username: status.account.username, id: status.id, format: format }
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with HTML' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'html' }
|
|
|
|
|
2023-06-22 14:51:53 +02:00
|
|
|
it 'renders status successfully', :aggregate_failures do
|
2023-11-16 10:54:51 +01:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
.and render_template(:show)
|
|
|
|
expect(response.headers).to include(
|
|
|
|
'Vary' => 'Accept, Accept-Language, Cookie',
|
|
|
|
'Cache-Control' => include('private'),
|
|
|
|
'Link' => satisfy { |header| header.to_s.include?('activity+json') }
|
|
|
|
)
|
2020-05-03 16:30:36 +02:00
|
|
|
expect(response.body).to include status.text
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with JSON' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'json' }
|
|
|
|
|
2023-10-16 17:52:06 +02:00
|
|
|
it_behaves_like 'cacheable response', expects_vary: 'Accept, Accept-Language, Cookie'
|
2020-05-03 16:30:36 +02:00
|
|
|
|
2023-06-22 14:51:53 +02:00
|
|
|
it 'renders ActivityPub Note object successfully', :aggregate_failures do
|
2023-11-16 10:54:51 +01:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
expect(response.headers).to include(
|
|
|
|
'Vary' => 'Accept, Accept-Language, Cookie',
|
|
|
|
'Content-Type' => include('application/activity+json'),
|
|
|
|
'Link' => satisfy { |header| header.to_s.include?('activity+json') }
|
|
|
|
)
|
|
|
|
expect(body_as_json)
|
|
|
|
.to include(content: include(status.text))
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when status is private' do
|
|
|
|
let(:status) { Fabricate(:status, account: account, visibility: :private) }
|
|
|
|
|
|
|
|
context 'when user is authorized to see it' do
|
|
|
|
before do
|
|
|
|
remote_account.follow!(account)
|
|
|
|
get :show, params: { account_username: status.account.username, id: status.id, format: format }
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with HTML' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'html' }
|
|
|
|
|
2023-06-22 14:51:53 +02:00
|
|
|
it 'renders status successfully', :aggregate_failures do
|
2023-11-16 10:54:51 +01:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
.and render_template(:show)
|
|
|
|
expect(response.headers).to include(
|
|
|
|
'Vary' => 'Accept, Accept-Language, Cookie',
|
|
|
|
'Cache-Control' => include('private'),
|
|
|
|
'Link' => satisfy { |header| header.to_s.include?('activity+json') }
|
|
|
|
)
|
2020-05-03 16:30:36 +02:00
|
|
|
expect(response.body).to include status.text
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with JSON' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'json' }
|
|
|
|
|
2023-06-22 14:51:53 +02:00
|
|
|
it 'renders ActivityPub Note object successfully' do
|
2023-11-16 10:54:51 +01:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
expect(response.headers).to include(
|
|
|
|
'Vary' => 'Accept, Accept-Language, Cookie',
|
|
|
|
'Cache-Control' => include('private'),
|
|
|
|
'Content-Type' => include('application/activity+json'),
|
|
|
|
'Link' => satisfy { |header| header.to_s.include?('activity+json') }
|
|
|
|
)
|
|
|
|
|
|
|
|
expect(body_as_json)
|
|
|
|
.to include(content: include(status.text))
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is not authorized to see it' do
|
|
|
|
before do
|
|
|
|
get :show, params: { account_username: status.account.username, id: status.id, format: format }
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with JSON' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'json' }
|
|
|
|
|
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with HTML' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'html' }
|
|
|
|
|
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when status is direct' do
|
|
|
|
let(:status) { Fabricate(:status, account: account, visibility: :direct) }
|
|
|
|
|
|
|
|
context 'when user is authorized to see it' do
|
|
|
|
before do
|
|
|
|
Fabricate(:mention, account: remote_account, status: status)
|
|
|
|
get :show, params: { account_username: status.account.username, id: status.id, format: format }
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with HTML' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'html' }
|
|
|
|
|
2023-06-22 14:51:53 +02:00
|
|
|
it 'renders status successfully', :aggregate_failures do
|
2023-11-16 10:54:51 +01:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
.and render_template(:show)
|
|
|
|
expect(response.headers).to include(
|
|
|
|
'Vary' => 'Accept, Accept-Language, Cookie',
|
|
|
|
'Cache-Control' => include('private'),
|
|
|
|
'Link' => satisfy { |header| header.to_s.include?('activity+json') }
|
|
|
|
)
|
2020-05-03 16:30:36 +02:00
|
|
|
expect(response.body).to include status.text
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with JSON' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'json' }
|
|
|
|
|
2023-06-22 14:51:53 +02:00
|
|
|
it 'renders ActivityPub Note object', :aggregate_failures do
|
2023-11-16 10:54:51 +01:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
expect(response.headers).to include(
|
|
|
|
'Vary' => 'Accept, Accept-Language, Cookie',
|
|
|
|
'Cache-Control' => include('private'),
|
|
|
|
'Content-Type' => include('application/activity+json'),
|
|
|
|
'Link' => satisfy { |header| header.to_s.include?('activity+json') }
|
|
|
|
)
|
|
|
|
expect(body_as_json)
|
|
|
|
.to include(content: include(status.text))
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is not authorized to see it' do
|
|
|
|
before do
|
|
|
|
get :show, params: { account_username: status.account.username, id: status.id, format: format }
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with JSON' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'json' }
|
|
|
|
|
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with HTML' do
|
2020-05-03 16:30:36 +02:00
|
|
|
let(:format) { 'html' }
|
|
|
|
|
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #activity' do
|
|
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
let(:status) { Fabricate(:status, account: account) }
|
|
|
|
|
2020-11-08 00:28:39 +01:00
|
|
|
context 'when account is permanently suspended' do
|
2020-05-03 16:30:36 +02:00
|
|
|
before do
|
2020-11-08 00:28:39 +01:00
|
|
|
account.suspend!
|
|
|
|
account.deletion_request.destroy
|
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
get :activity, params: { account_username: account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http gone' do
|
|
|
|
expect(response).to have_http_status(410)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-11-08 00:28:39 +01:00
|
|
|
context 'when account is temporarily suspended' do
|
|
|
|
before do
|
|
|
|
account.suspend!
|
|
|
|
|
|
|
|
get :activity, params: { account_username: account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http forbidden' do
|
|
|
|
expect(response).to have_http_status(403)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
context 'when status is public' do
|
2023-05-22 13:43:05 +02:00
|
|
|
before do
|
|
|
|
status.update(visibility: :public)
|
|
|
|
get :activity, params: { account_username: account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when status is private' do
|
2023-05-22 13:43:05 +02:00
|
|
|
before do
|
|
|
|
status.update(visibility: :private)
|
|
|
|
get :activity, params: { account_username: account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http not_found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when status is direct' do
|
2023-05-22 13:43:05 +02:00
|
|
|
before do
|
|
|
|
status.update(visibility: :direct)
|
|
|
|
get :activity, params: { account_username: account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http not_found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when signed-in' do
|
2023-05-22 13:43:05 +02:00
|
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
context 'when status is public' do
|
2023-05-22 13:43:05 +02:00
|
|
|
before do
|
|
|
|
status.update(visibility: :public)
|
|
|
|
get :activity, params: { account_username: account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when status is private' do
|
2023-05-22 13:43:05 +02:00
|
|
|
before do
|
|
|
|
status.update(visibility: :private)
|
|
|
|
end
|
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
context 'when user is authorized to see it' do
|
2023-05-22 13:43:05 +02:00
|
|
|
before do
|
|
|
|
user.account.follow!(account)
|
|
|
|
get :activity, params: { account_username: account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is not authorized to see it' do
|
2023-05-22 13:43:05 +02:00
|
|
|
before do
|
|
|
|
get :activity, params: { account_username: account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http not_found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when status is direct' do
|
2023-05-22 13:43:05 +02:00
|
|
|
before do
|
|
|
|
status.update(visibility: :direct)
|
|
|
|
end
|
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
context 'when user is authorized to see it' do
|
2023-05-22 13:43:05 +02:00
|
|
|
before do
|
|
|
|
Fabricate(:mention, account: user.account, status: status)
|
|
|
|
get :activity, params: { account_username: account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is not authorized to see it' do
|
2023-05-22 13:43:05 +02:00
|
|
|
before do
|
|
|
|
get :activity, params: { account_username: account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http not_found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with signature' do
|
2023-05-22 13:43:05 +02:00
|
|
|
let(:remote_account) { Fabricate(:account, domain: 'example.com') }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(controller).to receive(:signed_request_actor).and_return(remote_account)
|
|
|
|
end
|
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
context 'when status is public' do
|
2023-05-22 13:43:05 +02:00
|
|
|
before do
|
|
|
|
status.update(visibility: :public)
|
|
|
|
get :activity, params: { account_username: account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when status is private' do
|
2023-05-22 13:43:05 +02:00
|
|
|
before do
|
|
|
|
status.update(visibility: :private)
|
|
|
|
end
|
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
context 'when user is authorized to see it' do
|
2023-05-22 13:43:05 +02:00
|
|
|
before do
|
|
|
|
remote_account.follow!(account)
|
|
|
|
get :activity, params: { account_username: account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is not authorized to see it' do
|
2023-05-22 13:43:05 +02:00
|
|
|
before do
|
|
|
|
get :activity, params: { account_username: account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http not_found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when status is direct' do
|
2023-05-22 13:43:05 +02:00
|
|
|
before do
|
|
|
|
status.update(visibility: :direct)
|
|
|
|
end
|
|
|
|
|
2020-05-03 16:30:36 +02:00
|
|
|
context 'when user is authorized to see it' do
|
2023-05-22 13:43:05 +02:00
|
|
|
before do
|
|
|
|
Fabricate(:mention, account: remote_account, status: status)
|
|
|
|
get :activity, params: { account_username: account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is not authorized to see it' do
|
2023-05-22 13:43:05 +02:00
|
|
|
before do
|
|
|
|
get :activity, params: { account_username: account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http not_found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
2020-05-03 16:30:36 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #embed' do
|
|
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
let(:status) { Fabricate(:status, account: account) }
|
|
|
|
|
|
|
|
context 'when account is suspended' do
|
|
|
|
let(:account) { Fabricate(:account, suspended: true) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
get :embed, params: { account_username: account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http gone' do
|
|
|
|
expect(response).to have_http_status(410)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when status is a reblog' do
|
|
|
|
let(:original_account) { Fabricate(:account, domain: 'example.com') }
|
|
|
|
let(:original_status) { Fabricate(:status, account: original_account, url: 'https://example.com/123') }
|
|
|
|
let(:status) { Fabricate(:status, account: account, reblog: original_status) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
get :embed, params: { account_username: status.account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when status is public' do
|
|
|
|
before do
|
|
|
|
get :embed, params: { account_username: status.account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
2023-06-22 14:51:53 +02:00
|
|
|
it 'renders status successfully', :aggregate_failures do
|
2023-11-16 10:54:51 +01:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
.and render_template(:embed)
|
|
|
|
expect(response.headers).to include(
|
|
|
|
'Vary' => 'Accept, Accept-Language, Cookie',
|
|
|
|
'Cache-Control' => include('public'),
|
|
|
|
'Link' => satisfy { |header| header.to_s.include?('activity+json') }
|
|
|
|
)
|
2020-05-03 16:30:36 +02:00
|
|
|
expect(response.body).to include status.text
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when status is private' do
|
|
|
|
let(:status) { Fabricate(:status, account: account, visibility: :private) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
get :embed, params: { account_username: status.account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when status is direct' do
|
|
|
|
let(:status) { Fabricate(:status, account: account, visibility: :direct) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
get :embed, params: { account_username: status.account.username, id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
2017-05-23 16:34:28 +02:00
|
|
|
end
|
2017-04-30 00:25:38 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|