2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:11:29 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-02-17 16:47:24 +00:00
|
|
|
defmodule Pleroma.Web.CommonAPITest do
|
2018-05-23 15:25:24 +00:00
|
|
|
use Pleroma.DataCase
|
2018-12-14 05:56:49 +00:00
|
|
|
alias Pleroma.Activity
|
2020-04-09 11:20:16 +00:00
|
|
|
alias Pleroma.Chat
|
2019-08-02 13:05:27 +00:00
|
|
|
alias Pleroma.Conversation.Participation
|
2019-04-17 09:22:32 +00:00
|
|
|
alias Pleroma.Object
|
2019-04-17 11:52:01 +00:00
|
|
|
alias Pleroma.User
|
2019-06-05 13:43:54 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2019-08-05 13:33:22 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Visibility
|
2019-10-23 19:27:22 +00:00
|
|
|
alias Pleroma.Web.AdminAPI.AccountView
|
2018-05-23 15:25:24 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
|
|
|
|
|
|
|
import Pleroma.Factory
|
|
|
|
|
2019-10-05 12:53:50 +00:00
|
|
|
require Pleroma.Constants
|
|
|
|
|
2020-03-20 15:33:00 +00:00
|
|
|
setup do: clear_config([:instance, :safe_dm_mentions])
|
|
|
|
setup do: clear_config([:instance, :limit])
|
|
|
|
setup do: clear_config([:instance, :max_pinned_statuses])
|
2019-08-19 15:34:29 +00:00
|
|
|
|
2020-04-09 11:20:16 +00:00
|
|
|
describe "posting chat messages" do
|
2020-04-20 10:08:47 +00:00
|
|
|
setup do: clear_config([:instance, :chat_limit])
|
|
|
|
|
2020-04-09 11:20:16 +00:00
|
|
|
test "it posts a chat message" do
|
|
|
|
author = insert(:user)
|
|
|
|
recipient = insert(:user)
|
|
|
|
|
2020-04-16 10:56:29 +00:00
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post_chat_message(
|
|
|
|
author,
|
|
|
|
recipient,
|
2020-04-20 12:08:54 +00:00
|
|
|
"a test message <script>alert('uuu')</script> :firefox:"
|
2020-04-16 10:56:29 +00:00
|
|
|
)
|
2020-04-09 11:20:16 +00:00
|
|
|
|
|
|
|
assert activity.data["type"] == "Create"
|
|
|
|
assert activity.local
|
|
|
|
object = Object.normalize(activity)
|
|
|
|
|
|
|
|
assert object.data["type"] == "ChatMessage"
|
|
|
|
assert object.data["to"] == [recipient.ap_id]
|
2020-04-16 10:56:29 +00:00
|
|
|
|
|
|
|
assert object.data["content"] ==
|
2020-04-20 12:08:54 +00:00
|
|
|
"a test message <script>alert('uuu')</script> :firefox:"
|
|
|
|
|
|
|
|
assert object.data["emoji"] == %{
|
|
|
|
"firefox" => "http://localhost:4001/emoji/Firefox.gif"
|
|
|
|
}
|
2020-04-09 11:20:16 +00:00
|
|
|
|
|
|
|
assert Chat.get(author.id, recipient.ap_id)
|
|
|
|
assert Chat.get(recipient.id, author.ap_id)
|
|
|
|
end
|
2020-04-20 10:08:47 +00:00
|
|
|
|
|
|
|
test "it reject messages over the local limit" do
|
|
|
|
Pleroma.Config.put([:instance, :chat_limit], 2)
|
|
|
|
|
|
|
|
author = insert(:user)
|
|
|
|
recipient = insert(:user)
|
|
|
|
|
|
|
|
{:error, message} =
|
|
|
|
CommonAPI.post_chat_message(
|
|
|
|
author,
|
|
|
|
recipient,
|
|
|
|
"123"
|
|
|
|
)
|
|
|
|
|
|
|
|
assert message == :content_too_long
|
|
|
|
end
|
2020-04-09 11:20:16 +00:00
|
|
|
end
|
|
|
|
|
2020-04-22 16:40:53 +00:00
|
|
|
test "favoriting race condition" do
|
|
|
|
user = insert(:user)
|
|
|
|
users_serial = insert_list(10, :user)
|
|
|
|
users = insert_list(10, :user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "."})
|
|
|
|
|
|
|
|
users_serial
|
|
|
|
|> Enum.map(fn user ->
|
|
|
|
CommonAPI.favorite(user, activity.id)
|
|
|
|
end)
|
|
|
|
|
|
|
|
object = Object.get_by_ap_id(activity.data["object"])
|
|
|
|
assert object.data["like_count"] == 10
|
|
|
|
|
|
|
|
users
|
|
|
|
|> Enum.map(fn user ->
|
|
|
|
Task.async(fn ->
|
|
|
|
CommonAPI.favorite(user, activity.id)
|
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|> Enum.map(&Task.await/1)
|
|
|
|
|
|
|
|
object = Object.get_by_ap_id(activity.data["object"])
|
|
|
|
assert object.data["like_count"] == 20
|
|
|
|
end
|
|
|
|
|
2020-04-24 12:37:53 +00:00
|
|
|
test "repeating race condition" do
|
|
|
|
user = insert(:user)
|
|
|
|
users_serial = insert_list(10, :user)
|
|
|
|
users = insert_list(10, :user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "."})
|
|
|
|
|
|
|
|
users_serial
|
|
|
|
|> Enum.map(fn user ->
|
|
|
|
CommonAPI.repeat(activity.id, user)
|
|
|
|
end)
|
|
|
|
|
|
|
|
object = Object.get_by_ap_id(activity.data["object"])
|
|
|
|
assert object.data["announcement_count"] == 10
|
|
|
|
|
|
|
|
users
|
|
|
|
|> Enum.map(fn user ->
|
|
|
|
Task.async(fn ->
|
|
|
|
CommonAPI.repeat(activity.id, user)
|
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|> Enum.map(&Task.await/1)
|
|
|
|
|
|
|
|
object = Object.get_by_ap_id(activity.data["object"])
|
|
|
|
assert object.data["announcement_count"] == 20
|
|
|
|
end
|
|
|
|
|
2019-08-05 13:33:22 +00:00
|
|
|
test "when replying to a conversation / participation, it will set the correct context id even if no explicit reply_to is given" do
|
|
|
|
user = insert(:user)
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => ".", "visibility" => "direct"})
|
|
|
|
|
|
|
|
[participation] = Participation.for_user(user)
|
|
|
|
|
|
|
|
{:ok, convo_reply} =
|
|
|
|
CommonAPI.post(user, %{"status" => ".", "in_reply_to_conversation_id" => participation.id})
|
|
|
|
|
|
|
|
assert Visibility.is_direct?(convo_reply)
|
|
|
|
|
|
|
|
assert activity.data["context"] == convo_reply.data["context"]
|
|
|
|
end
|
|
|
|
|
2019-08-02 13:05:27 +00:00
|
|
|
test "when replying to a conversation / participation, it only mentions the recipients explicitly declared in the participation" do
|
|
|
|
har = insert(:user)
|
|
|
|
jafnhar = insert(:user)
|
|
|
|
tridi = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(har, %{
|
|
|
|
"status" => "@#{jafnhar.nickname} hey",
|
|
|
|
"visibility" => "direct"
|
|
|
|
})
|
|
|
|
|
|
|
|
assert har.ap_id in activity.recipients
|
|
|
|
assert jafnhar.ap_id in activity.recipients
|
|
|
|
|
|
|
|
[participation] = Participation.for_user(har)
|
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(har, %{
|
|
|
|
"status" => "I don't really like @#{tridi.nickname}",
|
|
|
|
"visibility" => "direct",
|
|
|
|
"in_reply_to_status_id" => activity.id,
|
|
|
|
"in_reply_to_conversation_id" => participation.id
|
|
|
|
})
|
|
|
|
|
|
|
|
assert har.ap_id in activity.recipients
|
|
|
|
assert jafnhar.ap_id in activity.recipients
|
|
|
|
refute tridi.ap_id in activity.recipients
|
|
|
|
end
|
|
|
|
|
2019-03-20 20:09:36 +00:00
|
|
|
test "with the safe_dm_mention option set, it does not mention people beyond the initial tags" do
|
|
|
|
har = insert(:user)
|
|
|
|
jafnhar = insert(:user)
|
|
|
|
tridi = insert(:user)
|
2020-02-13 18:55:47 +00:00
|
|
|
|
2019-03-20 20:09:36 +00:00
|
|
|
Pleroma.Config.put([:instance, :safe_dm_mentions], true)
|
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(har, %{
|
|
|
|
"status" => "@#{jafnhar.nickname} hey, i never want to see @#{tridi.nickname} again",
|
|
|
|
"visibility" => "direct"
|
|
|
|
})
|
|
|
|
|
|
|
|
refute tridi.ap_id in activity.recipients
|
|
|
|
assert jafnhar.ap_id in activity.recipients
|
|
|
|
end
|
|
|
|
|
2018-05-23 15:25:24 +00:00
|
|
|
test "it de-duplicates tags" do
|
|
|
|
user = insert(:user)
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "#2hu #2HU"})
|
|
|
|
|
2019-07-08 16:53:02 +00:00
|
|
|
object = Object.normalize(activity)
|
2018-11-25 22:31:07 +00:00
|
|
|
|
|
|
|
assert object.data["tag"] == ["2hu"]
|
2018-05-23 15:25:24 +00:00
|
|
|
end
|
2018-08-12 19:24:10 +00:00
|
|
|
|
2019-01-20 10:48:53 +00:00
|
|
|
test "it adds emoji in the object" do
|
|
|
|
user = insert(:user)
|
2019-04-18 19:04:37 +00:00
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => ":firefox:"})
|
2019-01-20 10:48:53 +00:00
|
|
|
|
2019-04-18 19:04:37 +00:00
|
|
|
assert Object.normalize(activity).data["emoji"]["firefox"]
|
2019-01-20 10:48:53 +00:00
|
|
|
end
|
|
|
|
|
2018-09-02 00:14:25 +00:00
|
|
|
describe "posting" do
|
2019-06-03 16:17:08 +00:00
|
|
|
test "it supports explicit addressing" do
|
|
|
|
user = insert(:user)
|
|
|
|
user_two = insert(:user)
|
|
|
|
user_three = insert(:user)
|
|
|
|
user_four = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(user, %{
|
|
|
|
"status" =>
|
|
|
|
"Hey, I think @#{user_three.nickname} is ugly. @#{user_four.nickname} is alright though.",
|
|
|
|
"to" => [user_two.nickname, user_four.nickname, "nonexistent"]
|
|
|
|
})
|
|
|
|
|
|
|
|
assert user.ap_id in activity.recipients
|
|
|
|
assert user_two.ap_id in activity.recipients
|
|
|
|
assert user_four.ap_id in activity.recipients
|
|
|
|
refute user_three.ap_id in activity.recipients
|
|
|
|
end
|
|
|
|
|
2018-09-02 00:14:25 +00:00
|
|
|
test "it filters out obviously bad tags when accepting a post as HTML" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
2018-10-05 21:11:22 +00:00
|
|
|
post = "<p><b>2hu</b></p><script>alert('xss')</script>"
|
2018-09-02 00:14:25 +00:00
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(user, %{
|
|
|
|
"status" => post,
|
|
|
|
"content_type" => "text/html"
|
|
|
|
})
|
|
|
|
|
2019-07-08 16:53:02 +00:00
|
|
|
object = Object.normalize(activity)
|
2018-11-25 22:31:07 +00:00
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
assert object.data["content"] == "<p><b>2hu</b></p>alert('xss')"
|
2018-09-02 00:14:25 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "it filters out obviously bad tags when accepting a post as Markdown" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
2018-10-05 21:11:22 +00:00
|
|
|
post = "<p><b>2hu</b></p><script>alert('xss')</script>"
|
2018-09-02 00:14:25 +00:00
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(user, %{
|
|
|
|
"status" => post,
|
|
|
|
"content_type" => "text/markdown"
|
|
|
|
})
|
|
|
|
|
2019-07-08 16:53:02 +00:00
|
|
|
object = Object.normalize(activity)
|
2018-11-25 22:31:07 +00:00
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
assert object.data["content"] == "<p><b>2hu</b></p>alert('xss')"
|
2018-09-02 00:14:25 +00:00
|
|
|
end
|
2019-05-14 13:12:47 +00:00
|
|
|
|
2019-05-15 14:30:08 +00:00
|
|
|
test "it does not allow replies to direct messages that are not direct messages themselves" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "suya..", "visibility" => "direct"})
|
|
|
|
|
|
|
|
assert {:ok, _} =
|
|
|
|
CommonAPI.post(user, %{
|
|
|
|
"status" => "suya..",
|
|
|
|
"visibility" => "direct",
|
|
|
|
"in_reply_to_status_id" => activity.id
|
|
|
|
})
|
|
|
|
|
|
|
|
Enum.each(["public", "private", "unlisted"], fn visibility ->
|
2019-06-26 10:59:27 +00:00
|
|
|
assert {:error, "The message visibility must be direct"} =
|
2019-05-15 14:30:08 +00:00
|
|
|
CommonAPI.post(user, %{
|
|
|
|
"status" => "suya..",
|
|
|
|
"visibility" => visibility,
|
|
|
|
"in_reply_to_status_id" => activity.id
|
|
|
|
})
|
|
|
|
end)
|
|
|
|
end
|
2019-05-16 10:54:24 +00:00
|
|
|
|
2019-05-14 13:12:47 +00:00
|
|
|
test "it allows to address a list" do
|
|
|
|
user = insert(:user)
|
|
|
|
{:ok, list} = Pleroma.List.create("foo", user)
|
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(user, %{"status" => "foobar", "visibility" => "list:#{list.id}"})
|
|
|
|
|
2019-05-17 12:56:37 +00:00
|
|
|
assert activity.data["bcc"] == [list.ap_id]
|
|
|
|
assert activity.recipients == [list.ap_id, user.ap_id]
|
2019-07-11 09:36:08 +00:00
|
|
|
assert activity.data["listMessage"] == list.ap_id
|
2019-05-14 13:12:47 +00:00
|
|
|
end
|
2019-07-15 19:47:23 +00:00
|
|
|
|
|
|
|
test "it returns error when status is empty and no attachments" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
assert {:error, "Cannot post an empty status without attachments"} =
|
|
|
|
CommonAPI.post(user, %{"status" => ""})
|
|
|
|
end
|
|
|
|
|
2020-03-10 18:08:00 +00:00
|
|
|
test "it validates character limits are correctly enforced" do
|
2019-07-15 19:47:23 +00:00
|
|
|
Pleroma.Config.put([:instance, :limit], 5)
|
|
|
|
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
assert {:error, "The status is over the character limit"} =
|
|
|
|
CommonAPI.post(user, %{"status" => "foobar"})
|
2020-03-10 18:08:00 +00:00
|
|
|
|
|
|
|
assert {:ok, activity} = CommonAPI.post(user, %{"status" => "12345"})
|
2019-07-15 19:47:23 +00:00
|
|
|
end
|
2019-07-22 14:46:20 +00:00
|
|
|
|
|
|
|
test "it can handle activities that expire" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
expires_at =
|
|
|
|
NaiveDateTime.utc_now()
|
|
|
|
|> NaiveDateTime.truncate(:second)
|
|
|
|
|> NaiveDateTime.add(1_000_000, :second)
|
|
|
|
|
|
|
|
assert {:ok, activity} =
|
2019-08-24 15:22:48 +00:00
|
|
|
CommonAPI.post(user, %{"status" => "chai", "expires_in" => 1_000_000})
|
2019-07-22 14:46:20 +00:00
|
|
|
|
|
|
|
assert expiration = Pleroma.ActivityExpiration.get_by_activity_id(activity.id)
|
|
|
|
assert expiration.scheduled_at == expires_at
|
|
|
|
end
|
2018-09-02 00:14:25 +00:00
|
|
|
end
|
2018-12-14 05:56:49 +00:00
|
|
|
|
|
|
|
describe "reactions" do
|
2019-08-27 22:56:28 +00:00
|
|
|
test "reacting to a status with an emoji" do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
|
|
|
|
|
|
|
|
{:ok, reaction, _} = CommonAPI.react_with_emoji(activity.id, user, "👍")
|
|
|
|
|
|
|
|
assert reaction.data["actor"] == user.ap_id
|
|
|
|
assert reaction.data["content"] == "👍"
|
|
|
|
|
2020-01-30 15:07:37 +00:00
|
|
|
{:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
|
|
|
|
|
|
|
|
{:error, _} = CommonAPI.react_with_emoji(activity.id, user, ".")
|
2019-08-27 22:56:28 +00:00
|
|
|
end
|
|
|
|
|
2019-09-30 14:38:19 +00:00
|
|
|
test "unreacting to a status with an emoji" do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
|
|
|
|
{:ok, reaction, _} = CommonAPI.react_with_emoji(activity.id, user, "👍")
|
|
|
|
|
2019-10-02 13:38:57 +00:00
|
|
|
{:ok, unreaction, _} = CommonAPI.unreact_with_emoji(activity.id, user, "👍")
|
|
|
|
|
|
|
|
assert unreaction.data["type"] == "Undo"
|
|
|
|
assert unreaction.data["object"] == reaction.data["id"]
|
2019-09-30 14:38:19 +00:00
|
|
|
end
|
|
|
|
|
2018-12-14 05:56:49 +00:00
|
|
|
test "repeating a status" do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
|
|
|
|
|
|
|
|
{:ok, %Activity{}, _} = CommonAPI.repeat(activity.id, user)
|
|
|
|
end
|
|
|
|
|
2020-04-23 11:33:30 +00:00
|
|
|
test "can't repeat a repeat" do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
{:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
|
|
|
|
|
|
|
|
{:ok, %Activity{} = announce, _} = CommonAPI.repeat(activity.id, other_user)
|
|
|
|
|
|
|
|
refute match?({:ok, %Activity{}, _}, CommonAPI.repeat(announce.id, user))
|
|
|
|
end
|
|
|
|
|
2019-10-01 17:08:25 +00:00
|
|
|
test "repeating a status privately" do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
|
|
|
|
|
|
|
|
{:ok, %Activity{} = announce_activity, _} =
|
|
|
|
CommonAPI.repeat(activity.id, user, %{"visibility" => "private"})
|
|
|
|
|
|
|
|
assert Visibility.is_private?(announce_activity)
|
|
|
|
end
|
|
|
|
|
2018-12-14 05:56:49 +00:00
|
|
|
test "favoriting a status" do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
2019-10-16 14:16:39 +00:00
|
|
|
{:ok, post_activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
|
2018-12-14 05:56:49 +00:00
|
|
|
|
2019-10-16 14:16:39 +00:00
|
|
|
{:ok, %Activity{data: data}} = CommonAPI.favorite(user, post_activity.id)
|
|
|
|
assert data["type"] == "Like"
|
|
|
|
assert data["actor"] == user.ap_id
|
|
|
|
assert data["object"] == post_activity.data["object"]
|
2018-12-14 05:56:49 +00:00
|
|
|
end
|
|
|
|
|
2020-01-20 13:27:59 +00:00
|
|
|
test "retweeting a status twice returns the status" do
|
2018-12-14 05:56:49 +00:00
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
|
2020-04-23 11:33:30 +00:00
|
|
|
{:ok, %Activity{} = announce, object} = CommonAPI.repeat(activity.id, user)
|
|
|
|
{:ok, ^announce, ^object} = CommonAPI.repeat(activity.id, user)
|
2018-12-14 05:56:49 +00:00
|
|
|
end
|
|
|
|
|
2020-03-19 17:00:55 +00:00
|
|
|
test "favoriting a status twice returns ok, but without the like activity" do
|
2018-12-14 05:56:49 +00:00
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
|
2019-10-16 14:16:39 +00:00
|
|
|
{:ok, %Activity{}} = CommonAPI.favorite(user, activity.id)
|
2020-03-19 17:00:55 +00:00
|
|
|
assert {:ok, :already_liked} = CommonAPI.favorite(user, activity.id)
|
2018-12-14 05:56:49 +00:00
|
|
|
end
|
|
|
|
end
|
2019-01-07 13:45:33 +00:00
|
|
|
|
2019-01-08 08:25:50 +00:00
|
|
|
describe "pinned statuses" do
|
2019-01-09 12:54:37 +00:00
|
|
|
setup do
|
2019-01-08 08:25:50 +00:00
|
|
|
Pleroma.Config.put([:instance, :max_pinned_statuses], 1)
|
2019-01-07 13:45:33 +00:00
|
|
|
|
2019-01-09 12:54:37 +00:00
|
|
|
user = insert(:user)
|
2019-01-07 13:45:33 +00:00
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "HI!!!"})
|
|
|
|
|
2019-01-09 12:54:37 +00:00
|
|
|
[user: user, activity: activity]
|
2019-01-07 13:45:33 +00:00
|
|
|
end
|
|
|
|
|
2019-01-09 12:54:37 +00:00
|
|
|
test "pin status", %{user: user, activity: activity} do
|
|
|
|
assert {:ok, ^activity} = CommonAPI.pin(activity.id, user)
|
2019-01-11 05:31:31 +00:00
|
|
|
|
|
|
|
id = activity.id
|
|
|
|
user = refresh_record(user)
|
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
assert %User{pinned_activities: [^id]} = user
|
2019-01-09 10:40:15 +00:00
|
|
|
end
|
|
|
|
|
2020-02-02 11:55:06 +00:00
|
|
|
test "pin poll", %{user: user} do
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(user, %{
|
|
|
|
"status" => "How is fediverse today?",
|
|
|
|
"poll" => %{"options" => ["Absolutely outstanding", "Not good"], "expires_in" => 20}
|
|
|
|
})
|
|
|
|
|
|
|
|
assert {:ok, ^activity} = CommonAPI.pin(activity.id, user)
|
|
|
|
|
|
|
|
id = activity.id
|
|
|
|
user = refresh_record(user)
|
|
|
|
|
|
|
|
assert %User{pinned_activities: [^id]} = user
|
|
|
|
end
|
|
|
|
|
2019-06-29 19:24:03 +00:00
|
|
|
test "unlisted statuses can be pinned", %{user: user} do
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "HI!!!", "visibility" => "unlisted"})
|
|
|
|
assert {:ok, ^activity} = CommonAPI.pin(activity.id, user)
|
|
|
|
end
|
|
|
|
|
2019-01-09 12:54:37 +00:00
|
|
|
test "only self-authored can be pinned", %{activity: activity} do
|
2019-01-07 13:45:33 +00:00
|
|
|
user = insert(:user)
|
|
|
|
|
2019-01-09 12:54:37 +00:00
|
|
|
assert {:error, "Could not pin"} = CommonAPI.pin(activity.id, user)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "max pinned statuses", %{user: user, activity: activity_one} do
|
2019-01-07 13:45:33 +00:00
|
|
|
{:ok, activity_two} = CommonAPI.post(user, %{"status" => "HI!!!"})
|
|
|
|
|
|
|
|
assert {:ok, ^activity_one} = CommonAPI.pin(activity_one.id, user)
|
|
|
|
|
2019-01-08 09:01:35 +00:00
|
|
|
user = refresh_record(user)
|
2019-01-07 13:45:33 +00:00
|
|
|
|
2019-01-08 08:32:06 +00:00
|
|
|
assert {:error, "You have already pinned the maximum number of statuses"} =
|
2019-01-07 13:45:33 +00:00
|
|
|
CommonAPI.pin(activity_two.id, user)
|
|
|
|
end
|
|
|
|
|
2019-01-09 12:54:37 +00:00
|
|
|
test "unpin status", %{user: user, activity: activity} do
|
2019-01-07 13:45:33 +00:00
|
|
|
{:ok, activity} = CommonAPI.pin(activity.id, user)
|
|
|
|
|
2019-01-11 05:31:31 +00:00
|
|
|
user = refresh_record(user)
|
|
|
|
|
2020-04-23 11:33:30 +00:00
|
|
|
id = activity.id
|
|
|
|
|
|
|
|
assert match?({:ok, %{id: ^id}}, CommonAPI.unpin(activity.id, user))
|
2019-01-11 05:31:31 +00:00
|
|
|
|
|
|
|
user = refresh_record(user)
|
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
assert %User{pinned_activities: []} = user
|
2019-01-11 05:31:31 +00:00
|
|
|
end
|
|
|
|
|
2019-01-11 05:47:44 +00:00
|
|
|
test "should unpin when deleting a status", %{user: user, activity: activity} do
|
2019-01-11 05:31:31 +00:00
|
|
|
{:ok, activity} = CommonAPI.pin(activity.id, user)
|
|
|
|
|
|
|
|
user = refresh_record(user)
|
|
|
|
|
|
|
|
assert {:ok, _} = CommonAPI.delete(activity.id, user)
|
|
|
|
|
|
|
|
user = refresh_record(user)
|
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
assert %User{pinned_activities: []} = user
|
2019-01-07 13:45:33 +00:00
|
|
|
end
|
|
|
|
end
|
2019-02-11 10:59:51 +00:00
|
|
|
|
|
|
|
describe "mute tests" do
|
|
|
|
setup do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
activity = insert(:note_activity)
|
|
|
|
|
|
|
|
[user: user, activity: activity]
|
|
|
|
end
|
|
|
|
|
|
|
|
test "add mute", %{user: user, activity: activity} do
|
|
|
|
{:ok, _} = CommonAPI.add_mute(user, activity)
|
|
|
|
assert CommonAPI.thread_muted?(user, activity)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "remove mute", %{user: user, activity: activity} do
|
|
|
|
CommonAPI.add_mute(user, activity)
|
|
|
|
{:ok, _} = CommonAPI.remove_mute(user, activity)
|
|
|
|
refute CommonAPI.thread_muted?(user, activity)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "check that mutes can't be duplicate", %{user: user, activity: activity} do
|
|
|
|
CommonAPI.add_mute(user, activity)
|
|
|
|
{:error, _} = CommonAPI.add_mute(user, activity)
|
|
|
|
end
|
|
|
|
end
|
2019-02-20 16:51:25 +00:00
|
|
|
|
|
|
|
describe "reports" do
|
|
|
|
test "creates a report" do
|
|
|
|
reporter = insert(:user)
|
|
|
|
target_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(target_user, %{"status" => "foobar"})
|
|
|
|
|
|
|
|
reporter_ap_id = reporter.ap_id
|
|
|
|
target_ap_id = target_user.ap_id
|
|
|
|
activity_ap_id = activity.data["id"]
|
|
|
|
comment = "foobar"
|
|
|
|
|
|
|
|
report_data = %{
|
2020-04-28 12:50:37 +00:00
|
|
|
account_id: target_user.id,
|
|
|
|
comment: comment,
|
|
|
|
status_ids: [activity.id]
|
2019-02-20 16:51:25 +00:00
|
|
|
}
|
|
|
|
|
2019-10-23 19:27:22 +00:00
|
|
|
note_obj = %{
|
|
|
|
"type" => "Note",
|
|
|
|
"id" => activity_ap_id,
|
|
|
|
"content" => "foobar",
|
|
|
|
"published" => activity.object.data["published"],
|
|
|
|
"actor" => AccountView.render("show.json", %{user: target_user})
|
|
|
|
}
|
|
|
|
|
2019-02-20 16:51:25 +00:00
|
|
|
assert {:ok, flag_activity} = CommonAPI.report(reporter, report_data)
|
|
|
|
|
|
|
|
assert %Activity{
|
|
|
|
actor: ^reporter_ap_id,
|
|
|
|
data: %{
|
|
|
|
"type" => "Flag",
|
|
|
|
"content" => ^comment,
|
2019-10-23 19:27:22 +00:00
|
|
|
"object" => [^target_ap_id, ^note_obj],
|
2019-05-16 19:09:18 +00:00
|
|
|
"state" => "open"
|
2019-02-20 16:51:25 +00:00
|
|
|
}
|
|
|
|
} = flag_activity
|
|
|
|
end
|
2019-05-16 19:09:18 +00:00
|
|
|
|
|
|
|
test "updates report state" do
|
|
|
|
[reporter, target_user] = insert_pair(:user)
|
|
|
|
activity = insert(:note_activity, user: target_user)
|
|
|
|
|
|
|
|
{:ok, %Activity{id: report_id}} =
|
|
|
|
CommonAPI.report(reporter, %{
|
2020-04-28 12:50:37 +00:00
|
|
|
account_id: target_user.id,
|
|
|
|
comment: "I feel offended",
|
|
|
|
status_ids: [activity.id]
|
2019-05-16 19:09:18 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
{:ok, report} = CommonAPI.update_report_state(report_id, "resolved")
|
|
|
|
|
|
|
|
assert report.data["state"] == "resolved"
|
2019-10-27 13:05:32 +00:00
|
|
|
|
|
|
|
[reported_user, activity_id] = report.data["object"]
|
|
|
|
|
|
|
|
assert reported_user == target_user.ap_id
|
|
|
|
assert activity_id == activity.data["id"]
|
2019-05-16 19:09:18 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "does not update report state when state is unsupported" do
|
|
|
|
[reporter, target_user] = insert_pair(:user)
|
|
|
|
activity = insert(:note_activity, user: target_user)
|
|
|
|
|
|
|
|
{:ok, %Activity{id: report_id}} =
|
|
|
|
CommonAPI.report(reporter, %{
|
2020-04-28 12:50:37 +00:00
|
|
|
account_id: target_user.id,
|
|
|
|
comment: "I feel offended",
|
|
|
|
status_ids: [activity.id]
|
2019-05-16 19:09:18 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
assert CommonAPI.update_report_state(report_id, "test") == {:error, "Unsupported state"}
|
|
|
|
end
|
2019-10-04 16:00:58 +00:00
|
|
|
|
|
|
|
test "updates state of multiple reports" do
|
|
|
|
[reporter, target_user] = insert_pair(:user)
|
|
|
|
activity = insert(:note_activity, user: target_user)
|
|
|
|
|
|
|
|
{:ok, %Activity{id: first_report_id}} =
|
|
|
|
CommonAPI.report(reporter, %{
|
2020-04-28 12:50:37 +00:00
|
|
|
account_id: target_user.id,
|
|
|
|
comment: "I feel offended",
|
|
|
|
status_ids: [activity.id]
|
2019-10-04 16:00:58 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
{:ok, %Activity{id: second_report_id}} =
|
|
|
|
CommonAPI.report(reporter, %{
|
2020-04-28 12:50:37 +00:00
|
|
|
account_id: target_user.id,
|
|
|
|
comment: "I feel very offended!",
|
|
|
|
status_ids: [activity.id]
|
2019-10-04 16:00:58 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
{:ok, report_ids} =
|
|
|
|
CommonAPI.update_report_state([first_report_id, second_report_id], "resolved")
|
|
|
|
|
|
|
|
first_report = Activity.get_by_id(first_report_id)
|
|
|
|
second_report = Activity.get_by_id(second_report_id)
|
|
|
|
|
|
|
|
assert report_ids -- [first_report_id, second_report_id] == []
|
|
|
|
assert first_report.data["state"] == "resolved"
|
|
|
|
assert second_report.data["state"] == "resolved"
|
|
|
|
end
|
2019-02-20 16:51:25 +00:00
|
|
|
end
|
2019-03-15 13:06:58 +00:00
|
|
|
|
|
|
|
describe "reblog muting" do
|
|
|
|
setup do
|
|
|
|
muter = insert(:user)
|
|
|
|
|
|
|
|
muted = insert(:user)
|
|
|
|
|
|
|
|
[muter: muter, muted: muted]
|
|
|
|
end
|
|
|
|
|
|
|
|
test "add a reblog mute", %{muter: muter, muted: muted} do
|
2019-11-19 20:22:10 +00:00
|
|
|
{:ok, _reblog_mute} = CommonAPI.hide_reblogs(muter, muted)
|
2019-03-15 13:06:58 +00:00
|
|
|
|
2019-05-16 10:35:07 +00:00
|
|
|
assert User.showing_reblogs?(muter, muted) == false
|
2019-03-15 13:06:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "remove a reblog mute", %{muter: muter, muted: muted} do
|
2019-11-19 20:22:10 +00:00
|
|
|
{:ok, _reblog_mute} = CommonAPI.hide_reblogs(muter, muted)
|
|
|
|
{:ok, _reblog_mute} = CommonAPI.show_reblogs(muter, muted)
|
2019-03-15 13:06:58 +00:00
|
|
|
|
2019-05-16 10:35:07 +00:00
|
|
|
assert User.showing_reblogs?(muter, muted) == true
|
2019-03-15 13:06:58 +00:00
|
|
|
end
|
|
|
|
end
|
2019-06-05 13:43:54 +00:00
|
|
|
|
2019-07-14 19:25:03 +00:00
|
|
|
describe "unfollow/2" do
|
|
|
|
test "also unsubscribes a user" do
|
|
|
|
[follower, followed] = insert_pair(:user)
|
|
|
|
{:ok, follower, followed, _} = CommonAPI.follow(follower, followed)
|
2019-11-20 12:46:11 +00:00
|
|
|
{:ok, _subscription} = User.subscribe(follower, followed)
|
2019-07-14 19:25:03 +00:00
|
|
|
|
|
|
|
assert User.subscribed_to?(follower, followed)
|
|
|
|
|
|
|
|
{:ok, follower} = CommonAPI.unfollow(follower, followed)
|
|
|
|
|
|
|
|
refute User.subscribed_to?(follower, followed)
|
|
|
|
end
|
2020-02-04 16:35:32 +00:00
|
|
|
|
2020-02-06 12:47:15 +00:00
|
|
|
test "cancels a pending follow for a local user" do
|
2020-02-04 16:35:32 +00:00
|
|
|
follower = insert(:user)
|
|
|
|
followed = insert(:user, locked: true)
|
|
|
|
|
2020-02-06 12:47:15 +00:00
|
|
|
assert {:ok, follower, followed, %{id: activity_id, data: %{"state" => "pending"}}} =
|
|
|
|
CommonAPI.follow(follower, followed)
|
|
|
|
|
2020-03-28 15:49:03 +00:00
|
|
|
assert User.get_follow_state(follower, followed) == :follow_pending
|
2020-02-06 12:47:15 +00:00
|
|
|
assert {:ok, follower} = CommonAPI.unfollow(follower, followed)
|
2020-02-07 12:17:34 +00:00
|
|
|
assert User.get_follow_state(follower, followed) == nil
|
2020-02-06 12:47:15 +00:00
|
|
|
|
|
|
|
assert %{id: ^activity_id, data: %{"state" => "cancelled"}} =
|
|
|
|
Pleroma.Web.ActivityPub.Utils.fetch_latest_follow(follower, followed)
|
|
|
|
|
|
|
|
assert %{
|
|
|
|
data: %{
|
|
|
|
"type" => "Undo",
|
|
|
|
"object" => %{"type" => "Follow", "state" => "cancelled"}
|
|
|
|
}
|
|
|
|
} = Pleroma.Web.ActivityPub.Utils.fetch_latest_undo(follower)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "cancels a pending follow for a remote user" do
|
|
|
|
follower = insert(:user)
|
|
|
|
followed = insert(:user, locked: true, local: false, ap_enabled: true)
|
|
|
|
|
2020-02-04 16:35:32 +00:00
|
|
|
assert {:ok, follower, followed, %{id: activity_id, data: %{"state" => "pending"}}} =
|
|
|
|
CommonAPI.follow(follower, followed)
|
|
|
|
|
2020-03-28 15:49:03 +00:00
|
|
|
assert User.get_follow_state(follower, followed) == :follow_pending
|
2020-02-04 16:35:32 +00:00
|
|
|
assert {:ok, follower} = CommonAPI.unfollow(follower, followed)
|
2020-02-07 12:17:34 +00:00
|
|
|
assert User.get_follow_state(follower, followed) == nil
|
2020-02-04 16:35:32 +00:00
|
|
|
|
|
|
|
assert %{id: ^activity_id, data: %{"state" => "cancelled"}} =
|
|
|
|
Pleroma.Web.ActivityPub.Utils.fetch_latest_follow(follower, followed)
|
|
|
|
|
|
|
|
assert %{
|
|
|
|
data: %{
|
|
|
|
"type" => "Undo",
|
|
|
|
"object" => %{"type" => "Follow", "state" => "cancelled"}
|
|
|
|
}
|
|
|
|
} = Pleroma.Web.ActivityPub.Utils.fetch_latest_undo(follower)
|
|
|
|
end
|
2019-07-14 19:25:03 +00:00
|
|
|
end
|
|
|
|
|
2019-06-05 13:43:54 +00:00
|
|
|
describe "accept_follow_request/2" do
|
|
|
|
test "after acceptance, it sets all existing pending follow request states to 'accept'" do
|
2019-10-16 18:59:21 +00:00
|
|
|
user = insert(:user, locked: true)
|
2019-06-05 13:43:54 +00:00
|
|
|
follower = insert(:user)
|
|
|
|
follower_two = insert(:user)
|
|
|
|
|
|
|
|
{:ok, follow_activity} = ActivityPub.follow(follower, user)
|
|
|
|
{:ok, follow_activity_two} = ActivityPub.follow(follower, user)
|
|
|
|
{:ok, follow_activity_three} = ActivityPub.follow(follower_two, user)
|
|
|
|
|
|
|
|
assert follow_activity.data["state"] == "pending"
|
|
|
|
assert follow_activity_two.data["state"] == "pending"
|
|
|
|
assert follow_activity_three.data["state"] == "pending"
|
|
|
|
|
|
|
|
{:ok, _follower} = CommonAPI.accept_follow_request(follower, user)
|
|
|
|
|
|
|
|
assert Repo.get(Activity, follow_activity.id).data["state"] == "accept"
|
|
|
|
assert Repo.get(Activity, follow_activity_two.id).data["state"] == "accept"
|
|
|
|
assert Repo.get(Activity, follow_activity_three.id).data["state"] == "pending"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "after rejection, it sets all existing pending follow request states to 'reject'" do
|
2019-10-16 18:59:21 +00:00
|
|
|
user = insert(:user, locked: true)
|
2019-06-05 13:43:54 +00:00
|
|
|
follower = insert(:user)
|
|
|
|
follower_two = insert(:user)
|
|
|
|
|
|
|
|
{:ok, follow_activity} = ActivityPub.follow(follower, user)
|
|
|
|
{:ok, follow_activity_two} = ActivityPub.follow(follower, user)
|
|
|
|
{:ok, follow_activity_three} = ActivityPub.follow(follower_two, user)
|
|
|
|
|
|
|
|
assert follow_activity.data["state"] == "pending"
|
|
|
|
assert follow_activity_two.data["state"] == "pending"
|
|
|
|
assert follow_activity_three.data["state"] == "pending"
|
|
|
|
|
|
|
|
{:ok, _follower} = CommonAPI.reject_follow_request(follower, user)
|
|
|
|
|
|
|
|
assert Repo.get(Activity, follow_activity.id).data["state"] == "reject"
|
|
|
|
assert Repo.get(Activity, follow_activity_two.id).data["state"] == "reject"
|
|
|
|
assert Repo.get(Activity, follow_activity_three.id).data["state"] == "pending"
|
|
|
|
end
|
2020-04-27 14:41:38 +00:00
|
|
|
|
|
|
|
test "doesn't create a following relationship if the corresponding follow request doesn't exist" do
|
|
|
|
user = insert(:user, locked: true)
|
|
|
|
not_follower = insert(:user)
|
|
|
|
CommonAPI.accept_follow_request(not_follower, user)
|
|
|
|
|
|
|
|
assert Pleroma.FollowingRelationship.following?(not_follower, user) == false
|
|
|
|
end
|
2019-06-05 13:43:54 +00:00
|
|
|
end
|
2019-07-15 19:47:23 +00:00
|
|
|
|
|
|
|
describe "vote/3" do
|
|
|
|
test "does not allow to vote twice" do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(user, %{
|
|
|
|
"status" => "Am I cute?",
|
|
|
|
"poll" => %{"options" => ["Yes", "No"], "expires_in" => 20}
|
|
|
|
})
|
|
|
|
|
|
|
|
object = Object.normalize(activity)
|
|
|
|
|
|
|
|
{:ok, _, object} = CommonAPI.vote(other_user, object, [0])
|
|
|
|
|
|
|
|
assert {:error, "Already voted"} == CommonAPI.vote(other_user, object, [1])
|
|
|
|
end
|
|
|
|
end
|
2019-09-28 00:24:32 +00:00
|
|
|
|
|
|
|
describe "listen/2" do
|
|
|
|
test "returns a valid activity" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.listen(user, %{
|
|
|
|
"title" => "lain radio episode 1",
|
|
|
|
"album" => "lain radio",
|
|
|
|
"artist" => "lain",
|
|
|
|
"length" => 180_000
|
|
|
|
})
|
|
|
|
|
|
|
|
object = Object.normalize(activity)
|
|
|
|
|
|
|
|
assert object.data["title"] == "lain radio episode 1"
|
|
|
|
|
|
|
|
assert Visibility.get_visibility(activity) == "public"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "respects visibility=private" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.listen(user, %{
|
|
|
|
"title" => "lain radio episode 1",
|
|
|
|
"album" => "lain radio",
|
|
|
|
"artist" => "lain",
|
|
|
|
"length" => 180_000,
|
|
|
|
"visibility" => "private"
|
|
|
|
})
|
|
|
|
|
|
|
|
object = Object.normalize(activity)
|
|
|
|
|
|
|
|
assert object.data["title"] == "lain radio episode 1"
|
|
|
|
|
|
|
|
assert Visibility.get_visibility(activity) == "private"
|
|
|
|
end
|
|
|
|
end
|
2018-05-23 15:25:24 +00:00
|
|
|
end
|