2019-07-09 22:13:23 -07:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-01 21:08:45 -08:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-07-09 22:13:23 -07:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-12-11 09:19:46 -08:00
|
|
|
defmodule Pleroma.Web.ActivityPub.ObjectViewTest do
|
|
|
|
use Pleroma.DataCase
|
|
|
|
import Pleroma.Factory
|
|
|
|
|
2019-07-08 09:53:02 -07:00
|
|
|
alias Pleroma.Object
|
2017-12-11 09:19:46 -08:00
|
|
|
alias Pleroma.Web.ActivityPub.ObjectView
|
2019-03-04 18:52:23 -08:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2017-12-11 09:19:46 -08:00
|
|
|
|
|
|
|
test "renders a note object" do
|
|
|
|
note = insert(:note)
|
|
|
|
|
|
|
|
result = ObjectView.render("object.json", %{object: note})
|
|
|
|
|
|
|
|
assert result["id"] == note.data["id"]
|
|
|
|
assert result["to"] == note.data["to"]
|
|
|
|
assert result["content"] == note.data["content"]
|
|
|
|
assert result["type"] == "Note"
|
2018-11-08 07:05:28 -08:00
|
|
|
assert result["@context"]
|
2017-12-11 09:19:46 -08:00
|
|
|
end
|
2018-11-17 14:29:08 -08:00
|
|
|
|
|
|
|
test "renders a note activity" do
|
|
|
|
note = insert(:note_activity)
|
2019-07-09 12:37:59 -07:00
|
|
|
object = Object.normalize(note)
|
2018-11-17 14:29:08 -08:00
|
|
|
|
|
|
|
result = ObjectView.render("object.json", %{object: note})
|
|
|
|
|
|
|
|
assert result["id"] == note.data["id"]
|
|
|
|
assert result["to"] == note.data["to"]
|
|
|
|
assert result["object"]["type"] == "Note"
|
2019-07-08 09:53:02 -07:00
|
|
|
assert result["object"]["content"] == object.data["content"]
|
2018-11-17 14:29:08 -08:00
|
|
|
assert result["type"] == "Create"
|
|
|
|
assert result["@context"]
|
|
|
|
end
|
|
|
|
|
2020-02-08 08:58:02 -08:00
|
|
|
describe "note activity's `replies` collection rendering" do
|
2020-03-20 08:33:00 -07:00
|
|
|
setup do: clear_config([:activitypub, :note_replies_output_limit], 5)
|
2020-02-08 08:58:02 -08:00
|
|
|
|
|
|
|
test "renders `replies` collection for a note activity" do
|
|
|
|
user = insert(:user)
|
|
|
|
activity = insert(:note_activity, user: user)
|
|
|
|
|
|
|
|
{:ok, self_reply1} =
|
|
|
|
CommonAPI.post(user, %{"status" => "self-reply 1", "in_reply_to_status_id" => activity.id})
|
|
|
|
|
2020-02-08 23:17:21 -08:00
|
|
|
replies_uris = [self_reply1.object.data["id"]]
|
2020-02-08 08:58:02 -08:00
|
|
|
result = ObjectView.render("object.json", %{object: refresh_record(activity)})
|
|
|
|
|
2020-02-09 06:34:48 -08:00
|
|
|
assert %{"type" => "Collection", "items" => ^replies_uris} =
|
|
|
|
get_in(result, ["object", "replies"])
|
2020-02-08 08:58:02 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-17 14:29:08 -08:00
|
|
|
test "renders a like activity" do
|
|
|
|
note = insert(:note_activity)
|
2019-07-08 09:53:02 -07:00
|
|
|
object = Object.normalize(note)
|
2018-11-17 14:29:08 -08:00
|
|
|
user = insert(:user)
|
|
|
|
|
2019-10-16 07:16:39 -07:00
|
|
|
{:ok, like_activity} = CommonAPI.favorite(user, note.id)
|
2018-11-17 14:29:08 -08:00
|
|
|
|
|
|
|
result = ObjectView.render("object.json", %{object: like_activity})
|
|
|
|
|
|
|
|
assert result["id"] == like_activity.data["id"]
|
2019-07-08 09:53:02 -07:00
|
|
|
assert result["object"] == object.data["id"]
|
2018-11-17 14:29:08 -08:00
|
|
|
assert result["type"] == "Like"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "renders an announce activity" do
|
|
|
|
note = insert(:note_activity)
|
2019-07-08 09:53:02 -07:00
|
|
|
object = Object.normalize(note)
|
2018-11-17 14:29:08 -08:00
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, announce_activity, _} = CommonAPI.repeat(note.id, user)
|
|
|
|
|
|
|
|
result = ObjectView.render("object.json", %{object: announce_activity})
|
|
|
|
|
|
|
|
assert result["id"] == announce_activity.data["id"]
|
2019-07-08 09:53:02 -07:00
|
|
|
assert result["object"] == object.data["id"]
|
2018-11-17 14:29:08 -08:00
|
|
|
assert result["type"] == "Announce"
|
|
|
|
end
|
2017-12-11 09:19:46 -08:00
|
|
|
end
|