Revert Activity tombstones, add ObjectTombstone struct
This commit is contained in:
parent
2bbec33c71
commit
f75f707f6c
9 changed files with 43 additions and 62 deletions
|
|
@ -363,7 +363,7 @@ defmodule Pleroma.Web.ActivityPub.TransmogrifierTest do
|
|||
|
||||
{:ok, %Activity{local: false}} = Transmogrifier.handle_incoming(data)
|
||||
|
||||
assert Repo.get(Activity, activity.id).data["type"] == "Tombstone"
|
||||
refute Repo.get(Activity, activity.id)
|
||||
end
|
||||
|
||||
test "it fails for incoming deletes with spoofed origin" do
|
||||
|
|
|
|||
|
|
@ -292,7 +292,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
|
|||
|
||||
assert %{} = json_response(conn, 200)
|
||||
|
||||
assert Repo.get(Activity, activity.id).data["type"] == "Tombstone"
|
||||
refute Repo.get(Activity, activity.id)
|
||||
end
|
||||
|
||||
test "when you didn't create it", %{conn: conn} do
|
||||
|
|
@ -308,6 +308,25 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
|
|||
|
||||
assert Repo.get(Activity, activity.id) == activity
|
||||
end
|
||||
|
||||
# test "404 when making an attempt to get it" do
|
||||
# activity = insert(:note_activity)
|
||||
# author = User.get_by_ap_id(activity.data["actor"])
|
||||
|
||||
# conn =
|
||||
# conn
|
||||
# |> assign(:user, author)
|
||||
# |> delete("/api/v1/statuses/#{activity.id}")
|
||||
|
||||
# assert %{} = json_response(conn, 200)
|
||||
|
||||
# conn =
|
||||
# build_conn()
|
||||
# |> assign(:user, author)
|
||||
# |> get("/api/v1/statuses/#{activity.id}")
|
||||
|
||||
# assert %{} = json_response(conn, 200)
|
||||
# end
|
||||
end
|
||||
|
||||
describe "filters" do
|
||||
|
|
|
|||
|
|
@ -23,8 +23,8 @@ defmodule Pleroma.Web.OStatus.DeleteHandlingTest do
|
|||
|
||||
{:ok, [delete]} = OStatus.handle_incoming(incoming)
|
||||
|
||||
assert Repo.get(Activity, note.id).data["type"] == "Tombstone"
|
||||
assert Repo.get(Activity, like.id).data["type"] == "Tombstone"
|
||||
refute Repo.get(Activity, note.id)
|
||||
refute Repo.get(Activity, like.id)
|
||||
assert Object.get_by_ap_id(note.data["object"]["id"]).data["type"] == "Tombstone"
|
||||
assert Repo.get(Activity, second_note.id)
|
||||
assert Object.get_by_ap_id(second_note.data["object"]["id"])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue