Merge branch 'fix/tootdon-mentions' into 'develop'
[akkoma] / test / web / mastodon_api / status_view_test.exs
1 defmodule Pleroma.Web.MastodonAPI.StatusViewTest do
2 use Pleroma.DataCase
3
4 alias Pleroma.Web.MastodonAPI.{StatusView, AccountView}
5 alias Pleroma.User
6 alias Pleroma.Web.OStatus
7 alias Pleroma.Web.CommonAPI
8 import Pleroma.Factory
9
10 test "a note activity" do
11 note = insert(:note_activity)
12 user = User.get_cached_by_ap_id(note.data["actor"])
13
14 status = StatusView.render("status.json", %{activity: note})
15
16 created_at = (note.data["object"]["published"] || "")
17 |> String.replace(~r/\.\d+Z/, ".000Z")
18
19 expected = %{
20 id: to_string(note.id),
21 uri: note.data["object"]["id"],
22 url: note.data["object"]["id"],
23 account: AccountView.render("account.json", %{user: user}),
24 in_reply_to_id: nil,
25 in_reply_to_account_id: nil,
26 reblog: nil,
27 content: HtmlSanitizeEx.basic_html(note.data["object"]["content"]),
28 created_at: created_at,
29 reblogs_count: 0,
30 favourites_count: 0,
31 reblogged: false,
32 favourited: false,
33 muted: false,
34 sensitive: false,
35 spoiler_text: note.data["object"]["summary"],
36 visibility: "public",
37 media_attachments: [],
38 mentions: [],
39 tags: [],
40 application: %{
41 name: "Web",
42 website: nil
43 },
44 language: nil,
45 emojis: [
46 %{
47 shortcode: "2hu",
48 url: "corndog.png",
49 static_url: "corndog.png"
50 }
51 ]
52 }
53
54 assert status == expected
55 end
56
57 test "contains mentions" do
58 incoming = File.read!("test/fixtures/incoming_reply_mastodon.xml")
59 user = insert(:user, %{ap_id: "https://pleroma.soykaf.com/users/lain"})
60
61 {:ok, [activity]} = OStatus.handle_incoming(incoming)
62
63 status = StatusView.render("status.json", %{activity: activity})
64
65 assert status.mentions == [AccountView.render("mention.json", %{user: user})]
66 end
67
68 test "attachments" do
69 object = %{
70 "type" => "Image",
71 "url" => [
72 %{
73 "mediaType" => "image/png",
74 "href" => "someurl"
75 }
76 ],
77 "uuid" => 6
78 }
79
80 expected = %{
81 id: "1638338801",
82 type: "image",
83 url: "someurl",
84 remote_url: "someurl",
85 preview_url: "someurl",
86 text_url: "someurl"
87 }
88
89 assert expected == StatusView.render("attachment.json", %{attachment: object})
90
91 # If theres a "id", use that instead of the generated one
92 object = Map.put(object, "id", 2)
93 assert %{id: "2"} = StatusView.render("attachment.json", %{attachment: object})
94 end
95
96 test "a reblog" do
97 user = insert(:user)
98 activity = insert(:note_activity)
99
100 {:ok, reblog, _} = CommonAPI.repeat(activity.id, user)
101
102 represented = StatusView.render("status.json", %{for: user, activity: reblog})
103
104 assert represented[:id] == to_string(reblog.id)
105 assert represented[:reblog][:id] == to_string(activity.id)
106 assert represented[:emojis] == []
107 end
108 end