2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2019-01-09 12:54:37 +00:00
|
|
|
# Copyright © 2017-2019 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
|
2019-04-17 09:22:32 +00:00
|
|
|
alias Pleroma.Object
|
2019-04-17 11:52:01 +00:00
|
|
|
alias Pleroma.User
|
2018-05-23 15:25:24 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
|
|
|
|
|
|
|
import Pleroma.Factory
|
|
|
|
|
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)
|
|
|
|
option = Pleroma.Config.get([:instance, :safe_dm_mentions])
|
|
|
|
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
|
|
|
|
Pleroma.Config.put([:instance, :safe_dm_mentions], option)
|
|
|
|
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"})
|
|
|
|
|
2018-11-25 22:31:07 +00:00
|
|
|
object = Object.normalize(activity.data["object"])
|
|
|
|
|
|
|
|
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-08-12 19:24:10 +00:00
|
|
|
test "it adds emoji when updating profiles" do
|
2019-04-18 19:04:37 +00:00
|
|
|
user = insert(:user, %{name: ":firefox:"})
|
2018-08-12 19:24:10 +00:00
|
|
|
|
|
|
|
CommonAPI.update(user)
|
|
|
|
user = User.get_cached_by_ap_id(user.ap_id)
|
2019-04-18 19:04:37 +00:00
|
|
|
[firefox] = user.info.source_data["tag"]
|
2018-08-12 19:24:10 +00:00
|
|
|
|
2019-04-18 19:04:37 +00:00
|
|
|
assert firefox["name"] == ":firefox:"
|
2018-08-12 19:24:10 +00:00
|
|
|
end
|
2018-09-02 00:14:25 +00:00
|
|
|
|
|
|
|
describe "posting" do
|
|
|
|
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"
|
|
|
|
})
|
|
|
|
|
2018-11-25 22:49:39 +00:00
|
|
|
object = Object.normalize(activity.data["object"])
|
2018-11-25 22:31:07 +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"
|
|
|
|
})
|
|
|
|
|
2018-11-25 22:49:39 +00:00
|
|
|
object = Object.normalize(activity.data["object"])
|
2018-11-25 22:31:07 +00:00
|
|
|
|
|
|
|
assert object.data["content"] == "<p><b>2hu</b></p>alert('xss')"
|
2018-09-02 00:14:25 +00:00
|
|
|
end
|
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 ->
|
|
|
|
assert {:error, {:private_to_public, _}} =
|
|
|
|
CommonAPI.post(user, %{
|
|
|
|
"status" => "suya..",
|
|
|
|
"visibility" => visibility,
|
|
|
|
"in_reply_to_status_id" => activity.id
|
|
|
|
})
|
|
|
|
end)
|
|
|
|
end
|
2018-09-02 00:14:25 +00:00
|
|
|
end
|
2018-12-14 05:56:49 +00:00
|
|
|
|
|
|
|
describe "reactions" do
|
|
|
|
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
|
|
|
|
|
|
|
|
test "favoriting a status" do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
|
|
|
|
|
|
|
|
{:ok, %Activity{}, _} = CommonAPI.favorite(activity.id, user)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "retweeting a status twice returns an error" do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
|
|
|
|
{:ok, %Activity{}, _object} = CommonAPI.repeat(activity.id, user)
|
|
|
|
{:error, _} = CommonAPI.repeat(activity.id, user)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "favoriting a status twice returns an error" do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
|
|
|
|
{:ok, %Activity{}, _object} = CommonAPI.favorite(activity.id, user)
|
|
|
|
{:error, _} = CommonAPI.favorite(activity.id, user)
|
|
|
|
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)
|
|
|
|
|
|
|
|
assert %User{info: %{pinned_activities: [^id]}} = user
|
2019-01-09 10:40:15 +00:00
|
|
|
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)
|
|
|
|
|
2019-01-07 13:45:33 +00:00
|
|
|
assert {:ok, ^activity} = CommonAPI.unpin(activity.id, user)
|
2019-01-11 05:31:31 +00:00
|
|
|
|
|
|
|
user = refresh_record(user)
|
|
|
|
|
|
|
|
assert %User{info: %{pinned_activities: []}} = user
|
|
|
|
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)
|
|
|
|
|
|
|
|
assert %User{info: %{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 = %{
|
|
|
|
"account_id" => target_user.id,
|
|
|
|
"comment" => comment,
|
|
|
|
"status_ids" => [activity.id]
|
|
|
|
}
|
|
|
|
|
|
|
|
assert {:ok, flag_activity} = CommonAPI.report(reporter, report_data)
|
|
|
|
|
|
|
|
assert %Activity{
|
|
|
|
actor: ^reporter_ap_id,
|
|
|
|
data: %{
|
|
|
|
"type" => "Flag",
|
|
|
|
"content" => ^comment,
|
2019-05-16 19:09:18 +00:00
|
|
|
"object" => [^target_ap_id, ^activity_ap_id],
|
|
|
|
"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, %{
|
|
|
|
"account_id" => target_user.id,
|
|
|
|
"comment" => "I feel offended",
|
|
|
|
"status_ids" => [activity.id]
|
|
|
|
})
|
|
|
|
|
|
|
|
{:ok, report} = CommonAPI.update_report_state(report_id, "resolved")
|
|
|
|
|
|
|
|
assert report.data["state"] == "resolved"
|
|
|
|
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, %{
|
|
|
|
"account_id" => target_user.id,
|
|
|
|
"comment" => "I feel offended",
|
|
|
|
"status_ids" => [activity.id]
|
|
|
|
})
|
|
|
|
|
|
|
|
assert CommonAPI.update_report_state(report_id, "test") == {:error, "Unsupported state"}
|
|
|
|
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
|
|
|
|
{:ok, muter} = CommonAPI.hide_reblogs(muter, muted)
|
|
|
|
|
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
|
|
|
|
{:ok, muter} = CommonAPI.hide_reblogs(muter, muted)
|
|
|
|
{:ok, muter} = CommonAPI.show_reblogs(muter, muted)
|
|
|
|
|
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
|
2018-05-23 15:25:24 +00:00
|
|
|
end
|