50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
require 'rails_helper'
 | 
						|
 | 
						|
RSpec.describe InstanceActorsController do
 | 
						|
  describe 'GET #show' do
 | 
						|
    context 'with JSON' do
 | 
						|
      let(:format) { 'json' }
 | 
						|
 | 
						|
      shared_examples 'shared behavior' do
 | 
						|
        before do
 | 
						|
          get :show, params: { format: format }
 | 
						|
        end
 | 
						|
 | 
						|
        it 'returns http success with correct media type, headers, and session values' do
 | 
						|
          expect(response).to have_http_status(200)
 | 
						|
 | 
						|
          expect(response.media_type).to eq 'application/activity+json'
 | 
						|
 | 
						|
          expect(response.cookies).to be_empty
 | 
						|
          expect(response.headers['Set-Cookies']).to be_nil
 | 
						|
 | 
						|
          expect(session).to be_empty
 | 
						|
 | 
						|
          expect(response.headers['Cache-Control']).to include 'public'
 | 
						|
 | 
						|
          expect(body_as_json)
 | 
						|
            .to include(:id, :type, :preferredUsername, :inbox, :publicKey, :inbox, :outbox, :url)
 | 
						|
        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 }
 | 
						|
 | 
						|
        it_behaves_like 'shared behavior'
 | 
						|
      end
 | 
						|
 | 
						|
      context 'with authorized fetch mode' do
 | 
						|
        let(:authorized_fetch_mode) { true }
 | 
						|
 | 
						|
        it_behaves_like 'shared behavior'
 | 
						|
      end
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |