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-04-09 10:44:20 +00:00
|
|
|
alias Pleroma.Chat
|
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
|
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
|
|
|
|
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
|
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, chat_message_object} = Object.create(chat_message_data)
|
|
|
|
|
|
|
|
{:ok, create_activity_data, _meta} =
|
|
|
|
Builder.create(author, chat_message_object.data["id"], [recipient.ap_id])
|
|
|
|
|
|
|
|
{:ok, create_activity, _meta} = ActivityPub.persist(create_activity_data, local: false)
|
|
|
|
|
|
|
|
{:ok, _create_activity, _meta} = SideEffects.handle(create_activity)
|
|
|
|
|
|
|
|
assert Repo.get_by(Notification, user_id: recipient.id, activity_id: create_activity.id)
|
|
|
|
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, chat_message_object} = Object.create(chat_message_data)
|
|
|
|
|
|
|
|
{:ok, create_activity_data, _meta} =
|
|
|
|
Builder.create(author, chat_message_object.data["id"], [recipient.ap_id])
|
|
|
|
|
|
|
|
{:ok, create_activity, _meta} = ActivityPub.persist(create_activity_data, local: false)
|
|
|
|
|
|
|
|
{:ok, _create_activity, _meta} = SideEffects.handle(create_activity)
|
|
|
|
|
|
|
|
# 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, chat_message_object} = Object.create(chat_message_data)
|
|
|
|
|
|
|
|
{:ok, create_activity_data, _meta} =
|
|
|
|
Builder.create(author, chat_message_object.data["id"], [recipient.ap_id])
|
|
|
|
|
|
|
|
{:ok, create_activity, _meta} = ActivityPub.persist(create_activity_data, local: false)
|
|
|
|
|
|
|
|
{:ok, _create_activity, _meta} = SideEffects.handle(create_activity)
|
|
|
|
|
|
|
|
# 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
|
2019-10-16 14:16:39 +00:00
|
|
|
end
|