2023-02-21 16:55:31 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-19 04:13:47 -07:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-03-13 01:39:26 -07:00
|
|
|
RSpec.describe FavouriteService do
|
2023-06-06 04:58:33 -07:00
|
|
|
subject { described_class.new }
|
2017-02-12 08:28:15 -08:00
|
|
|
|
2023-02-19 20:24:14 -08:00
|
|
|
let(:sender) { Fabricate(:account, username: 'alice') }
|
|
|
|
|
2017-02-12 08:28:15 -08:00
|
|
|
describe 'local' do
|
2022-01-27 15:46:42 -08:00
|
|
|
let(:bob) { Fabricate(:account) }
|
2017-02-12 08:28:15 -08:00
|
|
|
let(:status) { Fabricate(:status, account: bob) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
subject.call(sender, status)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a favourite' do
|
|
|
|
expect(status.favourites.first).to_not be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-12 15:44:41 -07:00
|
|
|
describe 'remote ActivityPub' do
|
2022-01-27 15:46:42 -08:00
|
|
|
let(:bob) { Fabricate(:account, protocol: :activitypub, username: 'bob', domain: 'example.com', inbox_url: 'http://example.com/inbox') }
|
2017-08-12 15:44:41 -07:00
|
|
|
let(:status) { Fabricate(:status, account: bob) }
|
|
|
|
|
|
|
|
before do
|
2023-02-18 14:38:14 -08:00
|
|
|
stub_request(:post, 'http://example.com/inbox').to_return(status: 200, body: '', headers: {})
|
2017-08-12 15:44:41 -07:00
|
|
|
subject.call(sender, status)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a favourite' do
|
|
|
|
expect(status.favourites.first).to_not be_nil
|
|
|
|
end
|
|
|
|
|
2024-01-10 03:06:58 -08:00
|
|
|
it 'sends a like activity', :sidekiq_inline do
|
2023-02-18 14:38:14 -08:00
|
|
|
expect(a_request(:post, 'http://example.com/inbox')).to have_been_made.once
|
2017-08-12 15:44:41 -07:00
|
|
|
end
|
|
|
|
end
|
2016-03-19 04:13:47 -07:00
|
|
|
end
|