123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863 |
- # frozen_string_literal: true
- require 'rails_helper'
- describe StatusesController do
- render_views
- shared_examples 'cacheable response' do
- it 'does not set cookies' do
- expect(response.cookies).to be_empty
- expect(response.headers['Set-Cookies']).to be nil
- end
- it 'does not set sessions' do
- expect(session).to be_empty
- end
- it 'returns public Cache-Control header' do
- expect(response.headers['Cache-Control']).to include 'public'
- end
- end
- describe 'GET #show' do
- let(:account) { Fabricate(:account) }
- let(:status) { Fabricate(:status, account: account) }
- context 'when account is permanently suspended' do
- before do
- account.suspend!
- account.deletion_request.destroy
- get :show, 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 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
- 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 :show, params: { account_username: status.account.username, id: status.id }
- end
- it 'redirects to the original status' do
- expect(response).to redirect_to(original_status.url)
- end
- end
- context 'when status is public' do
- before do
- get :show, params: { account_username: status.account.username, id: status.id, format: format }
- end
- context 'as HTML' do
- let(:format) { 'html' }
- it 'returns http success' do
- expect(response).to have_http_status(200)
- end
- it 'returns Link header' do
- expect(response.headers['Link'].to_s).to include 'activity+json'
- end
- it 'returns Vary header' do
- expect(response.headers['Vary']).to eq 'Accept'
- end
- it 'returns public Cache-Control header' do
- expect(response.headers['Cache-Control']).to include 'public'
- end
- it 'renders status' do
- expect(response).to render_template(:show)
- expect(response.body).to include status.text
- end
- end
- context 'as JSON' do
- let(:format) { 'json' }
- it 'returns http success' do
- expect(response).to have_http_status(200)
- end
- it 'returns Link header' do
- expect(response.headers['Link'].to_s).to include 'activity+json'
- end
- it 'returns Vary header' do
- expect(response.headers['Vary']).to eq 'Accept'
- end
- it_behaves_like 'cacheable response'
- it 'returns Content-Type header' do
- expect(response.headers['Content-Type']).to include 'application/activity+json'
- end
- it 'renders ActivityPub Note object' do
- json = body_as_json
- expect(json[:content]).to include status.text
- end
- end
- end
- 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 }
- end
- context 'as JSON' do
- let(:format) { 'json' }
- it 'returns http not found' do
- expect(response).to have_http_status(404)
- end
- end
- context 'as HTML' do
- let(:format) { 'html' }
- 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) }
- before do
- get :show, params: { account_username: status.account.username, id: status.id, format: format }
- end
- context 'as JSON' do
- let(:format) { 'json' }
- it 'returns http not found' do
- expect(response).to have_http_status(404)
- end
- end
- context 'as HTML' do
- let(:format) { 'html' }
- 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) }
- before do
- sign_in(user)
- end
- context 'when account blocks user' do
- before do
- account.block!(user.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 status is public' do
- before do
- get :show, params: { account_username: status.account.username, id: status.id, format: format }
- end
- context 'as HTML' do
- let(:format) { 'html' }
- it 'returns http success' do
- expect(response).to have_http_status(200)
- end
- it 'returns Link header' do
- expect(response.headers['Link'].to_s).to include 'activity+json'
- end
- it 'returns Vary header' do
- expect(response.headers['Vary']).to eq 'Accept'
- end
- it 'returns no Cache-Control header' do
- expect(response.headers).to_not include 'Cache-Control'
- end
- it 'renders status' do
- expect(response).to render_template(:show)
- expect(response.body).to include status.text
- end
- end
- context 'as JSON' do
- let(:format) { 'json' }
- it 'returns http success' do
- expect(response).to have_http_status(200)
- end
- it 'returns Link header' do
- expect(response.headers['Link'].to_s).to include 'activity+json'
- end
- it 'returns Vary header' do
- expect(response.headers['Vary']).to eq 'Accept'
- end
- it 'returns public Cache-Control header' do
- expect(response.headers['Cache-Control']).to include 'public'
- end
- it 'returns Content-Type header' do
- expect(response.headers['Content-Type']).to include 'application/activity+json'
- end
- it 'renders ActivityPub Note object' do
- json = body_as_json
- expect(json[:content]).to include status.text
- 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
- user.account.follow!(account)
- get :show, params: { account_username: status.account.username, id: status.id, format: format }
- end
- context 'as HTML' do
- let(:format) { 'html' }
- it 'returns http success' do
- expect(response).to have_http_status(200)
- end
- it 'returns Link header' do
- expect(response.headers['Link'].to_s).to include 'activity+json'
- end
- it 'returns Vary header' do
- expect(response.headers['Vary']).to eq 'Accept'
- end
- it 'returns no Cache-Control header' do
- expect(response.headers).to_not include 'Cache-Control'
- end
- it 'renders status' do
- expect(response).to render_template(:show)
- expect(response.body).to include status.text
- end
- end
- context 'as JSON' do
- let(:format) { 'json' }
- it 'returns http success' do
- expect(response).to have_http_status(200)
- end
- it 'returns Link header' do
- expect(response.headers['Link'].to_s).to include 'activity+json'
- end
- it 'returns Vary header' do
- expect(response.headers['Vary']).to eq 'Accept'
- end
- it 'returns private Cache-Control header' do
- expect(response.headers['Cache-Control']).to include 'private'
- end
- it 'returns Content-Type header' do
- expect(response.headers['Content-Type']).to include 'application/activity+json'
- end
- it 'renders ActivityPub Note object' do
- json = body_as_json
- expect(json[:content]).to include status.text
- 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
- context 'as JSON' do
- let(:format) { 'json' }
- it 'returns http not found' do
- expect(response).to have_http_status(404)
- end
- end
- context 'as HTML' do
- 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: user.account, status: status)
- get :show, params: { account_username: status.account.username, id: status.id, format: format }
- end
- context 'as HTML' do
- let(:format) { 'html' }
- it 'returns http success' do
- expect(response).to have_http_status(200)
- end
- it 'returns Link header' do
- expect(response.headers['Link'].to_s).to include 'activity+json'
- end
- it 'returns Vary header' do
- expect(response.headers['Vary']).to eq 'Accept'
- end
- it 'returns no Cache-Control header' do
- expect(response.headers).to_not include 'Cache-Control'
- end
- it 'renders status' do
- expect(response).to render_template(:show)
- expect(response.body).to include status.text
- end
- end
- context 'as JSON' do
- let(:format) { 'json' }
- it 'returns http success' do
- expect(response).to have_http_status(200)
- end
- it 'returns Link header' do
- expect(response.headers['Link'].to_s).to include 'activity+json'
- end
- it 'returns Vary header' do
- expect(response.headers['Vary']).to eq 'Accept'
- end
- it 'returns private Cache-Control header' do
- expect(response.headers['Cache-Control']).to include 'private'
- end
- it 'returns Content-Type header' do
- expect(response.headers['Content-Type']).to include 'application/activity+json'
- end
- it 'renders ActivityPub Note object' do
- json = body_as_json
- expect(json[:content]).to include status.text
- 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
- context 'as JSON' do
- let(:format) { 'json' }
- it 'returns http not found' do
- expect(response).to have_http_status(404)
- end
- end
- context 'as HTML' do
- let(:format) { 'html' }
- it 'returns http not found' do
- expect(response).to have_http_status(404)
- end
- end
- end
- end
- end
- context 'with signature' do
- let(:remote_account) { Fabricate(:account, domain: 'example.com') }
- before do
- allow(controller).to receive(:signed_request_actor).and_return(remote_account)
- 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
- context 'as HTML' do
- let(:format) { 'html' }
- it 'returns http success' do
- expect(response).to have_http_status(200)
- end
- it 'returns Link header' do
- expect(response.headers['Link'].to_s).to include 'activity+json'
- end
- it 'returns Vary header' do
- expect(response.headers['Vary']).to eq 'Accept'
- end
- it 'returns no Cache-Control header' do
- expect(response.headers).to_not include 'Cache-Control'
- end
- it 'renders status' do
- expect(response).to render_template(:show)
- expect(response.body).to include status.text
- end
- end
- context 'as JSON' do
- let(:format) { 'json' }
- it 'returns http success' do
- expect(response).to have_http_status(200)
- end
- it 'returns Link header' do
- expect(response.headers['Link'].to_s).to include 'activity+json'
- end
- it 'returns Vary header' do
- expect(response.headers['Vary']).to eq 'Accept'
- end
- it_behaves_like 'cacheable response'
- it 'returns Content-Type header' do
- expect(response.headers['Content-Type']).to include 'application/activity+json'
- end
- it 'renders ActivityPub Note object' do
- json = body_as_json
- expect(json[:content]).to include status.text
- 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
- context 'as HTML' do
- let(:format) { 'html' }
- it 'returns http success' do
- expect(response).to have_http_status(200)
- end
- it 'returns Link header' do
- expect(response.headers['Link'].to_s).to include 'activity+json'
- end
- it 'returns Vary header' do
- expect(response.headers['Vary']).to eq 'Accept'
- end
- it 'returns no Cache-Control header' do
- expect(response.headers).to_not include 'Cache-Control'
- end
- it 'renders status' do
- expect(response).to render_template(:show)
- expect(response.body).to include status.text
- end
- end
- context 'as JSON' do
- let(:format) { 'json' }
- it 'returns http success' do
- expect(response).to have_http_status(200)
- end
- it 'returns Link header' do
- expect(response.headers['Link'].to_s).to include 'activity+json'
- end
- it 'returns Vary header' do
- expect(response.headers['Vary']).to eq 'Accept'
- end
- it 'returns private Cache-Control header' do
- expect(response.headers['Cache-Control']).to include 'private'
- end
- it 'returns Content-Type header' do
- expect(response.headers['Content-Type']).to include 'application/activity+json'
- end
- it 'renders ActivityPub Note object' do
- json = body_as_json
- expect(json[:content]).to include status.text
- 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
- context 'as JSON' do
- let(:format) { 'json' }
- it 'returns http not found' do
- expect(response).to have_http_status(404)
- end
- end
- context 'as HTML' do
- 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
- context 'as HTML' do
- let(:format) { 'html' }
- it 'returns http success' do
- expect(response).to have_http_status(200)
- end
- it 'returns Link header' do
- expect(response.headers['Link'].to_s).to include 'activity+json'
- end
- it 'returns Vary header' do
- expect(response.headers['Vary']).to eq 'Accept'
- end
- it 'returns no Cache-Control header' do
- expect(response.headers).to_not include 'Cache-Control'
- end
- it 'renders status' do
- expect(response).to render_template(:show)
- expect(response.body).to include status.text
- end
- end
- context 'as JSON' do
- let(:format) { 'json' }
- it 'returns http success' do
- expect(response).to have_http_status(200)
- end
- it 'returns Link header' do
- expect(response.headers['Link'].to_s).to include 'activity+json'
- end
- it 'returns Vary header' do
- expect(response.headers['Vary']).to eq 'Accept'
- end
- it 'returns private Cache-Control header' do
- expect(response.headers['Cache-Control']).to include 'private'
- end
- it 'returns Content-Type header' do
- expect(response.headers['Content-Type']).to include 'application/activity+json'
- end
- it 'renders ActivityPub Note object' do
- json = body_as_json
- expect(json[:content]).to include status.text
- 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
- context 'as JSON' do
- let(:format) { 'json' }
- it 'returns http not found' do
- expect(response).to have_http_status(404)
- end
- end
- context 'as HTML' do
- 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) }
- context 'when account is permanently suspended' do
- before do
- account.suspend!
- account.deletion_request.destroy
- 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
- 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
- context 'when status is public' do
- pending
- end
- context 'when status is private' do
- pending
- end
- context 'when status is direct' do
- pending
- end
- context 'when signed-in' do
- context 'when status is public' do
- pending
- end
- context 'when status is private' do
- context 'when user is authorized to see it' do
- pending
- end
- context 'when user is not authorized to see it' do
- pending
- end
- end
- context 'when status is direct' do
- context 'when user is authorized to see it' do
- pending
- end
- context 'when user is not authorized to see it' do
- pending
- end
- end
- end
- context 'with signature' do
- context 'when status is public' do
- pending
- end
- context 'when status is private' do
- context 'when user is authorized to see it' do
- pending
- end
- context 'when user is not authorized to see it' do
- pending
- end
- end
- context 'when status is direct' do
- context 'when user is authorized to see it' do
- pending
- end
- context 'when user is not authorized to see it' do
- pending
- 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
- it 'returns http success' do
- expect(response).to have_http_status(200)
- end
- it 'returns Link header' do
- expect(response.headers['Link'].to_s).to include 'activity+json'
- end
- it 'returns Vary header' do
- expect(response.headers['Vary']).to eq 'Accept'
- end
- it 'returns public Cache-Control header' do
- expect(response.headers['Cache-Control']).to include 'public'
- end
- it 'renders status' do
- expect(response).to render_template(:embed)
- 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)
- end
- end
- end
- end
|