diff options
author | Karen Konou <konoukaren@gmail.com> | 2019-03-04 10:47:04 +0100 |
---|---|---|
committer | Karen Konou <konoukaren@gmail.com> | 2019-03-04 10:47:04 +0100 |
commit | 8302cdb5dc2b2f74d87f7b36a5ed67e29ea129c0 (patch) | |
tree | df561bd45f9db3c97d772aac3f6681fdbd35d967 /test | |
parent | abd0b85efd410c4d6c86957f1a725941f2165f7b (diff) | |
download | pleroma-8302cdb5dc2b2f74d87f7b36a5ed67e29ea129c0.tar.gz pleroma-8302cdb5dc2b2f74d87f7b36a5ed67e29ea129c0.zip |
Expand "to" of delete activities
Diffstat (limited to 'test')
-rw-r--r-- | test/web/activity_pub/activity_pub_test.exs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/web/activity_pub/activity_pub_test.exs b/test/web/activity_pub/activity_pub_test.exs index a6f8b822a..0abb18303 100644 --- a/test/web/activity_pub/activity_pub_test.exs +++ b/test/web/activity_pub/activity_pub_test.exs @@ -591,6 +591,16 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubTest do assert Repo.get(Object, object.id).data["type"] == "Tombstone" end + + test "it creates a delete activity and checks that it is also sent to users mentioned by the deleted object" do + user = insert(:user) + note = insert(:note_activity) + object = Object.get_by_ap_id(note.data["object"]["id"]) + object = Kernel.put_in(object.data["to"], [user.ap_id]) + {:ok, delete} = ActivityPub.delete(object) + + assert user.ap_id in delete.data["to"] + end end describe "timeline post-processing" do |