2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-09-09 10:10:29 +00:00
|
|
|
defmodule Pleroma.Web.MastodonAPI.StatusViewTest do
|
|
|
|
use Pleroma.DataCase
|
|
|
|
|
2019-02-10 21:57:38 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.AccountView
|
|
|
|
alias Pleroma.Web.MastodonAPI.StatusView
|
2017-09-14 06:11:51 +00:00
|
|
|
alias Pleroma.User
|
2017-09-09 10:10:29 +00:00
|
|
|
alias Pleroma.Web.OStatus
|
2017-09-17 11:54:14 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2018-12-23 13:42:42 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
|
|
|
alias Pleroma.Activity
|
2017-09-09 10:10:29 +00:00
|
|
|
import Pleroma.Factory
|
2018-12-03 18:37:55 +00:00
|
|
|
import Tesla.Mock
|
|
|
|
|
|
|
|
setup do
|
|
|
|
mock(fn env -> apply(HttpRequestMock, :request, [env]) end)
|
|
|
|
:ok
|
|
|
|
end
|
2017-09-09 10:10:29 +00:00
|
|
|
|
2019-01-16 14:13:09 +00:00
|
|
|
test "returns a temporary ap_id based user for activities missing db users" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "Hey @shp!", "visibility" => "direct"})
|
|
|
|
|
|
|
|
Repo.delete(user)
|
|
|
|
Cachex.clear(:user_cache)
|
|
|
|
|
|
|
|
%{account: ms_user} = StatusView.render("status.json", activity: activity)
|
|
|
|
|
|
|
|
assert ms_user.acct == "erroruser@example.com"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "tries to get a user by nickname if fetching by ap_id doesn't work" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "Hey @shp!", "visibility" => "direct"})
|
|
|
|
|
|
|
|
{:ok, user} =
|
|
|
|
user
|
|
|
|
|> Ecto.Changeset.change(%{ap_id: "#{user.ap_id}/extension/#{user.nickname}"})
|
|
|
|
|> Repo.update()
|
|
|
|
|
|
|
|
Cachex.clear(:user_cache)
|
|
|
|
|
|
|
|
result = StatusView.render("status.json", activity: activity)
|
|
|
|
|
|
|
|
assert result[:account][:id] == to_string(user.id)
|
|
|
|
end
|
|
|
|
|
2018-11-03 15:28:29 +00:00
|
|
|
test "a note with null content" do
|
|
|
|
note = insert(:note_activity)
|
2018-11-03 15:40:57 +00:00
|
|
|
|
|
|
|
data =
|
|
|
|
note.data
|
|
|
|
|> put_in(["object", "content"], nil)
|
|
|
|
|
|
|
|
note =
|
|
|
|
note
|
|
|
|
|> Map.put(:data, data)
|
2018-11-03 15:28:29 +00:00
|
|
|
|
2018-12-06 18:50:34 +00:00
|
|
|
User.get_cached_by_ap_id(note.data["actor"])
|
2018-11-03 15:28:29 +00:00
|
|
|
|
|
|
|
status = StatusView.render("status.json", %{activity: note})
|
|
|
|
|
|
|
|
assert status.content == ""
|
|
|
|
end
|
|
|
|
|
2017-09-09 10:10:29 +00:00
|
|
|
test "a note activity" do
|
|
|
|
note = insert(:note_activity)
|
|
|
|
user = User.get_cached_by_ap_id(note.data["actor"])
|
|
|
|
|
|
|
|
status = StatusView.render("status.json", %{activity: note})
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
created_at =
|
|
|
|
(note.data["object"]["published"] || "")
|
|
|
|
|> String.replace(~r/\.\d+Z/, ".000Z")
|
2017-09-12 11:31:17 +00:00
|
|
|
|
2017-09-09 10:10:29 +00:00
|
|
|
expected = %{
|
2017-10-31 13:51:41 +00:00
|
|
|
id: to_string(note.id),
|
2017-09-09 10:10:29 +00:00
|
|
|
uri: note.data["object"]["id"],
|
2017-10-31 13:40:12 +00:00
|
|
|
url: note.data["object"]["id"],
|
2017-09-09 10:10:29 +00:00
|
|
|
account: AccountView.render("account.json", %{user: user}),
|
|
|
|
in_reply_to_id: nil,
|
|
|
|
in_reply_to_account_id: nil,
|
2019-01-27 12:21:51 +00:00
|
|
|
card: nil,
|
2017-09-09 10:10:29 +00:00
|
|
|
reblog: nil,
|
|
|
|
content: HtmlSanitizeEx.basic_html(note.data["object"]["content"]),
|
2017-09-12 11:31:17 +00:00
|
|
|
created_at: created_at,
|
2017-09-09 10:10:29 +00:00
|
|
|
reblogs_count: 0,
|
2018-09-20 14:10:46 +00:00
|
|
|
replies_count: 0,
|
2017-09-09 10:10:29 +00:00
|
|
|
favourites_count: 0,
|
|
|
|
reblogged: false,
|
2018-09-19 00:04:56 +00:00
|
|
|
bookmarked: false,
|
2017-09-09 10:10:29 +00:00
|
|
|
favourited: false,
|
|
|
|
muted: false,
|
2019-01-08 08:27:02 +00:00
|
|
|
pinned: false,
|
2017-09-09 10:10:29 +00:00
|
|
|
sensitive: false,
|
2017-10-31 16:49:47 +00:00
|
|
|
spoiler_text: note.data["object"]["summary"],
|
2017-09-09 10:10:29 +00:00
|
|
|
visibility: "public",
|
|
|
|
media_attachments: [],
|
|
|
|
mentions: [],
|
2018-12-13 12:13:02 +00:00
|
|
|
tags: [
|
|
|
|
%{
|
|
|
|
name: "#{note.data["object"]["tag"]}",
|
|
|
|
url: "/tag/#{note.data["object"]["tag"]}"
|
|
|
|
}
|
|
|
|
],
|
2017-09-14 07:14:08 +00:00
|
|
|
application: %{
|
|
|
|
name: "Web",
|
|
|
|
website: nil
|
|
|
|
},
|
2017-10-23 14:27:51 +00:00
|
|
|
language: nil,
|
|
|
|
emojis: [
|
|
|
|
%{
|
|
|
|
shortcode: "2hu",
|
|
|
|
url: "corndog.png",
|
2018-09-10 23:40:29 +00:00
|
|
|
static_url: "corndog.png",
|
|
|
|
visible_in_picker: false
|
2017-10-23 14:27:51 +00:00
|
|
|
}
|
|
|
|
]
|
2017-09-09 10:10:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
assert status == expected
|
|
|
|
end
|
|
|
|
|
2018-03-27 15:43:08 +00:00
|
|
|
test "a reply" do
|
|
|
|
note = insert(:note_activity)
|
|
|
|
user = insert(:user)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(user, %{"status" => "he", "in_reply_to_status_id" => note.id})
|
2018-03-27 15:43:08 +00:00
|
|
|
|
2018-03-27 16:18:24 +00:00
|
|
|
status = StatusView.render("status.json", %{activity: activity})
|
|
|
|
|
2018-06-15 19:37:29 +00:00
|
|
|
assert status.in_reply_to_id == to_string(note.id)
|
2018-03-27 16:18:24 +00:00
|
|
|
|
|
|
|
[status] = StatusView.render("index.json", %{activities: [activity], as: :activity})
|
|
|
|
|
2018-06-15 19:37:29 +00:00
|
|
|
assert status.in_reply_to_id == to_string(note.id)
|
2018-03-27 15:43:08 +00:00
|
|
|
end
|
|
|
|
|
2017-09-09 10:10:29 +00:00
|
|
|
test "contains mentions" do
|
|
|
|
incoming = File.read!("test/fixtures/incoming_reply_mastodon.xml")
|
2017-12-11 19:01:36 +00:00
|
|
|
# a user with this ap id might be in the cache.
|
|
|
|
recipient = "https://pleroma.soykaf.com/users/lain"
|
2018-03-22 11:44:32 +00:00
|
|
|
user = insert(:user, %{ap_id: recipient})
|
2018-03-16 05:30:28 +00:00
|
|
|
|
2017-09-09 10:10:29 +00:00
|
|
|
{:ok, [activity]} = OStatus.handle_incoming(incoming)
|
|
|
|
|
|
|
|
status = StatusView.render("status.json", %{activity: activity})
|
|
|
|
|
2019-01-19 01:25:15 +00:00
|
|
|
actor = Repo.get_by(User, ap_id: activity.actor)
|
2019-01-19 01:26:52 +00:00
|
|
|
|
|
|
|
assert status.mentions ==
|
|
|
|
Enum.map([user, actor], fn u -> AccountView.render("mention.json", %{user: u}) end)
|
2017-09-09 10:10:29 +00:00
|
|
|
end
|
2017-09-10 09:51:01 +00:00
|
|
|
|
|
|
|
test "attachments" do
|
|
|
|
object = %{
|
|
|
|
"type" => "Image",
|
|
|
|
"url" => [
|
|
|
|
%{
|
|
|
|
"mediaType" => "image/png",
|
|
|
|
"href" => "someurl"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"uuid" => 6
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = %{
|
2017-11-15 17:58:13 +00:00
|
|
|
id: "1638338801",
|
2017-09-10 09:51:01 +00:00
|
|
|
type: "image",
|
|
|
|
url: "someurl",
|
|
|
|
remote_url: "someurl",
|
2017-09-14 06:38:48 +00:00
|
|
|
preview_url: "someurl",
|
2018-07-17 03:37:40 +00:00
|
|
|
text_url: "someurl",
|
|
|
|
description: nil
|
2017-09-10 09:51:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
assert expected == StatusView.render("attachment.json", %{attachment: object})
|
2017-09-14 06:08:32 +00:00
|
|
|
|
|
|
|
# If theres a "id", use that instead of the generated one
|
|
|
|
object = Map.put(object, "id", 2)
|
2017-11-15 17:58:13 +00:00
|
|
|
assert %{id: "2"} = StatusView.render("attachment.json", %{attachment: object})
|
2017-09-10 09:51:01 +00:00
|
|
|
end
|
2017-09-17 11:54:14 +00:00
|
|
|
|
|
|
|
test "a reblog" do
|
|
|
|
user = insert(:user)
|
|
|
|
activity = insert(:note_activity)
|
|
|
|
|
|
|
|
{:ok, reblog, _} = CommonAPI.repeat(activity.id, user)
|
|
|
|
|
|
|
|
represented = StatusView.render("status.json", %{for: user, activity: reblog})
|
|
|
|
|
2017-10-31 13:51:41 +00:00
|
|
|
assert represented[:id] == to_string(reblog.id)
|
|
|
|
assert represented[:reblog][:id] == to_string(activity.id)
|
2017-11-11 10:18:05 +00:00
|
|
|
assert represented[:emojis] == []
|
2017-09-17 11:54:14 +00:00
|
|
|
end
|
2018-12-13 12:13:02 +00:00
|
|
|
|
2018-12-23 13:42:42 +00:00
|
|
|
test "a peertube video" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, object} =
|
|
|
|
ActivityPub.fetch_object_from_id(
|
|
|
|
"https://peertube.moe/videos/watch/df5f464b-be8d-46fb-ad81-2d4c2d1630e3"
|
|
|
|
)
|
|
|
|
|
2019-01-21 06:14:20 +00:00
|
|
|
%Activity{} = activity = Activity.get_create_by_object_ap_id(object.data["id"])
|
2018-12-23 13:42:42 +00:00
|
|
|
|
|
|
|
represented = StatusView.render("status.json", %{for: user, activity: activity})
|
|
|
|
|
|
|
|
assert represented[:id] == to_string(activity.id)
|
|
|
|
assert length(represented[:media_attachments]) == 1
|
|
|
|
end
|
|
|
|
|
2018-12-13 12:13:02 +00:00
|
|
|
describe "build_tags/1" do
|
|
|
|
test "it returns a a dictionary tags" do
|
2018-12-14 19:56:37 +00:00
|
|
|
object_tags = [
|
|
|
|
"fediverse",
|
|
|
|
"mastodon",
|
|
|
|
"nextcloud",
|
|
|
|
%{
|
|
|
|
"href" => "https://kawen.space/users/lain",
|
|
|
|
"name" => "@lain@kawen.space",
|
|
|
|
"type" => "Mention"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
assert StatusView.build_tags(object_tags) == [
|
2018-12-13 12:13:02 +00:00
|
|
|
%{name: "fediverse", url: "/tag/fediverse"},
|
|
|
|
%{name: "mastodon", url: "/tag/mastodon"},
|
|
|
|
%{name: "nextcloud", url: "/tag/nextcloud"}
|
|
|
|
]
|
|
|
|
end
|
|
|
|
end
|
2019-02-06 18:12:26 +00:00
|
|
|
|
|
|
|
describe "rich media cards" do
|
|
|
|
test "a rich media card without a site name renders correctly" do
|
|
|
|
page_url = "http://example.com"
|
|
|
|
|
|
|
|
card = %{
|
|
|
|
url: page_url,
|
|
|
|
image: page_url <> "/example.jpg",
|
|
|
|
title: "Example website"
|
|
|
|
}
|
|
|
|
|
|
|
|
%{provider_name: "example.com"} =
|
|
|
|
StatusView.render("card.json", %{page_url: page_url, rich_media: card})
|
|
|
|
end
|
|
|
|
|
|
|
|
test "a rich media card without a site name or image renders correctly" do
|
|
|
|
page_url = "http://example.com"
|
|
|
|
|
|
|
|
card = %{
|
|
|
|
url: page_url,
|
|
|
|
title: "Example website"
|
|
|
|
}
|
|
|
|
|
|
|
|
%{provider_name: "example.com"} =
|
|
|
|
StatusView.render("card.json", %{page_url: page_url, rich_media: card})
|
|
|
|
end
|
|
|
|
|
|
|
|
test "a rich media card without an image renders correctly" do
|
|
|
|
page_url = "http://example.com"
|
|
|
|
|
|
|
|
card = %{
|
|
|
|
url: page_url,
|
|
|
|
site_name: "Example site name",
|
|
|
|
title: "Example website"
|
|
|
|
}
|
|
|
|
|
|
|
|
%{provider_name: "Example site name"} =
|
|
|
|
StatusView.render("card.json", %{page_url: page_url, rich_media: card})
|
|
|
|
end
|
2019-02-06 18:27:55 +00:00
|
|
|
|
|
|
|
test "a rich media card with all relevant data renders correctly" do
|
|
|
|
page_url = "http://example.com"
|
|
|
|
|
|
|
|
card = %{
|
|
|
|
url: page_url,
|
|
|
|
site_name: "Example site name",
|
|
|
|
title: "Example website",
|
|
|
|
image: page_url <> "/example.jpg",
|
|
|
|
description: "Example description"
|
|
|
|
}
|
|
|
|
|
|
|
|
%{provider_name: "Example site name"} =
|
|
|
|
StatusView.render("card.json", %{page_url: page_url, rich_media: card})
|
|
|
|
end
|
2019-02-06 18:12:26 +00:00
|
|
|
end
|
2017-09-09 10:10:29 +00:00
|
|
|
end
|