26 lines
		
	
	
		
			713 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			713 B
		
	
	
	
		
			Ruby
		
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
require 'rails_helper'
 | 
						|
 | 
						|
RSpec.describe 'ActivityPub Likes' do
 | 
						|
  let(:account) { Fabricate(:account) }
 | 
						|
  let(:status) { Fabricate :status, account: account }
 | 
						|
 | 
						|
  before { Fabricate :favourite, status: status }
 | 
						|
 | 
						|
  describe 'GET /accounts/:account_username/statuses/:status_id/likes' do
 | 
						|
    it 'returns http success and activity json types and correct items count' do
 | 
						|
      get account_status_likes_path(account, status)
 | 
						|
 | 
						|
      expect(response)
 | 
						|
        .to have_http_status(200)
 | 
						|
      expect(response.media_type)
 | 
						|
        .to eq 'application/activity+json'
 | 
						|
 | 
						|
      expect(response.parsed_body)
 | 
						|
        .to include(type: 'Collection')
 | 
						|
        .and include(totalItems: 1)
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |