* Add support for an instance actor * Skip username validation for local Application accounts * Add migration script to create instance actor * Make Codeclimate happy * Switch to id -99 for instance actor * Remove unused `icon` and `image` attributes from instance actor * Use if/elsif/else instead of return + ternary operator * Add instance actor to fresh installs * Use instance actor as instance representative Use instance actor for forwarding reports, relay operations, and spam auto-reporting. * Seed database in test environment * Fix single-user mode * Fix tests * Fix specs to accomodate for an extra `Account` * Auto-reject follows on instance actor Following an instance actor might make sense, but we are not handling that right now, so auto-reject. * Fix webfinger lookup and serialization for instance actor * Rename instance actor * Make it clear in the HTML view that the instance actor should not be blocked * Raise cache time for instance actor as there's no dynamic content * Re-use /about/more with a flash message for instance actor profile
		
			
				
	
	
		
			50 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require 'rails_helper'
 | |
| 
 | |
| RSpec.describe FetchRemoteAccountService, type: :service do
 | |
|   let(:url) { 'https://example.com/alice' }
 | |
|   let(:prefetched_body) { nil }
 | |
|   let(:protocol) { :ostatus }
 | |
| 
 | |
|   subject { FetchRemoteAccountService.new.call(url, prefetched_body, protocol) }
 | |
| 
 | |
|   let(:actor) do
 | |
|     {
 | |
|       '@context': 'https://www.w3.org/ns/activitystreams',
 | |
|       id: 'https://example.com/alice',
 | |
|       type: 'Person',
 | |
|       preferredUsername: 'alice',
 | |
|       name: 'Alice',
 | |
|       summary: 'Foo bar',
 | |
|       inbox: 'http://example.com/alice/inbox',
 | |
|     }
 | |
|   end
 | |
| 
 | |
|   let(:webfinger) { { subject: 'acct:alice@example.com', links: [{ rel: 'self', href: 'https://example.com/alice' }] } }
 | |
|   let(:xml) { File.read(Rails.root.join('spec', 'fixtures', 'xml', 'mastodon.atom')) }
 | |
| 
 | |
|   shared_examples 'return Account' do
 | |
|     it { is_expected.to be_an Account }
 | |
|   end
 | |
| 
 | |
|   context 'protocol is :activitypub' do
 | |
|     let(:prefetched_body) { Oj.dump(actor) }
 | |
|     let(:protocol) { :activitypub }
 | |
| 
 | |
|     before do
 | |
|       stub_request(:get, 'https://example.com/.well-known/webfinger?resource=acct:alice@example.com').to_return(body: Oj.dump(webfinger), headers: { 'Content-Type': 'application/jrd+json' })
 | |
|     end
 | |
| 
 | |
|     include_examples 'return Account'
 | |
|   end
 | |
| 
 | |
|   context 'when prefetched_body is nil' do
 | |
|     context 'protocol is :activitypub' do
 | |
|       before do
 | |
|         stub_request(:get, url).to_return(status: 200, body: Oj.dump(actor), headers: { 'Content-Type' => 'application/activity+json' })
 | |
|         stub_request(:get, 'https://example.com/.well-known/webfinger?resource=acct:alice@example.com').to_return(body: Oj.dump(webfinger), headers: { 'Content-Type': 'application/jrd+json' })
 | |
|       end
 | |
| 
 | |
|       include_examples 'return Account'
 | |
|     end
 | |
|   end
 | |
| end
 |