* Federate pinned statuses over ActivityPub * Display pinned toots in web UI Fix #6117 * Fix migration * Fix tests * Update outbox_serializer.rb * Update remove_serializer.rb * Update add_serializer.rb * Update fetch_featured_collection_service.rb
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
require 'rails_helper'
 | 
						|
 | 
						|
RSpec.describe ActivityPub::Activity::Update do
 | 
						|
  let!(:sender) { Fabricate(:account) }
 | 
						|
 | 
						|
  before do
 | 
						|
    stub_request(:get, actor_json[:outbox]).to_return(status: 404)
 | 
						|
    stub_request(:get, actor_json[:followers]).to_return(status: 404)
 | 
						|
    stub_request(:get, actor_json[:following]).to_return(status: 404)
 | 
						|
    stub_request(:get, actor_json[:featured]).to_return(status: 404)
 | 
						|
 | 
						|
    sender.update!(uri: ActivityPub::TagManager.instance.uri_for(sender))
 | 
						|
  end
 | 
						|
 | 
						|
  let(:modified_sender) do
 | 
						|
    sender.dup.tap do |modified_sender|
 | 
						|
      modified_sender.display_name = 'Totally modified now'
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  let(:actor_json) do
 | 
						|
    ActiveModelSerializers::SerializableResource.new(modified_sender, serializer: ActivityPub::ActorSerializer, key_transform: :camel_lower).as_json
 | 
						|
  end
 | 
						|
 | 
						|
  let(:json) do
 | 
						|
    {
 | 
						|
      '@context': 'https://www.w3.org/ns/activitystreams',
 | 
						|
      id: 'foo',
 | 
						|
      type: 'Update',
 | 
						|
      actor: ActivityPub::TagManager.instance.uri_for(sender),
 | 
						|
      object: actor_json,
 | 
						|
    }.with_indifferent_access
 | 
						|
  end
 | 
						|
 | 
						|
  describe '#perform' do
 | 
						|
    subject { described_class.new(json, sender) }
 | 
						|
 | 
						|
    before do
 | 
						|
      subject.perform
 | 
						|
    end
 | 
						|
 | 
						|
    it 'updates profile' do
 | 
						|
      expect(sender.reload.display_name).to eq 'Totally modified now'
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |