2017-08-08 21:52:15 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe ActivityPub::Activity::Delete do
|
2017-11-30 03:50:05 +01:00
|
|
|
let(:sender) { Fabricate(:account, domain: 'example.com') }
|
|
|
|
let(:status) { Fabricate(:status, account: sender, uri: 'foobar') }
|
2017-08-08 21:52:15 +02:00
|
|
|
|
|
|
|
let(:json) do
|
|
|
|
{
|
|
|
|
'@context': 'https://www.w3.org/ns/activitystreams',
|
|
|
|
id: 'foo',
|
|
|
|
type: 'Delete',
|
|
|
|
actor: ActivityPub::TagManager.instance.uri_for(sender),
|
|
|
|
object: ActivityPub::TagManager.instance.uri_for(status),
|
2017-08-30 15:37:02 +02:00
|
|
|
signature: 'foo',
|
2017-08-08 21:52:15 +02:00
|
|
|
}.with_indifferent_access
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#perform' do
|
|
|
|
subject { described_class.new(json, sender) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
subject.perform
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'deletes sender\'s status' do
|
|
|
|
expect(Status.find_by(id: status.id)).to be_nil
|
|
|
|
end
|
|
|
|
end
|
2017-08-28 22:08:11 +02:00
|
|
|
|
|
|
|
context 'when the status has been reblogged' do
|
|
|
|
describe '#perform' do
|
|
|
|
subject { described_class.new(json, sender) }
|
2017-11-30 03:50:05 +01:00
|
|
|
let!(:reblogger) { Fabricate(:account) }
|
|
|
|
let!(:follower) { Fabricate(:account, username: 'follower', protocol: :activitypub, domain: 'example.com', inbox_url: 'http://example.com/inbox') }
|
|
|
|
let!(:reblog) { Fabricate(:status, account: reblogger, reblog: status) }
|
2017-08-28 22:08:11 +02:00
|
|
|
|
|
|
|
before do
|
|
|
|
stub_request(:post, 'http://example.com/inbox').to_return(status: 200)
|
|
|
|
follower.follow!(reblogger)
|
|
|
|
subject.perform
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'deletes sender\'s status' do
|
|
|
|
expect(Status.find_by(id: status.id)).to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sends delete activity to followers of rebloggers' do
|
2017-11-30 03:50:05 +01:00
|
|
|
expect(a_request(:post, 'http://example.com/inbox')).to have_been_made.once
|
2017-08-28 22:08:11 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-04-21 04:46:09 +02:00
|
|
|
|
|
|
|
context 'when the status has been reported' do
|
|
|
|
describe '#perform' do
|
|
|
|
subject { described_class.new(json, sender) }
|
|
|
|
let!(:reporter) { Fabricate(:account) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
reporter.reports.create!(target_account: status.account, status_ids: [status.id], forwarded: false)
|
|
|
|
subject.perform
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks the status as deleted' do
|
|
|
|
expect(Status.find_by(id: status.id)).to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'actually keeps a copy for inspection' do
|
|
|
|
expect(Status.with_discarded.find_by(id: status.id)).to_not be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|