2019-04-10 07:34:53 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.ConversationTest do
|
|
|
|
use Pleroma.DataCase
|
|
|
|
alias Pleroma.Conversation
|
2019-04-10 14:33:45 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
|
|
|
|
|
|
|
import Pleroma.Factory
|
2019-04-10 07:34:53 +00:00
|
|
|
|
|
|
|
test "it creates a conversation for given ap_id" do
|
2019-04-10 14:33:45 +00:00
|
|
|
assert {:ok, %Conversation{} = conversation} =
|
|
|
|
Conversation.create_for_ap_id("https://some_ap_id")
|
|
|
|
|
|
|
|
# Inserting again returns the same
|
|
|
|
assert {:ok, conversation_two} = Conversation.create_for_ap_id("https://some_ap_id")
|
|
|
|
assert conversation_two.id == conversation.id
|
|
|
|
end
|
|
|
|
|
|
|
|
test "public posts don't create conversations" do
|
|
|
|
user = insert(:user)
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "Hey"})
|
|
|
|
|
2019-04-28 20:44:04 +00:00
|
|
|
object = Pleroma.Object.normalize(activity)
|
|
|
|
context = object.data["context"]
|
2019-04-10 14:33:45 +00:00
|
|
|
|
|
|
|
conversation = Conversation.get_for_ap_id(context)
|
|
|
|
|
|
|
|
refute conversation
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it creates or updates a conversation and participations for a given DM" do
|
|
|
|
har = insert(:user)
|
2019-04-15 19:45:25 +00:00
|
|
|
jafnhar = insert(:user, local: false)
|
2019-04-10 14:33:45 +00:00
|
|
|
tridi = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(har, %{"status" => "Hey @#{jafnhar.nickname}", "visibility" => "direct"})
|
|
|
|
|
2019-04-28 20:44:04 +00:00
|
|
|
object = Pleroma.Object.normalize(activity)
|
|
|
|
context = object.data["context"]
|
2019-04-10 14:33:45 +00:00
|
|
|
|
|
|
|
conversation =
|
|
|
|
Conversation.get_for_ap_id(context)
|
|
|
|
|> Repo.preload(:participations)
|
|
|
|
|
|
|
|
assert conversation
|
|
|
|
|
2019-04-11 11:31:20 +00:00
|
|
|
assert Enum.find(conversation.participations, fn %{user_id: user_id} -> har.id == user_id end)
|
|
|
|
|
|
|
|
assert Enum.find(conversation.participations, fn %{user_id: user_id} ->
|
|
|
|
jafnhar.id == user_id
|
|
|
|
end)
|
2019-04-10 14:33:45 +00:00
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(jafnhar, %{
|
|
|
|
"status" => "Hey @#{har.nickname}",
|
|
|
|
"visibility" => "direct",
|
|
|
|
"in_reply_to_status_id" => activity.id
|
|
|
|
})
|
|
|
|
|
2019-04-28 20:44:04 +00:00
|
|
|
object = Pleroma.Object.normalize(activity)
|
|
|
|
context = object.data["context"]
|
2019-04-10 14:33:45 +00:00
|
|
|
|
|
|
|
conversation_two =
|
|
|
|
Conversation.get_for_ap_id(context)
|
|
|
|
|> Repo.preload(:participations)
|
|
|
|
|
|
|
|
assert conversation_two.id == conversation.id
|
|
|
|
|
2019-04-11 11:31:20 +00:00
|
|
|
assert Enum.find(conversation_two.participations, fn %{user_id: user_id} ->
|
|
|
|
har.id == user_id
|
|
|
|
end)
|
2019-04-10 14:33:45 +00:00
|
|
|
|
2019-04-11 11:31:20 +00:00
|
|
|
assert Enum.find(conversation_two.participations, fn %{user_id: user_id} ->
|
|
|
|
jafnhar.id == user_id
|
|
|
|
end)
|
2019-04-10 14:33:45 +00:00
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(tridi, %{
|
|
|
|
"status" => "Hey @#{har.nickname}",
|
|
|
|
"visibility" => "direct",
|
|
|
|
"in_reply_to_status_id" => activity.id
|
|
|
|
})
|
|
|
|
|
2019-04-28 20:44:04 +00:00
|
|
|
object = Pleroma.Object.normalize(activity)
|
|
|
|
context = object.data["context"]
|
2019-04-10 14:33:45 +00:00
|
|
|
|
|
|
|
conversation_three =
|
|
|
|
Conversation.get_for_ap_id(context)
|
2019-04-15 20:28:42 +00:00
|
|
|
|> Repo.preload([:participations, :users])
|
2019-04-10 14:33:45 +00:00
|
|
|
|
|
|
|
assert conversation_three.id == conversation.id
|
|
|
|
|
2019-04-11 11:31:20 +00:00
|
|
|
assert Enum.find(conversation_three.participations, fn %{user_id: user_id} ->
|
|
|
|
har.id == user_id
|
|
|
|
end)
|
|
|
|
|
|
|
|
assert Enum.find(conversation_three.participations, fn %{user_id: user_id} ->
|
|
|
|
jafnhar.id == user_id
|
|
|
|
end)
|
2019-04-10 14:33:45 +00:00
|
|
|
|
2019-04-11 11:31:20 +00:00
|
|
|
assert Enum.find(conversation_three.participations, fn %{user_id: user_id} ->
|
|
|
|
tridi.id == user_id
|
|
|
|
end)
|
2019-04-15 20:28:42 +00:00
|
|
|
|
|
|
|
assert Enum.find(conversation_three.users, fn %{id: user_id} ->
|
|
|
|
har.id == user_id
|
|
|
|
end)
|
|
|
|
|
|
|
|
assert Enum.find(conversation_three.users, fn %{id: user_id} ->
|
|
|
|
jafnhar.id == user_id
|
|
|
|
end)
|
|
|
|
|
|
|
|
assert Enum.find(conversation_three.users, fn %{id: user_id} ->
|
|
|
|
tridi.id == user_id
|
|
|
|
end)
|
2019-04-10 07:34:53 +00:00
|
|
|
end
|
2019-05-03 11:39:14 +00:00
|
|
|
|
|
|
|
test "create_or_bump_for returns the conversation with participations" do
|
|
|
|
har = insert(:user)
|
|
|
|
jafnhar = insert(:user, local: false)
|
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(har, %{"status" => "Hey @#{jafnhar.nickname}", "visibility" => "direct"})
|
|
|
|
|
|
|
|
{:ok, conversation} = Conversation.create_or_bump_for(activity)
|
|
|
|
|
|
|
|
assert length(conversation.participations) == 2
|
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(har, %{"status" => "Hey @#{jafnhar.nickname}", "visibility" => "public"})
|
|
|
|
|
|
|
|
assert {:error, _} = Conversation.create_or_bump_for(activity)
|
|
|
|
end
|
2019-04-10 07:34:53 +00:00
|
|
|
end
|