about summary refs log blame commit diff
path: root/spec/controllers/activitypub/inboxes_controller_spec.rb
blob: f3bc23953a5c7bd834fa985f8689ac3760919099 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                             

                                                                   




                                                                                    
                            
                                                                                                 
 
               
                                

                                   


                                                 
                                  
                                

                                         

                                                 
     
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe ActivityPub::InboxesController, type: :controller do
  let(:remote_account) { nil }

  before do
    allow(controller).to receive(:signed_request_account).and_return(remote_account)
  end

  describe 'POST #create' do
    context 'with signature' do
      let(:remote_account) { Fabricate(:account, domain: 'example.com', protocol: :activitypub) }

      before do
        post :create, body: '{}'
      end

      it 'returns http accepted' do
        expect(response).to have_http_status(202)
      end
    end

    context 'without signature' do
      before do
        post :create, body: '{}'
      end

      it 'returns http not authorized' do
        expect(response).to have_http_status(401)
      end
    end
  end
end