pleroma/test/web/mastodon_api/status_view_test.exs

199 lines
5.2 KiB
Elixir
Raw Normal View History

2017-09-09 12:10:29 +02:00
defmodule Pleroma.Web.MastodonAPI.StatusViewTest do
use Pleroma.DataCase
alias Pleroma.Web.MastodonAPI.{StatusView, AccountView}
2017-09-14 08:11:51 +02:00
alias Pleroma.User
2017-09-09 12:10:29 +02:00
alias Pleroma.Web.OStatus
2017-09-17 13:54:14 +02:00
alias Pleroma.Web.CommonAPI
alias Pleroma.Web.ActivityPub.ActivityPub
alias Pleroma.Activity
2017-09-09 12:10:29 +02:00
import Pleroma.Factory
2018-12-03 19:37:55 +01:00
import Tesla.Mock
setup do
mock(fn env -> apply(HttpRequestMock, :request, [env]) end)
:ok
end
2017-09-09 12:10:29 +02:00
2018-11-03 16:28:29 +01:00
test "a note with null content" do
note = insert(:note_activity)
2018-11-03 16:40:57 +01:00
data =
note.data
|> put_in(["object", "content"], nil)
note =
note
|> Map.put(:data, data)
2018-11-03 16:28:29 +01:00
2018-12-06 19:50:34 +01:00
User.get_cached_by_ap_id(note.data["actor"])
2018-11-03 16:28:29 +01:00
status = StatusView.render("status.json", %{activity: note})
assert status.content == ""
end
2017-09-09 12:10:29 +02: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 15:01:53 +02:00
created_at =
(note.data["object"]["published"] || "")
|> String.replace(~r/\.\d+Z/, ".000Z")
2017-09-09 12:10:29 +02:00
expected = %{
id: to_string(note.id),
2017-09-09 12:10:29 +02:00
uri: note.data["object"]["id"],
url: note.data["object"]["id"],
2017-09-09 12:10:29 +02:00
account: AccountView.render("account.json", %{user: user}),
in_reply_to_id: nil,
in_reply_to_account_id: nil,
reblog: nil,
content: HtmlSanitizeEx.basic_html(note.data["object"]["content"]),
created_at: created_at,
2017-09-09 12:10:29 +02:00
reblogs_count: 0,
replies_count: 0,
2017-09-09 12:10:29 +02:00
favourites_count: 0,
reblogged: false,
favourited: false,
muted: false,
sensitive: false,
2017-10-31 17:49:47 +01:00
spoiler_text: note.data["object"]["summary"],
2017-09-09 12:10:29 +02:00
visibility: "public",
media_attachments: [],
mentions: [],
2018-12-13 13:13:02 +01:00
tags: [
%{
name: "#{note.data["object"]["tag"]}",
url: "/tag/#{note.data["object"]["tag"]}"
}
],
application: %{
name: "Web",
website: nil
},
2017-10-23 16:27:51 +02:00
language: nil,
emojis: [
%{
shortcode: "2hu",
url: "corndog.png",
2018-09-11 01:40:29 +02:00
static_url: "corndog.png",
visible_in_picker: false
2017-10-23 16:27:51 +02:00
}
]
2017-09-09 12:10:29 +02:00
}
assert status == expected
end
test "a reply" do
note = insert(:note_activity)
user = insert(:user)
2018-03-30 15:01:53 +02:00
{:ok, activity} =
CommonAPI.post(user, %{"status" => "he", "in_reply_to_status_id" => note.id})
2018-03-27 18:18:24 +02:00
status = StatusView.render("status.json", %{activity: activity})
assert status.in_reply_to_id == to_string(note.id)
2018-03-27 18:18:24 +02:00
[status] = StatusView.render("index.json", %{activities: [activity], as: :activity})
assert status.in_reply_to_id == to_string(note.id)
end
2017-09-09 12:10:29 +02:00
test "contains mentions" do
incoming = File.read!("test/fixtures/incoming_reply_mastodon.xml")
2017-12-11 20:01:36 +01:00
# a user with this ap id might be in the cache.
recipient = "https://pleroma.soykaf.com/users/lain"
2018-03-22 12:44:32 +01:00
user = insert(:user, %{ap_id: recipient})
2017-09-09 12:10:29 +02:00
{:ok, [activity]} = OStatus.handle_incoming(incoming)
status = StatusView.render("status.json", %{activity: activity})
assert status.mentions == [AccountView.render("mention.json", %{user: user})]
end
2017-09-10 11:51:01 +02:00
test "attachments" do
object = %{
"type" => "Image",
"url" => [
%{
"mediaType" => "image/png",
"href" => "someurl"
}
],
"uuid" => 6
}
expected = %{
2017-11-15 18:58:13 +01:00
id: "1638338801",
2017-09-10 11:51:01 +02:00
type: "image",
url: "someurl",
remote_url: "someurl",
preview_url: "someurl",
text_url: "someurl",
description: nil
2017-09-10 11:51:01 +02:00
}
assert expected == StatusView.render("attachment.json", %{attachment: object})
2017-09-14 08:08:32 +02:00
# If theres a "id", use that instead of the generated one
object = Map.put(object, "id", 2)
2017-11-15 18:58:13 +01:00
assert %{id: "2"} = StatusView.render("attachment.json", %{attachment: object})
2017-09-10 11:51:01 +02:00
end
2017-09-17 13:54:14 +02: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})
assert represented[:id] == to_string(reblog.id)
assert represented[:reblog][:id] == to_string(activity.id)
2017-11-11 11:18:05 +01:00
assert represented[:emojis] == []
2017-09-17 13:54:14 +02:00
end
2018-12-13 13:13:02 +01: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"
)
%Activity{} = activity = Activity.get_create_activity_by_object_ap_id(object.data["id"])
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 13:13:02 +01:00
describe "build_tags/1" do
test "it returns a a dictionary tags" do
2018-12-14 20:56:37 +01: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 13:13:02 +01:00
%{name: "fediverse", url: "/tag/fediverse"},
%{name: "mastodon", url: "/tag/mastodon"},
%{name: "nextcloud", url: "/tag/nextcloud"}
]
end
end
2017-09-09 12:10:29 +02:00
end