2023-02-21 16:55:31 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-02-06 06:31:03 -08:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-03 20:49:53 -07:00
|
|
|
RSpec.describe InstanceActorsController do
|
2022-02-06 06:31:03 -08:00
|
|
|
describe 'GET #show' do
|
2023-05-03 20:49:08 -07:00
|
|
|
context 'with JSON' do
|
2022-02-06 06:31:03 -08:00
|
|
|
let(:format) { 'json' }
|
|
|
|
|
|
|
|
shared_examples 'shared behavior' do
|
|
|
|
before do
|
|
|
|
get :show, params: { format: format }
|
|
|
|
end
|
|
|
|
|
2024-01-26 08:28:50 -08:00
|
|
|
it 'returns http success with correct media type, headers, and session values' do
|
2022-02-06 06:31:03 -08:00
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
|
|
|
|
expect(response.media_type).to eq 'application/activity+json'
|
|
|
|
|
|
|
|
expect(response.cookies).to be_empty
|
2023-02-17 04:45:27 -08:00
|
|
|
expect(response.headers['Set-Cookies']).to be_nil
|
2022-02-06 06:31:03 -08:00
|
|
|
|
|
|
|
expect(session).to be_empty
|
|
|
|
|
|
|
|
expect(response.headers['Cache-Control']).to include 'public'
|
|
|
|
|
2024-01-26 08:28:50 -08:00
|
|
|
expect(body_as_json)
|
|
|
|
.to include(:id, :type, :preferredUsername, :inbox, :publicKey, :inbox, :outbox, :url)
|
2022-02-06 06:31:03 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(controller).to receive(:authorized_fetch_mode?).and_return(authorized_fetch_mode)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without authorized fetch mode' do
|
|
|
|
let(:authorized_fetch_mode) { false }
|
2023-02-18 14:10:19 -08:00
|
|
|
|
2022-02-06 06:31:03 -08:00
|
|
|
it_behaves_like 'shared behavior'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with authorized fetch mode' do
|
|
|
|
let(:authorized_fetch_mode) { true }
|
2023-02-18 14:10:19 -08:00
|
|
|
|
2022-02-06 06:31:03 -08:00
|
|
|
it_behaves_like 'shared behavior'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|