about summary refs log tree commit diff
path: root/spec/lib/activitypub/activity/delete_spec.rb
diff options
context:
space:
mode:
authorunarist <m.unarist@gmail.com>2017-08-29 05:08:11 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-08-28 22:08:11 +0200
commit938cd2875b14db3655a6c9f82f672f4baf7720a3 (patch)
tree2fbde93a6a4843fc9105d7810b1edc337fd9a629 /spec/lib/activitypub/activity/delete_spec.rb
parent7876aed134be16d04cf7d177299ae4fda690c219 (diff)
Fix Delete activity handling when the status has been reblogged (#4729)
Diffstat (limited to 'spec/lib/activitypub/activity/delete_spec.rb')
-rw-r--r--spec/lib/activitypub/activity/delete_spec.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/spec/lib/activitypub/activity/delete_spec.rb b/spec/lib/activitypub/activity/delete_spec.rb
index 398669b48..6601f7262 100644
--- a/spec/lib/activitypub/activity/delete_spec.rb
+++ b/spec/lib/activitypub/activity/delete_spec.rb
@@ -25,4 +25,28 @@ RSpec.describe ActivityPub::Activity::Delete do
       expect(Status.find_by(id: status.id)).to be_nil
     end
   end
+
+  context 'when the status has been reblogged' do
+    describe '#perform' do
+      subject { described_class.new(json, sender) }
+      let(:reblogger) { Fabricate(:account) }
+      let(:follower)   { Fabricate(:account, username: 'follower', protocol: :activitypub, domain: 'example.com', inbox_url: 'http://example.com/inbox') }
+
+      before do
+        stub_request(:post, 'http://example.com/inbox').to_return(status: 200)
+        follower.follow!(reblogger)
+        Fabricate(:status, account: reblogger, reblog: status)
+        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
+        # one for Delete original post, and one for Undo reblog (normal delivery)
+        expect(a_request(:post, 'http://example.com/inbox')).to have_been_made.twice
+      end
+    end
+  end
 end