Fix some more tests.
[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 # a user with this ap id might be in the cache.
60 recipient = "https://pleroma.soykaf.com/users/lain"
61 user = User.get_cached_by_ap_id(recipient) || insert(:user, %{ap_id: recipient})
62
63 {:ok, [activity]} = OStatus.handle_incoming(incoming)
64
65 status = StatusView.render("status.json", %{activity: activity})
66
67 assert status.mentions == [AccountView.render("mention.json", %{user: user})]
68 end
69
70 test "attachments" do
71 object = %{
72 "type" => "Image",
73 "url" => [
74 %{
75 "mediaType" => "image/png",
76 "href" => "someurl"
77 }
78 ],
79 "uuid" => 6
80 }
81
82 expected = %{
83 id: "1638338801",
84 type: "image",
85 url: "someurl",
86 remote_url: "someurl",
87 preview_url: "someurl",
88 text_url: "someurl"
89 }
90
91 assert expected == StatusView.render("attachment.json", %{attachment: object})
92
93 # If theres a "id", use that instead of the generated one
94 object = Map.put(object, "id", 2)
95 assert %{id: "2"} = StatusView.render("attachment.json", %{attachment: object})
96 end
97
98 test "a reblog" do
99 user = insert(:user)
100 activity = insert(:note_activity)
101
102 {:ok, reblog, _} = CommonAPI.repeat(activity.id, user)
103
104 represented = StatusView.render("status.json", %{for: user, activity: reblog})
105
106 assert represented[:id] == to_string(reblog.id)
107 assert represented[:reblog][:id] == to_string(activity.id)
108 assert represented[:emojis] == []
109 end
110 end