You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.3 KiB
81 lines
2.3 KiB
require 'rails_helper' |
|
|
|
RSpec.describe ReblogService, type: :service do |
|
let(:alice) { Fabricate(:account, username: 'alice') } |
|
|
|
context 'creates a reblog with appropriate visibility' do |
|
let(:visibility) { :public } |
|
let(:reblog_visibility) { :public } |
|
let(:status) { Fabricate(:status, account: alice, visibility: visibility) } |
|
|
|
subject { ReblogService.new } |
|
|
|
before do |
|
subject.call(alice, status, visibility: reblog_visibility) |
|
end |
|
|
|
describe 'boosting privately' do |
|
let(:reblog_visibility) { :private } |
|
|
|
it 'reblogs privately' do |
|
expect(status.reblogs.first.visibility).to eq 'private' |
|
end |
|
end |
|
|
|
describe 'public reblogs of private toots should remain private' do |
|
let(:visibility) { :private } |
|
let(:reblog_visibility) { :public } |
|
|
|
it 'reblogs privately' do |
|
expect(status.reblogs.first.visibility).to eq 'private' |
|
end |
|
end |
|
end |
|
|
|
context 'OStatus' do |
|
let(:bob) { Fabricate(:account, username: 'bob', domain: 'example.com', salmon_url: 'http://salmon.example.com') } |
|
let(:status) { Fabricate(:status, account: bob, uri: 'tag:example.com;something:something') } |
|
|
|
subject { ReblogService.new } |
|
|
|
before do |
|
stub_request(:post, 'http://salmon.example.com') |
|
subject.call(alice, status) |
|
end |
|
|
|
it 'creates a reblog' do |
|
expect(status.reblogs.count).to eq 1 |
|
end |
|
end |
|
|
|
context 'ActivityPub' do |
|
let(:bob) { Fabricate(:account, username: 'bob', protocol: :activitypub, domain: 'example.com', inbox_url: 'http://example.com/inbox') } |
|
let(:status) { Fabricate(:status, account: bob) } |
|
|
|
subject { ReblogService.new } |
|
|
|
before do |
|
stub_request(:post, bob.inbox_url) |
|
allow(ActivityPub::DistributionWorker).to receive(:perform_async) |
|
subject.call(alice, status) |
|
end |
|
|
|
it 'creates a reblog' do |
|
expect(status.reblogs.count).to eq 1 |
|
end |
|
|
|
describe 'after_create_commit :store_uri' do |
|
it 'keeps consistent reblog count' do |
|
expect(status.reblogs.count).to eq 1 |
|
end |
|
end |
|
|
|
it 'distributes to followers' do |
|
expect(ActivityPub::DistributionWorker).to have_received(:perform_async) |
|
end |
|
|
|
it 'sends an announce activity to the author' do |
|
expect(a_request(:post, bob.inbox_url)).to have_been_made.once |
|
end |
|
end |
|
end
|
|
|