2019-10-16 14:16:39 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-26 14:37:42 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-10-16 14:16:39 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.ActivityPub.SideEffectsTest do
|
|
|
|
use Pleroma.DataCase
|
2019-10-23 10:25:20 +00:00
|
|
|
|
2020-05-05 13:08:41 +00:00
|
|
|
alias Pleroma.Activity
|
2020-04-17 13:50:15 +00:00
|
|
|
alias Pleroma.Notification
|
2019-10-16 14:16:39 +00:00
|
|
|
alias Pleroma.Object
|
2020-04-17 13:50:15 +00:00
|
|
|
alias Pleroma.Repo
|
2019-10-16 14:16:39 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2019-10-23 10:25:20 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Builder
|
2019-10-16 14:16:39 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.SideEffects
|
2019-10-23 10:25:20 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2019-10-16 14:16:39 +00:00
|
|
|
|
|
|
|
import Pleroma.Factory
|
2019-10-17 16:36:52 +00:00
|
|
|
|
2020-05-05 13:08:41 +00:00
|
|
|
describe "Undo objects" do
|
|
|
|
setup do
|
|
|
|
poster = insert(:user)
|
|
|
|
user = insert(:user)
|
|
|
|
{:ok, post} = CommonAPI.post(poster, %{"status" => "hey"})
|
|
|
|
{:ok, like} = CommonAPI.favorite(user, post.id)
|
2020-05-05 14:17:09 +00:00
|
|
|
{:ok, reaction, _} = CommonAPI.react_with_emoji(post.id, user, "👍")
|
2020-05-05 14:42:34 +00:00
|
|
|
{:ok, announce, _} = CommonAPI.repeat(post.id, user)
|
2020-05-05 14:17:09 +00:00
|
|
|
|
2020-05-05 13:08:41 +00:00
|
|
|
{:ok, undo_data, _meta} = Builder.undo(user, like)
|
|
|
|
{:ok, like_undo, _meta} = ActivityPub.persist(undo_data, local: true)
|
|
|
|
|
2020-05-05 14:17:09 +00:00
|
|
|
{:ok, undo_data, _meta} = Builder.undo(user, reaction)
|
|
|
|
{:ok, reaction_undo, _meta} = ActivityPub.persist(undo_data, local: true)
|
|
|
|
|
2020-05-05 14:42:34 +00:00
|
|
|
{:ok, undo_data, _meta} = Builder.undo(user, announce)
|
|
|
|
{:ok, announce_undo, _meta} = ActivityPub.persist(undo_data, local: true)
|
|
|
|
|
2020-05-05 14:17:09 +00:00
|
|
|
%{
|
|
|
|
like_undo: like_undo,
|
|
|
|
post: post,
|
|
|
|
like: like,
|
|
|
|
reaction_undo: reaction_undo,
|
2020-05-05 14:42:34 +00:00
|
|
|
reaction: reaction,
|
|
|
|
announce_undo: announce_undo,
|
|
|
|
announce: announce
|
2020-05-05 14:17:09 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2020-05-05 14:42:34 +00:00
|
|
|
test "an announce undo removes the announce from the object", %{
|
|
|
|
announce_undo: announce_undo,
|
|
|
|
post: post
|
|
|
|
} do
|
|
|
|
{:ok, _announce_undo, _} = SideEffects.handle(announce_undo)
|
|
|
|
|
|
|
|
object = Object.get_by_ap_id(post.data["object"])
|
|
|
|
|
|
|
|
assert object.data["announcement_count"] == 0
|
|
|
|
assert object.data["announcements"] == []
|
|
|
|
end
|
|
|
|
|
|
|
|
test "deletes the original announce", %{announce_undo: announce_undo, announce: announce} do
|
|
|
|
{:ok, _announce_undo, _} = SideEffects.handle(announce_undo)
|
|
|
|
refute Activity.get_by_id(announce.id)
|
|
|
|
end
|
|
|
|
|
2020-05-05 14:17:09 +00:00
|
|
|
test "a reaction undo removes the reaction from the object", %{
|
|
|
|
reaction_undo: reaction_undo,
|
|
|
|
post: post
|
|
|
|
} do
|
|
|
|
{:ok, _reaction_undo, _} = SideEffects.handle(reaction_undo)
|
|
|
|
|
|
|
|
object = Object.get_by_ap_id(post.data["object"])
|
|
|
|
|
|
|
|
assert object.data["reaction_count"] == 0
|
|
|
|
assert object.data["reactions"] == []
|
|
|
|
end
|
|
|
|
|
|
|
|
test "deletes the original reaction", %{reaction_undo: reaction_undo, reaction: reaction} do
|
|
|
|
{:ok, _reaction_undo, _} = SideEffects.handle(reaction_undo)
|
|
|
|
refute Activity.get_by_id(reaction.id)
|
2020-05-05 13:08:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "a like undo removes the like from the object", %{like_undo: like_undo, post: post} do
|
|
|
|
{:ok, _like_undo, _} = SideEffects.handle(like_undo)
|
|
|
|
|
|
|
|
object = Object.get_by_ap_id(post.data["object"])
|
|
|
|
|
|
|
|
assert object.data["like_count"] == 0
|
|
|
|
assert object.data["likes"] == []
|
|
|
|
end
|
|
|
|
|
|
|
|
test "deletes the original like", %{like_undo: like_undo, like: like} do
|
|
|
|
{:ok, _like_undo, _} = SideEffects.handle(like_undo)
|
|
|
|
refute Activity.get_by_id(like.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-16 14:16:39 +00:00
|
|
|
describe "like objects" do
|
|
|
|
setup do
|
2020-04-17 13:50:15 +00:00
|
|
|
poster = insert(:user)
|
2019-10-16 14:16:39 +00:00
|
|
|
user = insert(:user)
|
2020-04-17 13:50:15 +00:00
|
|
|
{:ok, post} = CommonAPI.post(poster, %{"status" => "hey"})
|
2019-10-16 14:16:39 +00:00
|
|
|
|
|
|
|
{:ok, like_data, _meta} = Builder.like(user, post.object)
|
2019-11-05 14:02:09 +00:00
|
|
|
{:ok, like, _meta} = ActivityPub.persist(like_data, local: true)
|
2019-10-16 14:16:39 +00:00
|
|
|
|
2020-04-17 13:50:15 +00:00
|
|
|
%{like: like, user: user, poster: poster}
|
2019-10-16 14:16:39 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "add the like to the original object", %{like: like, user: user} do
|
|
|
|
{:ok, like, _} = SideEffects.handle(like)
|
|
|
|
object = Object.get_by_ap_id(like.data["object"])
|
|
|
|
assert object.data["like_count"] == 1
|
|
|
|
assert user.ap_id in object.data["likes"]
|
|
|
|
end
|
2020-04-17 13:50:15 +00:00
|
|
|
|
|
|
|
test "creates a notification", %{like: like, poster: poster} do
|
|
|
|
{:ok, like, _} = SideEffects.handle(like)
|
|
|
|
assert Repo.get_by(Notification, user_id: poster.id, activity_id: like.id)
|
|
|
|
end
|
2019-10-16 14:16:39 +00:00
|
|
|
end
|
|
|
|
end
|