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