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
|
2020-04-30 13:57:27 +00:00
|
|
|
use Oban.Testing, repo: Pleroma.Repo
|
2019-10-16 14:16:39 +00:00
|
|
|
use Pleroma.DataCase
|
2019-10-23 10:25:20 +00:00
|
|
|
|
2020-04-30 13:26:23 +00:00
|
|
|
alias Pleroma.Activity
|
2020-04-09 10:44:20 +00:00
|
|
|
alias Pleroma.Chat
|
2020-06-06 09:51:10 +00:00
|
|
|
alias Pleroma.Chat.MessageReference
|
2020-04-17 14:55:01 +00:00
|
|
|
alias Pleroma.Notification
|
2019-10-16 14:16:39 +00:00
|
|
|
alias Pleroma.Object
|
2020-04-17 14:55:01 +00:00
|
|
|
alias Pleroma.Repo
|
2020-04-30 13:57:27 +00:00
|
|
|
alias Pleroma.Tests.ObanHelpers
|
2020-04-30 13:58:37 +00:00
|
|
|
alias Pleroma.User
|
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
|
2020-04-30 16:10:36 +00:00
|
|
|
import Mock
|
2019-10-17 16:36:52 +00:00
|
|
|
|
2020-06-05 14:47:02 +00:00
|
|
|
describe "handle_after_transaction" do
|
2020-06-07 12:52:56 +00:00
|
|
|
test "it streams out notifications and streams" do
|
2020-06-05 14:47:02 +00:00
|
|
|
author = insert(:user, local: true)
|
|
|
|
recipient = insert(:user, local: true)
|
|
|
|
|
|
|
|
{:ok, chat_message_data, _meta} = Builder.chat_message(author, recipient.ap_id, "hey")
|
|
|
|
|
|
|
|
{:ok, create_activity_data, _meta} =
|
|
|
|
Builder.create(author, chat_message_data["id"], [recipient.ap_id])
|
|
|
|
|
|
|
|
{:ok, create_activity, _meta} = ActivityPub.persist(create_activity_data, local: false)
|
|
|
|
|
|
|
|
{:ok, _create_activity, meta} =
|
|
|
|
SideEffects.handle(create_activity, local: false, object_data: chat_message_data)
|
|
|
|
|
2020-06-07 12:52:56 +00:00
|
|
|
assert [notification] = meta[:notifications]
|
2020-06-05 14:47:02 +00:00
|
|
|
|
|
|
|
with_mocks([
|
|
|
|
{
|
|
|
|
Pleroma.Web.Streamer,
|
|
|
|
[],
|
|
|
|
[
|
|
|
|
stream: fn _, _ -> nil end
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Pleroma.Web.Push,
|
|
|
|
[],
|
|
|
|
[
|
|
|
|
send: fn _ -> nil end
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]) do
|
|
|
|
SideEffects.handle_after_transaction(meta)
|
|
|
|
|
|
|
|
assert called(Pleroma.Web.Streamer.stream(["user", "user:notification"], notification))
|
2020-06-07 12:52:56 +00:00
|
|
|
assert called(Pleroma.Web.Streamer.stream(["user", "user:pleroma_chat"], :_))
|
2020-06-05 14:47:02 +00:00
|
|
|
assert called(Pleroma.Web.Push.send(notification))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-30 13:26:23 +00:00
|
|
|
describe "delete objects" do
|
|
|
|
setup do
|
|
|
|
user = insert(:user)
|
2020-04-30 17:47:13 +00:00
|
|
|
other_user = insert(:user)
|
|
|
|
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, op} = CommonAPI.post(other_user, %{status: "big oof"})
|
|
|
|
{:ok, post} = CommonAPI.post(user, %{status: "hey", in_reply_to_id: op})
|
2020-05-11 13:38:19 +00:00
|
|
|
{:ok, favorite} = CommonAPI.favorite(user, post.id)
|
2020-04-30 13:26:23 +00:00
|
|
|
object = Object.normalize(post)
|
|
|
|
{:ok, delete_data, _meta} = Builder.delete(user, object.data["id"])
|
2020-04-30 13:57:27 +00:00
|
|
|
{:ok, delete_user_data, _meta} = Builder.delete(user, user.ap_id)
|
2020-04-30 13:26:23 +00:00
|
|
|
{:ok, delete, _meta} = ActivityPub.persist(delete_data, local: true)
|
2020-04-30 13:57:27 +00:00
|
|
|
{:ok, delete_user, _meta} = ActivityPub.persist(delete_user_data, local: true)
|
2020-05-11 13:38:19 +00:00
|
|
|
|
|
|
|
%{
|
|
|
|
user: user,
|
|
|
|
delete: delete,
|
|
|
|
post: post,
|
|
|
|
object: object,
|
|
|
|
delete_user: delete_user,
|
|
|
|
op: op,
|
|
|
|
favorite: favorite
|
|
|
|
}
|
2020-04-30 13:26:23 +00:00
|
|
|
end
|
|
|
|
|
2020-04-30 17:47:13 +00:00
|
|
|
test "it handles object deletions", %{
|
|
|
|
delete: delete,
|
|
|
|
post: post,
|
|
|
|
object: object,
|
|
|
|
user: user,
|
2020-05-11 13:38:19 +00:00
|
|
|
op: op,
|
|
|
|
favorite: favorite
|
2020-04-30 17:47:13 +00:00
|
|
|
} do
|
2020-04-30 16:19:39 +00:00
|
|
|
with_mock Pleroma.Web.ActivityPub.ActivityPub, [:passthrough],
|
2020-04-30 16:10:36 +00:00
|
|
|
stream_out: fn _ -> nil end,
|
|
|
|
stream_out_participations: fn _, _ -> nil end do
|
|
|
|
{:ok, delete, _} = SideEffects.handle(delete)
|
2020-05-11 13:06:23 +00:00
|
|
|
user = User.get_cached_by_ap_id(object.data["actor"])
|
|
|
|
|
|
|
|
assert called(Pleroma.Web.ActivityPub.ActivityPub.stream_out(delete))
|
|
|
|
assert called(Pleroma.Web.ActivityPub.ActivityPub.stream_out_participations(object, user))
|
|
|
|
end
|
|
|
|
|
|
|
|
object = Object.get_by_id(object.id)
|
|
|
|
assert object.data["type"] == "Tombstone"
|
|
|
|
refute Activity.get_by_id(post.id)
|
2020-05-11 13:38:19 +00:00
|
|
|
refute Activity.get_by_id(favorite.id)
|
2020-05-11 13:06:23 +00:00
|
|
|
|
|
|
|
user = User.get_by_id(user.id)
|
|
|
|
assert user.note_count == 0
|
|
|
|
|
|
|
|
object = Object.normalize(op.data["object"], false)
|
|
|
|
|
|
|
|
assert object.data["repliesCount"] == 0
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it handles object deletions when the object itself has been pruned", %{
|
2020-04-30 17:47:13 +00:00
|
|
|
delete: delete,
|
|
|
|
post: post,
|
|
|
|
object: object,
|
|
|
|
user: user,
|
|
|
|
op: op
|
|
|
|
} do
|
2020-04-30 16:19:39 +00:00
|
|
|
with_mock Pleroma.Web.ActivityPub.ActivityPub, [:passthrough],
|
2020-04-30 16:10:36 +00:00
|
|
|
stream_out: fn _ -> nil end,
|
|
|
|
stream_out_participations: fn _, _ -> nil end do
|
|
|
|
{:ok, delete, _} = SideEffects.handle(delete)
|
|
|
|
user = User.get_cached_by_ap_id(object.data["actor"])
|
2020-04-30 16:19:39 +00:00
|
|
|
|
2020-04-30 16:10:36 +00:00
|
|
|
assert called(Pleroma.Web.ActivityPub.ActivityPub.stream_out(delete))
|
|
|
|
assert called(Pleroma.Web.ActivityPub.ActivityPub.stream_out_participations(object, user))
|
|
|
|
end
|
2020-04-30 13:26:23 +00:00
|
|
|
|
|
|
|
object = Object.get_by_id(object.id)
|
|
|
|
assert object.data["type"] == "Tombstone"
|
|
|
|
refute Activity.get_by_id(post.id)
|
2020-04-30 16:19:39 +00:00
|
|
|
|
|
|
|
user = User.get_by_id(user.id)
|
|
|
|
assert user.note_count == 0
|
2020-04-30 17:47:13 +00:00
|
|
|
|
|
|
|
object = Object.normalize(op.data["object"], false)
|
|
|
|
|
|
|
|
assert object.data["repliesCount"] == 0
|
2020-04-30 13:26:23 +00:00
|
|
|
end
|
2020-04-30 13:57:27 +00:00
|
|
|
|
|
|
|
test "it handles user deletions", %{delete_user: delete, user: user} do
|
|
|
|
{:ok, _delete, _} = SideEffects.handle(delete)
|
|
|
|
ObanHelpers.perform_all()
|
|
|
|
|
2020-05-03 11:01:19 +00:00
|
|
|
assert User.get_cached_by_ap_id(user.ap_id).deactivated
|
2020-04-30 13:57:27 +00:00
|
|
|
end
|
2020-04-30 13:26:23 +00:00
|
|
|
end
|
2019-10-17 16:36:52 +00:00
|
|
|
|
2020-05-05 10:11:46 +00:00
|
|
|
describe "EmojiReact objects" do
|
|
|
|
setup do
|
|
|
|
poster = insert(:user)
|
|
|
|
user = insert(:user)
|
|
|
|
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, post} = CommonAPI.post(poster, %{status: "hey"})
|
2020-05-05 10:11:46 +00:00
|
|
|
|
|
|
|
{:ok, emoji_react_data, []} = Builder.emoji_react(user, post.object, "👌")
|
|
|
|
{:ok, emoji_react, _meta} = ActivityPub.persist(emoji_react_data, local: true)
|
|
|
|
|
|
|
|
%{emoji_react: emoji_react, user: user, poster: poster}
|
|
|
|
end
|
|
|
|
|
|
|
|
test "adds the reaction to the object", %{emoji_react: emoji_react, user: user} do
|
|
|
|
{:ok, emoji_react, _} = SideEffects.handle(emoji_react)
|
|
|
|
object = Object.get_by_ap_id(emoji_react.data["object"])
|
|
|
|
|
|
|
|
assert object.data["reaction_count"] == 1
|
|
|
|
assert ["👌", [user.ap_id]] in object.data["reactions"]
|
|
|
|
end
|
|
|
|
|
|
|
|
test "creates a notification", %{emoji_react: emoji_react, poster: poster} do
|
|
|
|
{:ok, emoji_react, _} = SideEffects.handle(emoji_react)
|
|
|
|
assert Repo.get_by(Notification, user_id: poster.id, activity_id: emoji_react.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-05-08 13:54:53 +00:00
|
|
|
describe "delete users with confirmation pending" do
|
|
|
|
setup do
|
|
|
|
user = insert(:user, confirmation_pending: true)
|
|
|
|
{:ok, delete_user_data, _meta} = Builder.delete(user, user.ap_id)
|
|
|
|
{:ok, delete_user, _meta} = ActivityPub.persist(delete_user_data, local: true)
|
|
|
|
{:ok, delete: delete_user, user: user}
|
|
|
|
end
|
|
|
|
|
|
|
|
test "when activation is not required", %{delete: delete, user: user} do
|
|
|
|
clear_config([:instance, :account_activation_required], false)
|
|
|
|
{:ok, _, _} = SideEffects.handle(delete)
|
|
|
|
ObanHelpers.perform_all()
|
|
|
|
|
|
|
|
assert User.get_cached_by_id(user.id).deactivated
|
|
|
|
end
|
|
|
|
|
|
|
|
test "when activation is required", %{delete: delete, user: user} do
|
|
|
|
clear_config([:instance, :account_activation_required], true)
|
|
|
|
{:ok, _, _} = SideEffects.handle(delete)
|
|
|
|
ObanHelpers.perform_all()
|
|
|
|
|
|
|
|
refute User.get_cached_by_id(user.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-05-05 13:08:41 +00:00
|
|
|
describe "Undo objects" do
|
|
|
|
setup do
|
|
|
|
poster = insert(:user)
|
|
|
|
user = insert(:user)
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, post} = CommonAPI.post(poster, %{status: "hey"})
|
2020-05-05 13:08:41 +00:00
|
|
|
{:ok, like} = CommonAPI.favorite(user, post.id)
|
2020-05-07 16:53:34 +00:00
|
|
|
{:ok, reaction} = CommonAPI.react_with_emoji(post.id, user, "👍")
|
2020-05-21 10:43:09 +00:00
|
|
|
{:ok, announce} = CommonAPI.repeat(post.id, user)
|
2020-05-05 16:00:37 +00:00
|
|
|
{:ok, block} = ActivityPub.block(user, poster)
|
|
|
|
User.block(user, poster)
|
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 16:00:37 +00:00
|
|
|
{:ok, undo_data, _meta} = Builder.undo(user, block)
|
|
|
|
{:ok, block_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,
|
2020-05-05 16:00:37 +00:00
|
|
|
announce: announce,
|
|
|
|
block_undo: block_undo,
|
|
|
|
block: block,
|
|
|
|
poster: poster,
|
|
|
|
user: user
|
2020-05-05 14:17:09 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2020-05-05 16:00:37 +00:00
|
|
|
test "deletes the original block", %{block_undo: block_undo, block: block} do
|
|
|
|
{:ok, _block_undo, _} = SideEffects.handle(block_undo)
|
|
|
|
refute Activity.get_by_id(block.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "unblocks the blocked user", %{block_undo: block_undo, block: block} do
|
|
|
|
blocker = User.get_by_ap_id(block.data["actor"])
|
|
|
|
blocked = User.get_by_ap_id(block.data["object"])
|
|
|
|
|
|
|
|
{:ok, _block_undo, _} = SideEffects.handle(block_undo)
|
|
|
|
refute User.blocks?(blocker, blocked)
|
|
|
|
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-05-12 19:59:26 +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
|
2020-04-09 10:44:20 +00:00
|
|
|
|
|
|
|
describe "creation of ChatMessages" do
|
2020-04-17 14:55:01 +00:00
|
|
|
test "notifies the recipient" do
|
|
|
|
author = insert(:user, local: false)
|
|
|
|
recipient = insert(:user, local: true)
|
|
|
|
|
|
|
|
{:ok, chat_message_data, _meta} = Builder.chat_message(author, recipient.ap_id, "hey")
|
|
|
|
|
|
|
|
{:ok, create_activity_data, _meta} =
|
2020-04-28 14:26:19 +00:00
|
|
|
Builder.create(author, chat_message_data["id"], [recipient.ap_id])
|
2020-04-17 14:55:01 +00:00
|
|
|
|
|
|
|
{:ok, create_activity, _meta} = ActivityPub.persist(create_activity_data, local: false)
|
|
|
|
|
2020-04-28 14:26:19 +00:00
|
|
|
{:ok, _create_activity, _meta} =
|
|
|
|
SideEffects.handle(create_activity, local: false, object_data: chat_message_data)
|
2020-04-17 14:55:01 +00:00
|
|
|
|
|
|
|
assert Repo.get_by(Notification, user_id: recipient.id, activity_id: create_activity.id)
|
|
|
|
end
|
|
|
|
|
2020-05-29 13:44:03 +00:00
|
|
|
test "it streams the created ChatMessage" do
|
|
|
|
author = insert(:user, local: true)
|
|
|
|
recipient = insert(:user, local: true)
|
|
|
|
|
|
|
|
{:ok, chat_message_data, _meta} = Builder.chat_message(author, recipient.ap_id, "hey")
|
|
|
|
|
|
|
|
{:ok, create_activity_data, _meta} =
|
|
|
|
Builder.create(author, chat_message_data["id"], [recipient.ap_id])
|
|
|
|
|
|
|
|
{:ok, create_activity, _meta} = ActivityPub.persist(create_activity_data, local: false)
|
|
|
|
|
2020-06-07 12:52:56 +00:00
|
|
|
{:ok, _create_activity, meta} =
|
|
|
|
SideEffects.handle(create_activity, local: false, object_data: chat_message_data)
|
2020-05-29 13:44:03 +00:00
|
|
|
|
2020-06-07 12:52:56 +00:00
|
|
|
assert [_, _] = meta[:streamables]
|
2020-05-29 13:44:03 +00:00
|
|
|
end
|
|
|
|
|
2020-06-06 09:51:10 +00:00
|
|
|
test "it creates a Chat and MessageReferences for the local users and bumps the unread count, except for the author" do
|
2020-05-17 10:22:26 +00:00
|
|
|
author = insert(:user, local: true)
|
|
|
|
recipient = insert(:user, local: true)
|
|
|
|
|
|
|
|
{:ok, chat_message_data, _meta} = Builder.chat_message(author, recipient.ap_id, "hey")
|
|
|
|
|
|
|
|
{:ok, create_activity_data, _meta} =
|
|
|
|
Builder.create(author, chat_message_data["id"], [recipient.ap_id])
|
|
|
|
|
|
|
|
{:ok, create_activity, _meta} = ActivityPub.persist(create_activity_data, local: false)
|
|
|
|
|
2020-06-05 14:47:02 +00:00
|
|
|
with_mocks([
|
|
|
|
{
|
|
|
|
Pleroma.Web.Streamer,
|
|
|
|
[],
|
|
|
|
[
|
|
|
|
stream: fn _, _ -> nil end
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Pleroma.Web.Push,
|
|
|
|
[],
|
|
|
|
[
|
|
|
|
send: fn _ -> nil end
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]) do
|
|
|
|
{:ok, _create_activity, meta} =
|
|
|
|
SideEffects.handle(create_activity, local: false, object_data: chat_message_data)
|
2020-05-17 10:22:26 +00:00
|
|
|
|
2020-06-05 14:47:02 +00:00
|
|
|
# The notification gets created
|
2020-06-07 12:52:56 +00:00
|
|
|
assert [notification] = meta[:notifications]
|
2020-06-05 14:47:02 +00:00
|
|
|
assert notification.activity_id == create_activity.id
|
|
|
|
|
|
|
|
# But it is not sent out
|
|
|
|
refute called(Pleroma.Web.Streamer.stream(["user", "user:notification"], notification))
|
|
|
|
refute called(Pleroma.Web.Push.send(notification))
|
2020-05-17 10:22:26 +00:00
|
|
|
|
2020-06-07 12:52:56 +00:00
|
|
|
# Same for the user chat stream
|
|
|
|
assert [{topics, _}, _] = meta[:streamables]
|
|
|
|
assert topics == ["user", "user:pleroma_chat"]
|
|
|
|
refute called(Pleroma.Web.Streamer.stream(["user", "user:pleroma_chat"], :_))
|
|
|
|
|
2020-06-05 14:47:02 +00:00
|
|
|
chat = Chat.get(author.id, recipient.ap_id)
|
2020-06-03 10:30:12 +00:00
|
|
|
|
2020-06-06 09:51:10 +00:00
|
|
|
[cm_ref] = MessageReference.for_chat_query(chat) |> Repo.all()
|
2020-06-03 10:30:12 +00:00
|
|
|
|
2020-06-05 14:47:02 +00:00
|
|
|
assert cm_ref.object.data["content"] == "hey"
|
|
|
|
assert cm_ref.unread == false
|
2020-06-03 10:30:12 +00:00
|
|
|
|
2020-06-05 14:47:02 +00:00
|
|
|
chat = Chat.get(recipient.id, author.ap_id)
|
2020-06-03 10:30:12 +00:00
|
|
|
|
2020-06-06 09:51:10 +00:00
|
|
|
[cm_ref] = MessageReference.for_chat_query(chat) |> Repo.all()
|
2020-06-05 14:47:02 +00:00
|
|
|
|
|
|
|
assert cm_ref.object.data["content"] == "hey"
|
|
|
|
assert cm_ref.unread == true
|
|
|
|
end
|
2020-05-17 10:22:26 +00:00
|
|
|
end
|
|
|
|
|
2020-04-09 10:44:20 +00:00
|
|
|
test "it creates a Chat for the local users and bumps the unread count" do
|
|
|
|
author = insert(:user, local: false)
|
|
|
|
recipient = insert(:user, local: true)
|
|
|
|
|
|
|
|
{:ok, chat_message_data, _meta} = Builder.chat_message(author, recipient.ap_id, "hey")
|
|
|
|
|
|
|
|
{:ok, create_activity_data, _meta} =
|
2020-04-28 14:26:19 +00:00
|
|
|
Builder.create(author, chat_message_data["id"], [recipient.ap_id])
|
2020-04-09 10:44:20 +00:00
|
|
|
|
|
|
|
{:ok, create_activity, _meta} = ActivityPub.persist(create_activity_data, local: false)
|
|
|
|
|
2020-04-28 14:26:19 +00:00
|
|
|
{:ok, _create_activity, _meta} =
|
|
|
|
SideEffects.handle(create_activity, local: false, object_data: chat_message_data)
|
|
|
|
|
|
|
|
# An object is created
|
|
|
|
assert Object.get_by_ap_id(chat_message_data["id"])
|
2020-04-09 10:44:20 +00:00
|
|
|
|
|
|
|
# The remote user won't get a chat
|
|
|
|
chat = Chat.get(author.id, recipient.ap_id)
|
|
|
|
refute chat
|
|
|
|
|
|
|
|
# The local user will get a chat
|
|
|
|
chat = Chat.get(recipient.id, author.ap_id)
|
|
|
|
assert chat
|
2020-04-09 10:46:33 +00:00
|
|
|
|
|
|
|
author = insert(:user, local: true)
|
|
|
|
recipient = insert(:user, local: true)
|
|
|
|
|
|
|
|
{:ok, chat_message_data, _meta} = Builder.chat_message(author, recipient.ap_id, "hey")
|
|
|
|
|
|
|
|
{:ok, create_activity_data, _meta} =
|
2020-04-28 14:26:19 +00:00
|
|
|
Builder.create(author, chat_message_data["id"], [recipient.ap_id])
|
2020-04-09 10:46:33 +00:00
|
|
|
|
|
|
|
{:ok, create_activity, _meta} = ActivityPub.persist(create_activity_data, local: false)
|
|
|
|
|
2020-04-28 14:26:19 +00:00
|
|
|
{:ok, _create_activity, _meta} =
|
|
|
|
SideEffects.handle(create_activity, local: false, object_data: chat_message_data)
|
2020-04-09 10:46:33 +00:00
|
|
|
|
|
|
|
# Both users are local and get the chat
|
|
|
|
chat = Chat.get(author.id, recipient.ap_id)
|
|
|
|
assert chat
|
|
|
|
|
|
|
|
chat = Chat.get(recipient.id, author.ap_id)
|
|
|
|
assert chat
|
2020-04-09 10:44:20 +00:00
|
|
|
end
|
|
|
|
end
|
2020-05-25 11:57:27 +00:00
|
|
|
|
2020-05-20 13:44:37 +00:00
|
|
|
describe "announce objects" do
|
|
|
|
setup do
|
|
|
|
poster = insert(:user)
|
|
|
|
user = insert(:user)
|
|
|
|
{:ok, post} = CommonAPI.post(poster, %{status: "hey"})
|
2020-05-21 10:43:09 +00:00
|
|
|
{:ok, private_post} = CommonAPI.post(poster, %{status: "hey", visibility: "private"})
|
|
|
|
|
|
|
|
{:ok, announce_data, _meta} = Builder.announce(user, post.object, public: true)
|
|
|
|
|
|
|
|
{:ok, private_announce_data, _meta} =
|
|
|
|
Builder.announce(user, private_post.object, public: false)
|
|
|
|
|
|
|
|
{:ok, relay_announce_data, _meta} =
|
|
|
|
Builder.announce(Pleroma.Web.ActivityPub.Relay.get_actor(), post.object, public: true)
|
2020-05-20 13:44:37 +00:00
|
|
|
|
|
|
|
{:ok, announce, _meta} = ActivityPub.persist(announce_data, local: true)
|
2020-05-21 10:43:09 +00:00
|
|
|
{:ok, private_announce, _meta} = ActivityPub.persist(private_announce_data, local: true)
|
|
|
|
{:ok, relay_announce, _meta} = ActivityPub.persist(relay_announce_data, local: true)
|
2020-05-20 13:44:37 +00:00
|
|
|
|
2020-05-21 10:43:09 +00:00
|
|
|
%{
|
|
|
|
announce: announce,
|
|
|
|
user: user,
|
|
|
|
poster: poster,
|
|
|
|
private_announce: private_announce,
|
|
|
|
relay_announce: relay_announce
|
|
|
|
}
|
2020-05-20 13:44:37 +00:00
|
|
|
end
|
|
|
|
|
2020-05-21 10:43:09 +00:00
|
|
|
test "adds the announce to the original object", %{announce: announce, user: user} do
|
2020-05-20 13:44:37 +00:00
|
|
|
{:ok, announce, _} = SideEffects.handle(announce)
|
|
|
|
object = Object.get_by_ap_id(announce.data["object"])
|
|
|
|
assert object.data["announcement_count"] == 1
|
|
|
|
assert user.ap_id in object.data["announcements"]
|
|
|
|
end
|
|
|
|
|
2020-05-21 10:43:09 +00:00
|
|
|
test "does not add the announce to the original object if the actor is a service actor", %{
|
|
|
|
relay_announce: announce
|
|
|
|
} do
|
|
|
|
{:ok, announce, _} = SideEffects.handle(announce)
|
|
|
|
object = Object.get_by_ap_id(announce.data["object"])
|
|
|
|
assert object.data["announcement_count"] == nil
|
|
|
|
end
|
|
|
|
|
2020-05-20 13:44:37 +00:00
|
|
|
test "creates a notification", %{announce: announce, poster: poster} do
|
|
|
|
{:ok, announce, _} = SideEffects.handle(announce)
|
|
|
|
assert Repo.get_by(Notification, user_id: poster.id, activity_id: announce.id)
|
|
|
|
end
|
2020-05-21 10:43:09 +00:00
|
|
|
|
|
|
|
test "it streams out the announce", %{announce: announce} do
|
|
|
|
with_mock Pleroma.Web.ActivityPub.ActivityPub, [:passthrough], stream_out: fn _ -> nil end do
|
|
|
|
{:ok, announce, _} = SideEffects.handle(announce)
|
|
|
|
|
|
|
|
assert called(Pleroma.Web.ActivityPub.ActivityPub.stream_out(announce))
|
|
|
|
end
|
|
|
|
end
|
2020-05-20 13:44:37 +00:00
|
|
|
end
|
2019-10-16 14:16:39 +00:00
|
|
|
end
|