Merge branch 'fix/config-md-typos' into 'develop'
[akkoma] / test / web / mastodon_api / account_view_test.exs
1 defmodule Pleroma.Web.MastodonAPI.AccountViewTest do
2 use Pleroma.DataCase
3 import Pleroma.Factory
4 alias Pleroma.Web.MastodonAPI.AccountView
5 alias Pleroma.User
6
7 test "Represent a user account" do
8 source_data = %{
9 "tag" => [
10 %{
11 "type" => "Emoji",
12 "icon" => %{"url" => "/file.png"},
13 "name" => ":karjalanpiirakka:"
14 }
15 ]
16 }
17
18 user =
19 insert(:user, %{
20 info: %{note_count: 5, follower_count: 3, source_data: source_data},
21 nickname: "shp@shitposter.club",
22 name: ":karjalanpiirakka: shp",
23 bio: "<script src=\"invalid-html\"></script><span>valid html</span>",
24 inserted_at: ~N[2017-08-15 15:47:06.597036]
25 })
26
27 expected = %{
28 id: to_string(user.id),
29 username: "shp",
30 acct: user.nickname,
31 display_name: user.name,
32 locked: false,
33 created_at: "2017-08-15T15:47:06.000Z",
34 followers_count: 3,
35 following_count: 0,
36 statuses_count: 5,
37 note: "<span>valid html</span>",
38 url: user.ap_id,
39 avatar: "http://localhost:4001/images/avi.png",
40 avatar_static: "http://localhost:4001/images/avi.png",
41 header: "http://localhost:4001/images/banner.png",
42 header_static: "http://localhost:4001/images/banner.png",
43 emojis: [
44 %{
45 "static_url" => "/file.png",
46 "url" => "/file.png",
47 "shortcode" => "karjalanpiirakka",
48 "visible_in_picker" => false
49 }
50 ],
51 fields: [],
52 bot: false,
53 source: %{
54 note: "",
55 privacy: "public",
56 sensitive: false
57 },
58 pleroma: %{tags: []}
59 }
60
61 assert expected == AccountView.render("account.json", %{user: user})
62 end
63
64 test "Represent a Service(bot) account" do
65 user =
66 insert(:user, %{
67 info: %{note_count: 5, follower_count: 3, source_data: %{"type" => "Service"}},
68 nickname: "shp@shitposter.club",
69 inserted_at: ~N[2017-08-15 15:47:06.597036]
70 })
71
72 expected = %{
73 id: to_string(user.id),
74 username: "shp",
75 acct: user.nickname,
76 display_name: user.name,
77 locked: false,
78 created_at: "2017-08-15T15:47:06.000Z",
79 followers_count: 3,
80 following_count: 0,
81 statuses_count: 5,
82 note: user.bio,
83 url: user.ap_id,
84 avatar: "http://localhost:4001/images/avi.png",
85 avatar_static: "http://localhost:4001/images/avi.png",
86 header: "http://localhost:4001/images/banner.png",
87 header_static: "http://localhost:4001/images/banner.png",
88 emojis: [],
89 fields: [],
90 bot: true,
91 source: %{
92 note: "",
93 privacy: "public",
94 sensitive: false
95 },
96 pleroma: %{tags: []}
97 }
98
99 assert expected == AccountView.render("account.json", %{user: user})
100 end
101
102 test "Represent a smaller mention" do
103 user = insert(:user)
104
105 expected = %{
106 id: to_string(user.id),
107 acct: user.nickname,
108 username: user.nickname,
109 url: user.ap_id
110 }
111
112 assert expected == AccountView.render("mention.json", %{user: user})
113 end
114
115 test "represent a relationship" do
116 user = insert(:user)
117 other_user = insert(:user)
118
119 {:ok, user} = User.follow(user, other_user)
120 {:ok, user} = User.block(user, other_user)
121
122 expected = %{
123 id: to_string(other_user.id),
124 following: false,
125 followed_by: false,
126 blocking: true,
127 muting: false,
128 muting_notifications: false,
129 requested: false,
130 domain_blocking: false,
131 showing_reblogs: false,
132 endorsed: false
133 }
134
135 assert expected == AccountView.render("relationship.json", %{user: user, target: other_user})
136 end
137 end