Mastodon Conversation API: Don't return own account in 'accounts'.
[akkoma] / test / web / twitter_api / util_controller_test.exs
1 defmodule Pleroma.Web.TwitterAPI.UtilControllerTest do
2 use Pleroma.Web.ConnCase
3
4 alias Pleroma.Notification
5 alias Pleroma.Repo
6 alias Pleroma.User
7 alias Pleroma.Web.CommonAPI
8 import Pleroma.Factory
9
10 setup do
11 Tesla.Mock.mock(fn env -> apply(HttpRequestMock, :request, [env]) end)
12 :ok
13 end
14
15 describe "POST /api/pleroma/follow_import" do
16 test "it returns HTTP 200", %{conn: conn} do
17 user1 = insert(:user)
18 user2 = insert(:user)
19
20 response =
21 conn
22 |> assign(:user, user1)
23 |> post("/api/pleroma/follow_import", %{"list" => "#{user2.ap_id}"})
24 |> json_response(:ok)
25
26 assert response == "job started"
27 end
28
29 test "it imports new-style mastodon follow lists", %{conn: conn} do
30 user1 = insert(:user)
31 user2 = insert(:user)
32
33 response =
34 conn
35 |> assign(:user, user1)
36 |> post("/api/pleroma/follow_import", %{
37 "list" => "Account address,Show boosts\n#{user2.ap_id},true"
38 })
39 |> json_response(:ok)
40
41 assert response == "job started"
42 end
43
44 test "requires 'follow' permission", %{conn: conn} do
45 token1 = insert(:oauth_token, scopes: ["read", "write"])
46 token2 = insert(:oauth_token, scopes: ["follow"])
47 another_user = insert(:user)
48
49 for token <- [token1, token2] do
50 conn =
51 conn
52 |> put_req_header("authorization", "Bearer #{token.token}")
53 |> post("/api/pleroma/follow_import", %{"list" => "#{another_user.ap_id}"})
54
55 if token == token1 do
56 assert %{"error" => "Insufficient permissions: follow."} == json_response(conn, 403)
57 else
58 assert json_response(conn, 200)
59 end
60 end
61 end
62 end
63
64 describe "POST /api/pleroma/blocks_import" do
65 test "it returns HTTP 200", %{conn: conn} do
66 user1 = insert(:user)
67 user2 = insert(:user)
68
69 response =
70 conn
71 |> assign(:user, user1)
72 |> post("/api/pleroma/blocks_import", %{"list" => "#{user2.ap_id}"})
73 |> json_response(:ok)
74
75 assert response == "job started"
76 end
77 end
78
79 describe "POST /api/pleroma/notifications/read" do
80 test "it marks a single notification as read", %{conn: conn} do
81 user1 = insert(:user)
82 user2 = insert(:user)
83 {:ok, activity1} = CommonAPI.post(user2, %{"status" => "hi @#{user1.nickname}"})
84 {:ok, activity2} = CommonAPI.post(user2, %{"status" => "hi @#{user1.nickname}"})
85 {:ok, [notification1]} = Notification.create_notifications(activity1)
86 {:ok, [notification2]} = Notification.create_notifications(activity2)
87
88 conn
89 |> assign(:user, user1)
90 |> post("/api/pleroma/notifications/read", %{"id" => "#{notification1.id}"})
91 |> json_response(:ok)
92
93 assert Repo.get(Notification, notification1.id).seen
94 refute Repo.get(Notification, notification2.id).seen
95 end
96 end
97
98 describe "PUT /api/pleroma/notification_settings" do
99 test "it updates notification settings", %{conn: conn} do
100 user = insert(:user)
101
102 conn
103 |> assign(:user, user)
104 |> put("/api/pleroma/notification_settings", %{
105 "remote" => false,
106 "followers" => false,
107 "bar" => 1
108 })
109 |> json_response(:ok)
110
111 user = Repo.get(User, user.id)
112
113 assert %{"remote" => false, "local" => true, "followers" => false, "follows" => true} ==
114 user.info.notification_settings
115 end
116 end
117
118 describe "GET /api/statusnet/config.json" do
119 test "returns the state of safe_dm_mentions flag", %{conn: conn} do
120 option = Pleroma.Config.get([:instance, :safe_dm_mentions])
121 Pleroma.Config.put([:instance, :safe_dm_mentions], true)
122
123 response =
124 conn
125 |> get("/api/statusnet/config.json")
126 |> json_response(:ok)
127
128 assert response["site"]["safeDMMentionsEnabled"] == "1"
129
130 Pleroma.Config.put([:instance, :safe_dm_mentions], false)
131
132 response =
133 conn
134 |> get("/api/statusnet/config.json")
135 |> json_response(:ok)
136
137 assert response["site"]["safeDMMentionsEnabled"] == "0"
138
139 Pleroma.Config.put([:instance, :safe_dm_mentions], option)
140 end
141
142 test "it returns the managed config", %{conn: conn} do
143 Pleroma.Config.put([:instance, :managed_config], false)
144 Pleroma.Config.put([:frontend_configurations, :pleroma_fe], %{theme: "asuka-hospital"})
145
146 response =
147 conn
148 |> get("/api/statusnet/config.json")
149 |> json_response(:ok)
150
151 refute response["site"]["pleromafe"]
152
153 Pleroma.Config.put([:instance, :managed_config], true)
154
155 response =
156 conn
157 |> get("/api/statusnet/config.json")
158 |> json_response(:ok)
159
160 assert response["site"]["pleromafe"] == %{"theme" => "asuka-hospital"}
161 end
162 end
163
164 describe "GET /api/pleroma/frontend_configurations" do
165 test "returns everything in :pleroma, :frontend_configurations", %{conn: conn} do
166 config = [
167 frontend_a: %{
168 x: 1,
169 y: 2
170 },
171 frontend_b: %{
172 z: 3
173 }
174 ]
175
176 Pleroma.Config.put(:frontend_configurations, config)
177
178 response =
179 conn
180 |> get("/api/pleroma/frontend_configurations")
181 |> json_response(:ok)
182
183 assert response == Jason.encode!(config |> Enum.into(%{})) |> Jason.decode!()
184 end
185 end
186
187 describe "/api/pleroma/emoji" do
188 test "returns json with custom emoji with tags", %{conn: conn} do
189 emoji =
190 conn
191 |> get("/api/pleroma/emoji")
192 |> json_response(200)
193
194 assert Enum.all?(emoji, fn
195 {_key,
196 %{
197 "image_url" => url,
198 "tags" => tags
199 }} ->
200 is_binary(url) and is_list(tags)
201 end)
202 end
203 end
204
205 describe "GET /ostatus_subscribe?acct=...." do
206 test "adds status to pleroma instance if the `acct` is a status", %{conn: conn} do
207 conn =
208 get(
209 conn,
210 "/ostatus_subscribe?acct=https://mastodon.social/users/emelie/statuses/101849165031453009"
211 )
212
213 assert redirected_to(conn) =~ "/notice/"
214 end
215
216 test "show follow account page if the `acct` is a account link", %{conn: conn} do
217 response =
218 get(
219 conn,
220 "/ostatus_subscribe?acct=https://mastodon.social/users/emelie"
221 )
222
223 assert html_response(response, 200) =~ "Log in to follow"
224 end
225 end
226
227 test "GET /api/pleroma/healthcheck", %{conn: conn} do
228 conn = get(conn, "/api/pleroma/healthcheck")
229
230 assert conn.status in [200, 503]
231 end
232
233 describe "POST /api/pleroma/disable_account" do
234 test "it returns HTTP 200", %{conn: conn} do
235 user = insert(:user)
236
237 response =
238 conn
239 |> assign(:user, user)
240 |> post("/api/pleroma/disable_account", %{"password" => "test"})
241 |> json_response(:ok)
242
243 assert response == %{"status" => "success"}
244
245 user = User.get_cached_by_id(user.id)
246
247 assert user.info.deactivated == true
248 end
249 end
250 end