Merge branch '1973-chats-fix-with-restrict-unauthenticated' into 'develop'
[akkoma] / test / web / mastodon_api / controllers / account_controller_test.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.MastodonAPI.AccountControllerTest do
6 use Pleroma.Web.ConnCase
7
8 alias Pleroma.Config
9 alias Pleroma.Repo
10 alias Pleroma.User
11 alias Pleroma.Web.ActivityPub.ActivityPub
12 alias Pleroma.Web.ActivityPub.InternalFetchActor
13 alias Pleroma.Web.CommonAPI
14 alias Pleroma.Web.OAuth.Token
15
16 import Pleroma.Factory
17
18 describe "account fetching" do
19 setup do: clear_config([:instance, :limit_to_local_content])
20
21 test "works by id" do
22 %User{id: user_id} = insert(:user)
23
24 assert %{"id" => ^user_id} =
25 build_conn()
26 |> get("/api/v1/accounts/#{user_id}")
27 |> json_response_and_validate_schema(200)
28
29 assert %{"error" => "Can't find user"} =
30 build_conn()
31 |> get("/api/v1/accounts/-1")
32 |> json_response_and_validate_schema(404)
33 end
34
35 test "works by nickname" do
36 user = insert(:user)
37
38 assert %{"id" => user_id} =
39 build_conn()
40 |> get("/api/v1/accounts/#{user.nickname}")
41 |> json_response_and_validate_schema(200)
42 end
43
44 test "works by nickname for remote users" do
45 Config.put([:instance, :limit_to_local_content], false)
46
47 user = insert(:user, nickname: "user@example.com", local: false)
48
49 assert %{"id" => user_id} =
50 build_conn()
51 |> get("/api/v1/accounts/#{user.nickname}")
52 |> json_response_and_validate_schema(200)
53 end
54
55 test "respects limit_to_local_content == :all for remote user nicknames" do
56 Config.put([:instance, :limit_to_local_content], :all)
57
58 user = insert(:user, nickname: "user@example.com", local: false)
59
60 assert build_conn()
61 |> get("/api/v1/accounts/#{user.nickname}")
62 |> json_response_and_validate_schema(404)
63 end
64
65 test "respects limit_to_local_content == :unauthenticated for remote user nicknames" do
66 Config.put([:instance, :limit_to_local_content], :unauthenticated)
67
68 user = insert(:user, nickname: "user@example.com", local: false)
69 reading_user = insert(:user)
70
71 conn =
72 build_conn()
73 |> get("/api/v1/accounts/#{user.nickname}")
74
75 assert json_response_and_validate_schema(conn, 404)
76
77 conn =
78 build_conn()
79 |> assign(:user, reading_user)
80 |> assign(:token, insert(:oauth_token, user: reading_user, scopes: ["read:accounts"]))
81 |> get("/api/v1/accounts/#{user.nickname}")
82
83 assert %{"id" => id} = json_response_and_validate_schema(conn, 200)
84 assert id == user.id
85 end
86
87 test "accounts fetches correct account for nicknames beginning with numbers", %{conn: conn} do
88 # Need to set an old-style integer ID to reproduce the problem
89 # (these are no longer assigned to new accounts but were preserved
90 # for existing accounts during the migration to flakeIDs)
91 user_one = insert(:user, %{id: 1212})
92 user_two = insert(:user, %{nickname: "#{user_one.id}garbage"})
93
94 acc_one =
95 conn
96 |> get("/api/v1/accounts/#{user_one.id}")
97 |> json_response_and_validate_schema(:ok)
98
99 acc_two =
100 conn
101 |> get("/api/v1/accounts/#{user_two.nickname}")
102 |> json_response_and_validate_schema(:ok)
103
104 acc_three =
105 conn
106 |> get("/api/v1/accounts/#{user_two.id}")
107 |> json_response_and_validate_schema(:ok)
108
109 refute acc_one == acc_two
110 assert acc_two == acc_three
111 end
112
113 test "returns 404 when user is invisible", %{conn: conn} do
114 user = insert(:user, %{invisible: true})
115
116 assert %{"error" => "Can't find user"} =
117 conn
118 |> get("/api/v1/accounts/#{user.nickname}")
119 |> json_response_and_validate_schema(404)
120 end
121
122 test "returns 404 for internal.fetch actor", %{conn: conn} do
123 %User{nickname: "internal.fetch"} = InternalFetchActor.get_actor()
124
125 assert %{"error" => "Can't find user"} =
126 conn
127 |> get("/api/v1/accounts/internal.fetch")
128 |> json_response_and_validate_schema(404)
129 end
130
131 test "returns 404 for deactivated user", %{conn: conn} do
132 user = insert(:user, deactivated: true)
133
134 assert %{"error" => "Can't find user"} =
135 conn
136 |> get("/api/v1/accounts/#{user.id}")
137 |> json_response_and_validate_schema(:not_found)
138 end
139 end
140
141 defp local_and_remote_users do
142 local = insert(:user)
143 remote = insert(:user, local: false)
144 {:ok, local: local, remote: remote}
145 end
146
147 describe "user fetching with restrict unauthenticated profiles for local and remote" do
148 setup do: local_and_remote_users()
149
150 setup do: clear_config([:restrict_unauthenticated, :profiles, :local], true)
151
152 setup do: clear_config([:restrict_unauthenticated, :profiles, :remote], true)
153
154 test "if user is unauthenticated", %{conn: conn, local: local, remote: remote} do
155 assert %{"error" => "This API requires an authenticated user"} ==
156 conn
157 |> get("/api/v1/accounts/#{local.id}")
158 |> json_response_and_validate_schema(:unauthorized)
159
160 assert %{"error" => "This API requires an authenticated user"} ==
161 conn
162 |> get("/api/v1/accounts/#{remote.id}")
163 |> json_response_and_validate_schema(:unauthorized)
164 end
165
166 test "if user is authenticated", %{local: local, remote: remote} do
167 %{conn: conn} = oauth_access(["read"])
168
169 res_conn = get(conn, "/api/v1/accounts/#{local.id}")
170 assert %{"id" => _} = json_response_and_validate_schema(res_conn, 200)
171
172 res_conn = get(conn, "/api/v1/accounts/#{remote.id}")
173 assert %{"id" => _} = json_response_and_validate_schema(res_conn, 200)
174 end
175 end
176
177 describe "user fetching with restrict unauthenticated profiles for local" do
178 setup do: local_and_remote_users()
179
180 setup do: clear_config([:restrict_unauthenticated, :profiles, :local], true)
181
182 test "if user is unauthenticated", %{conn: conn, local: local, remote: remote} do
183 res_conn = get(conn, "/api/v1/accounts/#{local.id}")
184
185 assert json_response_and_validate_schema(res_conn, :unauthorized) == %{
186 "error" => "This API requires an authenticated user"
187 }
188
189 res_conn = get(conn, "/api/v1/accounts/#{remote.id}")
190 assert %{"id" => _} = json_response_and_validate_schema(res_conn, 200)
191 end
192
193 test "if user is authenticated", %{local: local, remote: remote} do
194 %{conn: conn} = oauth_access(["read"])
195
196 res_conn = get(conn, "/api/v1/accounts/#{local.id}")
197 assert %{"id" => _} = json_response_and_validate_schema(res_conn, 200)
198
199 res_conn = get(conn, "/api/v1/accounts/#{remote.id}")
200 assert %{"id" => _} = json_response_and_validate_schema(res_conn, 200)
201 end
202 end
203
204 describe "user fetching with restrict unauthenticated profiles for remote" do
205 setup do: local_and_remote_users()
206
207 setup do: clear_config([:restrict_unauthenticated, :profiles, :remote], true)
208
209 test "if user is unauthenticated", %{conn: conn, local: local, remote: remote} do
210 res_conn = get(conn, "/api/v1/accounts/#{local.id}")
211 assert %{"id" => _} = json_response_and_validate_schema(res_conn, 200)
212
213 res_conn = get(conn, "/api/v1/accounts/#{remote.id}")
214
215 assert json_response_and_validate_schema(res_conn, :unauthorized) == %{
216 "error" => "This API requires an authenticated user"
217 }
218 end
219
220 test "if user is authenticated", %{local: local, remote: remote} do
221 %{conn: conn} = oauth_access(["read"])
222
223 res_conn = get(conn, "/api/v1/accounts/#{local.id}")
224 assert %{"id" => _} = json_response_and_validate_schema(res_conn, 200)
225
226 res_conn = get(conn, "/api/v1/accounts/#{remote.id}")
227 assert %{"id" => _} = json_response_and_validate_schema(res_conn, 200)
228 end
229 end
230
231 describe "user timelines" do
232 setup do: oauth_access(["read:statuses"])
233
234 test "works with announces that are just addressed to public", %{conn: conn} do
235 user = insert(:user, ap_id: "https://honktest/u/test", local: false)
236 other_user = insert(:user)
237
238 {:ok, post} = CommonAPI.post(other_user, %{status: "bonkeronk"})
239
240 {:ok, announce, _} =
241 %{
242 "@context" => "https://www.w3.org/ns/activitystreams",
243 "actor" => "https://honktest/u/test",
244 "id" => "https://honktest/u/test/bonk/1793M7B9MQ48847vdx",
245 "object" => post.data["object"],
246 "published" => "2019-06-25T19:33:58Z",
247 "to" => ["https://www.w3.org/ns/activitystreams#Public"],
248 "type" => "Announce"
249 }
250 |> ActivityPub.persist(local: false)
251
252 assert resp =
253 conn
254 |> get("/api/v1/accounts/#{user.id}/statuses")
255 |> json_response_and_validate_schema(200)
256
257 assert [%{"id" => id}] = resp
258 assert id == announce.id
259 end
260
261 test "deactivated user", %{conn: conn} do
262 user = insert(:user, deactivated: true)
263
264 assert %{"error" => "Can't find user"} ==
265 conn
266 |> get("/api/v1/accounts/#{user.id}/statuses")
267 |> json_response_and_validate_schema(:not_found)
268 end
269
270 test "returns 404 when user is invisible", %{conn: conn} do
271 user = insert(:user, %{invisible: true})
272
273 assert %{"error" => "Can't find user"} =
274 conn
275 |> get("/api/v1/accounts/#{user.id}")
276 |> json_response_and_validate_schema(404)
277 end
278
279 test "respects blocks", %{user: user_one, conn: conn} do
280 user_two = insert(:user)
281 user_three = insert(:user)
282
283 User.block(user_one, user_two)
284
285 {:ok, activity} = CommonAPI.post(user_two, %{status: "User one sux0rz"})
286 {:ok, repeat} = CommonAPI.repeat(activity.id, user_three)
287
288 assert resp =
289 conn
290 |> get("/api/v1/accounts/#{user_two.id}/statuses")
291 |> json_response_and_validate_schema(200)
292
293 assert [%{"id" => id}] = resp
294 assert id == activity.id
295
296 # Even a blocked user will deliver the full user timeline, there would be
297 # no point in looking at a blocked users timeline otherwise
298 assert resp =
299 conn
300 |> get("/api/v1/accounts/#{user_two.id}/statuses")
301 |> json_response_and_validate_schema(200)
302
303 assert [%{"id" => id}] = resp
304 assert id == activity.id
305
306 # Third user's timeline includes the repeat when viewed by unauthenticated user
307 resp =
308 build_conn()
309 |> get("/api/v1/accounts/#{user_three.id}/statuses")
310 |> json_response_and_validate_schema(200)
311
312 assert [%{"id" => id}] = resp
313 assert id == repeat.id
314
315 # When viewing a third user's timeline, the blocked users' statuses will NOT be shown
316 resp = get(conn, "/api/v1/accounts/#{user_three.id}/statuses")
317
318 assert [] == json_response_and_validate_schema(resp, 200)
319 end
320
321 test "gets users statuses", %{conn: conn} do
322 user_one = insert(:user)
323 user_two = insert(:user)
324 user_three = insert(:user)
325
326 {:ok, _user_three} = User.follow(user_three, user_one)
327
328 {:ok, activity} = CommonAPI.post(user_one, %{status: "HI!!!"})
329
330 {:ok, direct_activity} =
331 CommonAPI.post(user_one, %{
332 status: "Hi, @#{user_two.nickname}.",
333 visibility: "direct"
334 })
335
336 {:ok, private_activity} =
337 CommonAPI.post(user_one, %{status: "private", visibility: "private"})
338
339 # TODO!!!
340 resp =
341 conn
342 |> get("/api/v1/accounts/#{user_one.id}/statuses")
343 |> json_response_and_validate_schema(200)
344
345 assert [%{"id" => id}] = resp
346 assert id == to_string(activity.id)
347
348 resp =
349 conn
350 |> assign(:user, user_two)
351 |> assign(:token, insert(:oauth_token, user: user_two, scopes: ["read:statuses"]))
352 |> get("/api/v1/accounts/#{user_one.id}/statuses")
353 |> json_response_and_validate_schema(200)
354
355 assert [%{"id" => id_one}, %{"id" => id_two}] = resp
356 assert id_one == to_string(direct_activity.id)
357 assert id_two == to_string(activity.id)
358
359 resp =
360 conn
361 |> assign(:user, user_three)
362 |> assign(:token, insert(:oauth_token, user: user_three, scopes: ["read:statuses"]))
363 |> get("/api/v1/accounts/#{user_one.id}/statuses")
364 |> json_response_and_validate_schema(200)
365
366 assert [%{"id" => id_one}, %{"id" => id_two}] = resp
367 assert id_one == to_string(private_activity.id)
368 assert id_two == to_string(activity.id)
369 end
370
371 test "unimplemented pinned statuses feature", %{conn: conn} do
372 note = insert(:note_activity)
373 user = User.get_cached_by_ap_id(note.data["actor"])
374
375 conn = get(conn, "/api/v1/accounts/#{user.id}/statuses?pinned=true")
376
377 assert json_response_and_validate_schema(conn, 200) == []
378 end
379
380 test "gets an users media, excludes reblogs", %{conn: conn} do
381 note = insert(:note_activity)
382 user = User.get_cached_by_ap_id(note.data["actor"])
383 other_user = insert(:user)
384
385 file = %Plug.Upload{
386 content_type: "image/jpg",
387 path: Path.absname("test/fixtures/image.jpg"),
388 filename: "an_image.jpg"
389 }
390
391 {:ok, %{id: media_id}} = ActivityPub.upload(file, actor: user.ap_id)
392
393 {:ok, %{id: image_post_id}} = CommonAPI.post(user, %{status: "cofe", media_ids: [media_id]})
394
395 {:ok, %{id: media_id}} = ActivityPub.upload(file, actor: other_user.ap_id)
396
397 {:ok, %{id: other_image_post_id}} =
398 CommonAPI.post(other_user, %{status: "cofe2", media_ids: [media_id]})
399
400 {:ok, _announce} = CommonAPI.repeat(other_image_post_id, user)
401
402 conn = get(conn, "/api/v1/accounts/#{user.id}/statuses?only_media=true")
403
404 assert [%{"id" => ^image_post_id}] = json_response_and_validate_schema(conn, 200)
405
406 conn = get(build_conn(), "/api/v1/accounts/#{user.id}/statuses?only_media=1")
407
408 assert [%{"id" => ^image_post_id}] = json_response_and_validate_schema(conn, 200)
409 end
410
411 test "gets a user's statuses without reblogs", %{user: user, conn: conn} do
412 {:ok, %{id: post_id}} = CommonAPI.post(user, %{status: "HI!!!"})
413 {:ok, _} = CommonAPI.repeat(post_id, user)
414
415 conn = get(conn, "/api/v1/accounts/#{user.id}/statuses?exclude_reblogs=true")
416 assert [%{"id" => ^post_id}] = json_response_and_validate_schema(conn, 200)
417
418 conn = get(conn, "/api/v1/accounts/#{user.id}/statuses?exclude_reblogs=1")
419 assert [%{"id" => ^post_id}] = json_response_and_validate_schema(conn, 200)
420 end
421
422 test "filters user's statuses by a hashtag", %{user: user, conn: conn} do
423 {:ok, %{id: post_id}} = CommonAPI.post(user, %{status: "#hashtag"})
424 {:ok, _post} = CommonAPI.post(user, %{status: "hashtag"})
425
426 conn = get(conn, "/api/v1/accounts/#{user.id}/statuses?tagged=hashtag")
427 assert [%{"id" => ^post_id}] = json_response_and_validate_schema(conn, 200)
428 end
429
430 test "the user views their own timelines and excludes direct messages", %{
431 user: user,
432 conn: conn
433 } do
434 {:ok, %{id: public_activity_id}} =
435 CommonAPI.post(user, %{status: ".", visibility: "public"})
436
437 {:ok, _direct_activity} = CommonAPI.post(user, %{status: ".", visibility: "direct"})
438
439 conn = get(conn, "/api/v1/accounts/#{user.id}/statuses?exclude_visibilities[]=direct")
440 assert [%{"id" => ^public_activity_id}] = json_response_and_validate_schema(conn, 200)
441 end
442 end
443
444 defp local_and_remote_activities(%{local: local, remote: remote}) do
445 insert(:note_activity, user: local)
446 insert(:note_activity, user: remote, local: false)
447
448 :ok
449 end
450
451 describe "statuses with restrict unauthenticated profiles for local and remote" do
452 setup do: local_and_remote_users()
453 setup :local_and_remote_activities
454
455 setup do: clear_config([:restrict_unauthenticated, :profiles, :local], true)
456
457 setup do: clear_config([:restrict_unauthenticated, :profiles, :remote], true)
458
459 test "if user is unauthenticated", %{conn: conn, local: local, remote: remote} do
460 assert %{"error" => "This API requires an authenticated user"} ==
461 conn
462 |> get("/api/v1/accounts/#{local.id}/statuses")
463 |> json_response_and_validate_schema(:unauthorized)
464
465 assert %{"error" => "This API requires an authenticated user"} ==
466 conn
467 |> get("/api/v1/accounts/#{remote.id}/statuses")
468 |> json_response_and_validate_schema(:unauthorized)
469 end
470
471 test "if user is authenticated", %{local: local, remote: remote} do
472 %{conn: conn} = oauth_access(["read"])
473
474 res_conn = get(conn, "/api/v1/accounts/#{local.id}/statuses")
475 assert length(json_response_and_validate_schema(res_conn, 200)) == 1
476
477 res_conn = get(conn, "/api/v1/accounts/#{remote.id}/statuses")
478 assert length(json_response_and_validate_schema(res_conn, 200)) == 1
479 end
480 end
481
482 describe "statuses with restrict unauthenticated profiles for local" do
483 setup do: local_and_remote_users()
484 setup :local_and_remote_activities
485
486 setup do: clear_config([:restrict_unauthenticated, :profiles, :local], true)
487
488 test "if user is unauthenticated", %{conn: conn, local: local, remote: remote} do
489 assert %{"error" => "This API requires an authenticated user"} ==
490 conn
491 |> get("/api/v1/accounts/#{local.id}/statuses")
492 |> json_response_and_validate_schema(:unauthorized)
493
494 res_conn = get(conn, "/api/v1/accounts/#{remote.id}/statuses")
495 assert length(json_response_and_validate_schema(res_conn, 200)) == 1
496 end
497
498 test "if user is authenticated", %{local: local, remote: remote} do
499 %{conn: conn} = oauth_access(["read"])
500
501 res_conn = get(conn, "/api/v1/accounts/#{local.id}/statuses")
502 assert length(json_response_and_validate_schema(res_conn, 200)) == 1
503
504 res_conn = get(conn, "/api/v1/accounts/#{remote.id}/statuses")
505 assert length(json_response_and_validate_schema(res_conn, 200)) == 1
506 end
507 end
508
509 describe "statuses with restrict unauthenticated profiles for remote" do
510 setup do: local_and_remote_users()
511 setup :local_and_remote_activities
512
513 setup do: clear_config([:restrict_unauthenticated, :profiles, :remote], true)
514
515 test "if user is unauthenticated", %{conn: conn, local: local, remote: remote} do
516 res_conn = get(conn, "/api/v1/accounts/#{local.id}/statuses")
517 assert length(json_response_and_validate_schema(res_conn, 200)) == 1
518
519 assert %{"error" => "This API requires an authenticated user"} ==
520 conn
521 |> get("/api/v1/accounts/#{remote.id}/statuses")
522 |> json_response_and_validate_schema(:unauthorized)
523 end
524
525 test "if user is authenticated", %{local: local, remote: remote} do
526 %{conn: conn} = oauth_access(["read"])
527
528 res_conn = get(conn, "/api/v1/accounts/#{local.id}/statuses")
529 assert length(json_response_and_validate_schema(res_conn, 200)) == 1
530
531 res_conn = get(conn, "/api/v1/accounts/#{remote.id}/statuses")
532 assert length(json_response_and_validate_schema(res_conn, 200)) == 1
533 end
534 end
535
536 describe "followers" do
537 setup do: oauth_access(["read:accounts"])
538
539 test "getting followers", %{user: user, conn: conn} do
540 other_user = insert(:user)
541 {:ok, %{id: user_id}} = User.follow(user, other_user)
542
543 conn = get(conn, "/api/v1/accounts/#{other_user.id}/followers")
544
545 assert [%{"id" => ^user_id}] = json_response_and_validate_schema(conn, 200)
546 end
547
548 test "getting followers, hide_followers", %{user: user, conn: conn} do
549 other_user = insert(:user, hide_followers: true)
550 {:ok, _user} = User.follow(user, other_user)
551
552 conn = get(conn, "/api/v1/accounts/#{other_user.id}/followers")
553
554 assert [] == json_response_and_validate_schema(conn, 200)
555 end
556
557 test "getting followers, hide_followers, same user requesting" do
558 user = insert(:user)
559 other_user = insert(:user, hide_followers: true)
560 {:ok, _user} = User.follow(user, other_user)
561
562 conn =
563 build_conn()
564 |> assign(:user, other_user)
565 |> assign(:token, insert(:oauth_token, user: other_user, scopes: ["read:accounts"]))
566 |> get("/api/v1/accounts/#{other_user.id}/followers")
567
568 refute [] == json_response_and_validate_schema(conn, 200)
569 end
570
571 test "getting followers, pagination", %{user: user, conn: conn} do
572 {:ok, %User{id: follower1_id}} = :user |> insert() |> User.follow(user)
573 {:ok, %User{id: follower2_id}} = :user |> insert() |> User.follow(user)
574 {:ok, %User{id: follower3_id}} = :user |> insert() |> User.follow(user)
575
576 assert [%{"id" => ^follower3_id}, %{"id" => ^follower2_id}] =
577 conn
578 |> get("/api/v1/accounts/#{user.id}/followers?since_id=#{follower1_id}")
579 |> json_response_and_validate_schema(200)
580
581 assert [%{"id" => ^follower2_id}, %{"id" => ^follower1_id}] =
582 conn
583 |> get("/api/v1/accounts/#{user.id}/followers?max_id=#{follower3_id}")
584 |> json_response_and_validate_schema(200)
585
586 assert [%{"id" => ^follower2_id}, %{"id" => ^follower1_id}] =
587 conn
588 |> get(
589 "/api/v1/accounts/#{user.id}/followers?id=#{user.id}&limit=20&max_id=#{
590 follower3_id
591 }"
592 )
593 |> json_response_and_validate_schema(200)
594
595 res_conn = get(conn, "/api/v1/accounts/#{user.id}/followers?limit=1&max_id=#{follower3_id}")
596
597 assert [%{"id" => ^follower2_id}] = json_response_and_validate_schema(res_conn, 200)
598
599 assert [link_header] = get_resp_header(res_conn, "link")
600 assert link_header =~ ~r/min_id=#{follower2_id}/
601 assert link_header =~ ~r/max_id=#{follower2_id}/
602 end
603 end
604
605 describe "following" do
606 setup do: oauth_access(["read:accounts"])
607
608 test "getting following", %{user: user, conn: conn} do
609 other_user = insert(:user)
610 {:ok, user} = User.follow(user, other_user)
611
612 conn = get(conn, "/api/v1/accounts/#{user.id}/following")
613
614 assert [%{"id" => id}] = json_response_and_validate_schema(conn, 200)
615 assert id == to_string(other_user.id)
616 end
617
618 test "getting following, hide_follows, other user requesting" do
619 user = insert(:user, hide_follows: true)
620 other_user = insert(:user)
621 {:ok, user} = User.follow(user, other_user)
622
623 conn =
624 build_conn()
625 |> assign(:user, other_user)
626 |> assign(:token, insert(:oauth_token, user: other_user, scopes: ["read:accounts"]))
627 |> get("/api/v1/accounts/#{user.id}/following")
628
629 assert [] == json_response_and_validate_schema(conn, 200)
630 end
631
632 test "getting following, hide_follows, same user requesting" do
633 user = insert(:user, hide_follows: true)
634 other_user = insert(:user)
635 {:ok, user} = User.follow(user, other_user)
636
637 conn =
638 build_conn()
639 |> assign(:user, user)
640 |> assign(:token, insert(:oauth_token, user: user, scopes: ["read:accounts"]))
641 |> get("/api/v1/accounts/#{user.id}/following")
642
643 refute [] == json_response_and_validate_schema(conn, 200)
644 end
645
646 test "getting following, pagination", %{user: user, conn: conn} do
647 following1 = insert(:user)
648 following2 = insert(:user)
649 following3 = insert(:user)
650 {:ok, _} = User.follow(user, following1)
651 {:ok, _} = User.follow(user, following2)
652 {:ok, _} = User.follow(user, following3)
653
654 res_conn = get(conn, "/api/v1/accounts/#{user.id}/following?since_id=#{following1.id}")
655
656 assert [%{"id" => id3}, %{"id" => id2}] = json_response_and_validate_schema(res_conn, 200)
657 assert id3 == following3.id
658 assert id2 == following2.id
659
660 res_conn = get(conn, "/api/v1/accounts/#{user.id}/following?max_id=#{following3.id}")
661
662 assert [%{"id" => id2}, %{"id" => id1}] = json_response_and_validate_schema(res_conn, 200)
663 assert id2 == following2.id
664 assert id1 == following1.id
665
666 res_conn =
667 get(
668 conn,
669 "/api/v1/accounts/#{user.id}/following?id=#{user.id}&limit=20&max_id=#{following3.id}"
670 )
671
672 assert [%{"id" => id2}, %{"id" => id1}] = json_response_and_validate_schema(res_conn, 200)
673 assert id2 == following2.id
674 assert id1 == following1.id
675
676 res_conn =
677 get(conn, "/api/v1/accounts/#{user.id}/following?limit=1&max_id=#{following3.id}")
678
679 assert [%{"id" => id2}] = json_response_and_validate_schema(res_conn, 200)
680 assert id2 == following2.id
681
682 assert [link_header] = get_resp_header(res_conn, "link")
683 assert link_header =~ ~r/min_id=#{following2.id}/
684 assert link_header =~ ~r/max_id=#{following2.id}/
685 end
686 end
687
688 describe "follow/unfollow" do
689 setup do: oauth_access(["follow"])
690
691 test "following / unfollowing a user", %{conn: conn} do
692 %{id: other_user_id, nickname: other_user_nickname} = insert(:user)
693
694 assert %{"id" => _id, "following" => true} =
695 conn
696 |> post("/api/v1/accounts/#{other_user_id}/follow")
697 |> json_response_and_validate_schema(200)
698
699 assert %{"id" => _id, "following" => false} =
700 conn
701 |> post("/api/v1/accounts/#{other_user_id}/unfollow")
702 |> json_response_and_validate_schema(200)
703
704 assert %{"id" => ^other_user_id} =
705 conn
706 |> put_req_header("content-type", "application/json")
707 |> post("/api/v1/follows", %{"uri" => other_user_nickname})
708 |> json_response_and_validate_schema(200)
709 end
710
711 test "cancelling follow request", %{conn: conn} do
712 %{id: other_user_id} = insert(:user, %{locked: true})
713
714 assert %{"id" => ^other_user_id, "following" => false, "requested" => true} =
715 conn
716 |> post("/api/v1/accounts/#{other_user_id}/follow")
717 |> json_response_and_validate_schema(:ok)
718
719 assert %{"id" => ^other_user_id, "following" => false, "requested" => false} =
720 conn
721 |> post("/api/v1/accounts/#{other_user_id}/unfollow")
722 |> json_response_and_validate_schema(:ok)
723 end
724
725 test "following without reblogs" do
726 %{conn: conn} = oauth_access(["follow", "read:statuses"])
727 followed = insert(:user)
728 other_user = insert(:user)
729
730 ret_conn =
731 conn
732 |> put_req_header("content-type", "application/json")
733 |> post("/api/v1/accounts/#{followed.id}/follow", %{reblogs: false})
734
735 assert %{"showing_reblogs" => false} = json_response_and_validate_schema(ret_conn, 200)
736
737 {:ok, activity} = CommonAPI.post(other_user, %{status: "hey"})
738 {:ok, %{id: reblog_id}} = CommonAPI.repeat(activity.id, followed)
739
740 assert [] ==
741 conn
742 |> get("/api/v1/timelines/home")
743 |> json_response(200)
744
745 assert %{"showing_reblogs" => true} =
746 conn
747 |> put_req_header("content-type", "application/json")
748 |> post("/api/v1/accounts/#{followed.id}/follow", %{reblogs: true})
749 |> json_response_and_validate_schema(200)
750
751 assert [%{"id" => ^reblog_id}] =
752 conn
753 |> get("/api/v1/timelines/home")
754 |> json_response(200)
755 end
756
757 test "following with reblogs" do
758 %{conn: conn} = oauth_access(["follow", "read:statuses"])
759 followed = insert(:user)
760 other_user = insert(:user)
761
762 ret_conn = post(conn, "/api/v1/accounts/#{followed.id}/follow")
763
764 assert %{"showing_reblogs" => true} = json_response_and_validate_schema(ret_conn, 200)
765
766 {:ok, activity} = CommonAPI.post(other_user, %{status: "hey"})
767 {:ok, %{id: reblog_id}} = CommonAPI.repeat(activity.id, followed)
768
769 assert [%{"id" => ^reblog_id}] =
770 conn
771 |> get("/api/v1/timelines/home")
772 |> json_response(200)
773
774 assert %{"showing_reblogs" => false} =
775 conn
776 |> put_req_header("content-type", "application/json")
777 |> post("/api/v1/accounts/#{followed.id}/follow", %{reblogs: false})
778 |> json_response_and_validate_schema(200)
779
780 assert [] ==
781 conn
782 |> get("/api/v1/timelines/home")
783 |> json_response(200)
784 end
785
786 test "following / unfollowing errors", %{user: user, conn: conn} do
787 # self follow
788 conn_res = post(conn, "/api/v1/accounts/#{user.id}/follow")
789
790 assert %{"error" => "Can not follow yourself"} =
791 json_response_and_validate_schema(conn_res, 400)
792
793 # self unfollow
794 user = User.get_cached_by_id(user.id)
795 conn_res = post(conn, "/api/v1/accounts/#{user.id}/unfollow")
796
797 assert %{"error" => "Can not unfollow yourself"} =
798 json_response_and_validate_schema(conn_res, 400)
799
800 # self follow via uri
801 user = User.get_cached_by_id(user.id)
802
803 assert %{"error" => "Can not follow yourself"} =
804 conn
805 |> put_req_header("content-type", "multipart/form-data")
806 |> post("/api/v1/follows", %{"uri" => user.nickname})
807 |> json_response_and_validate_schema(400)
808
809 # follow non existing user
810 conn_res = post(conn, "/api/v1/accounts/doesntexist/follow")
811 assert %{"error" => "Record not found"} = json_response_and_validate_schema(conn_res, 404)
812
813 # follow non existing user via uri
814 conn_res =
815 conn
816 |> put_req_header("content-type", "multipart/form-data")
817 |> post("/api/v1/follows", %{"uri" => "doesntexist"})
818
819 assert %{"error" => "Record not found"} = json_response_and_validate_schema(conn_res, 404)
820
821 # unfollow non existing user
822 conn_res = post(conn, "/api/v1/accounts/doesntexist/unfollow")
823 assert %{"error" => "Record not found"} = json_response_and_validate_schema(conn_res, 404)
824 end
825 end
826
827 describe "mute/unmute" do
828 setup do: oauth_access(["write:mutes"])
829
830 test "with notifications", %{conn: conn} do
831 other_user = insert(:user)
832
833 assert %{"id" => _id, "muting" => true, "muting_notifications" => true} =
834 conn
835 |> post("/api/v1/accounts/#{other_user.id}/mute")
836 |> json_response_and_validate_schema(200)
837
838 conn = post(conn, "/api/v1/accounts/#{other_user.id}/unmute")
839
840 assert %{"id" => _id, "muting" => false, "muting_notifications" => false} =
841 json_response_and_validate_schema(conn, 200)
842 end
843
844 test "without notifications", %{conn: conn} do
845 other_user = insert(:user)
846
847 ret_conn =
848 conn
849 |> put_req_header("content-type", "multipart/form-data")
850 |> post("/api/v1/accounts/#{other_user.id}/mute", %{"notifications" => "false"})
851
852 assert %{"id" => _id, "muting" => true, "muting_notifications" => false} =
853 json_response_and_validate_schema(ret_conn, 200)
854
855 conn = post(conn, "/api/v1/accounts/#{other_user.id}/unmute")
856
857 assert %{"id" => _id, "muting" => false, "muting_notifications" => false} =
858 json_response_and_validate_schema(conn, 200)
859 end
860 end
861
862 describe "pinned statuses" do
863 setup do
864 user = insert(:user)
865 {:ok, activity} = CommonAPI.post(user, %{status: "HI!!!"})
866 %{conn: conn} = oauth_access(["read:statuses"], user: user)
867
868 [conn: conn, user: user, activity: activity]
869 end
870
871 test "returns pinned statuses", %{conn: conn, user: user, activity: %{id: activity_id}} do
872 {:ok, _} = CommonAPI.pin(activity_id, user)
873
874 assert [%{"id" => ^activity_id, "pinned" => true}] =
875 conn
876 |> get("/api/v1/accounts/#{user.id}/statuses?pinned=true")
877 |> json_response_and_validate_schema(200)
878 end
879 end
880
881 test "blocking / unblocking a user" do
882 %{conn: conn} = oauth_access(["follow"])
883 other_user = insert(:user)
884
885 ret_conn = post(conn, "/api/v1/accounts/#{other_user.id}/block")
886
887 assert %{"id" => _id, "blocking" => true} = json_response_and_validate_schema(ret_conn, 200)
888
889 conn = post(conn, "/api/v1/accounts/#{other_user.id}/unblock")
890
891 assert %{"id" => _id, "blocking" => false} = json_response_and_validate_schema(conn, 200)
892 end
893
894 describe "create account by app" do
895 setup do
896 valid_params = %{
897 username: "lain",
898 email: "lain@example.org",
899 password: "PlzDontHackLain",
900 agreement: true
901 }
902
903 [valid_params: valid_params]
904 end
905
906 setup do: clear_config([:instance, :account_activation_required])
907
908 test "Account registration via Application", %{conn: conn} do
909 conn =
910 conn
911 |> put_req_header("content-type", "application/json")
912 |> post("/api/v1/apps", %{
913 client_name: "client_name",
914 redirect_uris: "urn:ietf:wg:oauth:2.0:oob",
915 scopes: "read, write, follow"
916 })
917
918 assert %{
919 "client_id" => client_id,
920 "client_secret" => client_secret,
921 "id" => _,
922 "name" => "client_name",
923 "redirect_uri" => "urn:ietf:wg:oauth:2.0:oob",
924 "vapid_key" => _,
925 "website" => nil
926 } = json_response_and_validate_schema(conn, 200)
927
928 conn =
929 post(conn, "/oauth/token", %{
930 grant_type: "client_credentials",
931 client_id: client_id,
932 client_secret: client_secret
933 })
934
935 assert %{"access_token" => token, "refresh_token" => refresh, "scope" => scope} =
936 json_response(conn, 200)
937
938 assert token
939 token_from_db = Repo.get_by(Token, token: token)
940 assert token_from_db
941 assert refresh
942 assert scope == "read write follow"
943
944 conn =
945 build_conn()
946 |> put_req_header("content-type", "multipart/form-data")
947 |> put_req_header("authorization", "Bearer " <> token)
948 |> post("/api/v1/accounts", %{
949 username: "lain",
950 email: "lain@example.org",
951 password: "PlzDontHackLain",
952 bio: "Test Bio",
953 agreement: true
954 })
955
956 %{
957 "access_token" => token,
958 "created_at" => _created_at,
959 "scope" => ^scope,
960 "token_type" => "Bearer"
961 } = json_response_and_validate_schema(conn, 200)
962
963 token_from_db = Repo.get_by(Token, token: token)
964 assert token_from_db
965 token_from_db = Repo.preload(token_from_db, :user)
966 assert token_from_db.user
967
968 assert token_from_db.user.confirmation_pending
969 end
970
971 test "returns error when user already registred", %{conn: conn, valid_params: valid_params} do
972 _user = insert(:user, email: "lain@example.org")
973 app_token = insert(:oauth_token, user: nil)
974
975 res =
976 conn
977 |> put_req_header("authorization", "Bearer " <> app_token.token)
978 |> put_req_header("content-type", "application/json")
979 |> post("/api/v1/accounts", valid_params)
980
981 assert json_response_and_validate_schema(res, 400) == %{
982 "error" => "{\"email\":[\"has already been taken\"]}"
983 }
984 end
985
986 test "returns bad_request if missing required params", %{
987 conn: conn,
988 valid_params: valid_params
989 } do
990 app_token = insert(:oauth_token, user: nil)
991
992 conn =
993 conn
994 |> put_req_header("authorization", "Bearer " <> app_token.token)
995 |> put_req_header("content-type", "application/json")
996
997 res = post(conn, "/api/v1/accounts", valid_params)
998 assert json_response_and_validate_schema(res, 200)
999
1000 [{127, 0, 0, 1}, {127, 0, 0, 2}, {127, 0, 0, 3}, {127, 0, 0, 4}]
1001 |> Stream.zip(Map.delete(valid_params, :email))
1002 |> Enum.each(fn {ip, {attr, _}} ->
1003 res =
1004 conn
1005 |> Map.put(:remote_ip, ip)
1006 |> post("/api/v1/accounts", Map.delete(valid_params, attr))
1007 |> json_response_and_validate_schema(400)
1008
1009 assert res == %{
1010 "error" => "Missing field: #{attr}.",
1011 "errors" => [
1012 %{
1013 "message" => "Missing field: #{attr}",
1014 "source" => %{"pointer" => "/#{attr}"},
1015 "title" => "Invalid value"
1016 }
1017 ]
1018 }
1019 end)
1020 end
1021
1022 setup do: clear_config([:instance, :account_activation_required])
1023
1024 test "returns bad_request if missing email params when :account_activation_required is enabled",
1025 %{conn: conn, valid_params: valid_params} do
1026 Pleroma.Config.put([:instance, :account_activation_required], true)
1027
1028 app_token = insert(:oauth_token, user: nil)
1029
1030 conn =
1031 conn
1032 |> put_req_header("authorization", "Bearer " <> app_token.token)
1033 |> put_req_header("content-type", "application/json")
1034
1035 res =
1036 conn
1037 |> Map.put(:remote_ip, {127, 0, 0, 5})
1038 |> post("/api/v1/accounts", Map.delete(valid_params, :email))
1039
1040 assert json_response_and_validate_schema(res, 400) ==
1041 %{"error" => "Missing parameter: email"}
1042
1043 res =
1044 conn
1045 |> Map.put(:remote_ip, {127, 0, 0, 6})
1046 |> post("/api/v1/accounts", Map.put(valid_params, :email, ""))
1047
1048 assert json_response_and_validate_schema(res, 400) == %{
1049 "error" => "{\"email\":[\"can't be blank\"]}"
1050 }
1051 end
1052
1053 test "allow registration without an email", %{conn: conn, valid_params: valid_params} do
1054 app_token = insert(:oauth_token, user: nil)
1055 conn = put_req_header(conn, "authorization", "Bearer " <> app_token.token)
1056
1057 res =
1058 conn
1059 |> put_req_header("content-type", "application/json")
1060 |> Map.put(:remote_ip, {127, 0, 0, 7})
1061 |> post("/api/v1/accounts", Map.delete(valid_params, :email))
1062
1063 assert json_response_and_validate_schema(res, 200)
1064 end
1065
1066 test "allow registration with an empty email", %{conn: conn, valid_params: valid_params} do
1067 app_token = insert(:oauth_token, user: nil)
1068 conn = put_req_header(conn, "authorization", "Bearer " <> app_token.token)
1069
1070 res =
1071 conn
1072 |> put_req_header("content-type", "application/json")
1073 |> Map.put(:remote_ip, {127, 0, 0, 8})
1074 |> post("/api/v1/accounts", Map.put(valid_params, :email, ""))
1075
1076 assert json_response_and_validate_schema(res, 200)
1077 end
1078
1079 test "returns forbidden if token is invalid", %{conn: conn, valid_params: valid_params} do
1080 res =
1081 conn
1082 |> put_req_header("authorization", "Bearer " <> "invalid-token")
1083 |> put_req_header("content-type", "multipart/form-data")
1084 |> post("/api/v1/accounts", valid_params)
1085
1086 assert json_response_and_validate_schema(res, 403) == %{"error" => "Invalid credentials"}
1087 end
1088
1089 test "registration from trusted app" do
1090 clear_config([Pleroma.Captcha, :enabled], true)
1091 app = insert(:oauth_app, trusted: true, scopes: ["read", "write", "follow", "push"])
1092
1093 conn =
1094 build_conn()
1095 |> post("/oauth/token", %{
1096 "grant_type" => "client_credentials",
1097 "client_id" => app.client_id,
1098 "client_secret" => app.client_secret
1099 })
1100
1101 assert %{"access_token" => token, "token_type" => "Bearer"} = json_response(conn, 200)
1102
1103 response =
1104 build_conn()
1105 |> Plug.Conn.put_req_header("authorization", "Bearer " <> token)
1106 |> put_req_header("content-type", "multipart/form-data")
1107 |> post("/api/v1/accounts", %{
1108 nickname: "nickanme",
1109 agreement: true,
1110 email: "email@example.com",
1111 fullname: "Lain",
1112 username: "Lain",
1113 password: "some_password",
1114 confirm: "some_password"
1115 })
1116 |> json_response_and_validate_schema(200)
1117
1118 assert %{
1119 "access_token" => access_token,
1120 "created_at" => _,
1121 "scope" => "read write follow push",
1122 "token_type" => "Bearer"
1123 } = response
1124
1125 response =
1126 build_conn()
1127 |> Plug.Conn.put_req_header("authorization", "Bearer " <> access_token)
1128 |> get("/api/v1/accounts/verify_credentials")
1129 |> json_response_and_validate_schema(200)
1130
1131 assert %{
1132 "acct" => "Lain",
1133 "bot" => false,
1134 "display_name" => "Lain",
1135 "follow_requests_count" => 0,
1136 "followers_count" => 0,
1137 "following_count" => 0,
1138 "locked" => false,
1139 "note" => "",
1140 "source" => %{
1141 "fields" => [],
1142 "note" => "",
1143 "pleroma" => %{
1144 "actor_type" => "Person",
1145 "discoverable" => false,
1146 "no_rich_text" => false,
1147 "show_role" => true
1148 },
1149 "privacy" => "public",
1150 "sensitive" => false
1151 },
1152 "statuses_count" => 0,
1153 "username" => "Lain"
1154 } = response
1155 end
1156 end
1157
1158 describe "create account by app / rate limit" do
1159 setup do: clear_config([:rate_limit, :app_account_creation], {10_000, 2})
1160
1161 test "respects rate limit setting", %{conn: conn} do
1162 app_token = insert(:oauth_token, user: nil)
1163
1164 conn =
1165 conn
1166 |> put_req_header("authorization", "Bearer " <> app_token.token)
1167 |> Map.put(:remote_ip, {15, 15, 15, 15})
1168 |> put_req_header("content-type", "multipart/form-data")
1169
1170 for i <- 1..2 do
1171 conn =
1172 conn
1173 |> post("/api/v1/accounts", %{
1174 username: "#{i}lain",
1175 email: "#{i}lain@example.org",
1176 password: "PlzDontHackLain",
1177 agreement: true
1178 })
1179
1180 %{
1181 "access_token" => token,
1182 "created_at" => _created_at,
1183 "scope" => _scope,
1184 "token_type" => "Bearer"
1185 } = json_response_and_validate_schema(conn, 200)
1186
1187 token_from_db = Repo.get_by(Token, token: token)
1188 assert token_from_db
1189 token_from_db = Repo.preload(token_from_db, :user)
1190 assert token_from_db.user
1191
1192 assert token_from_db.user.confirmation_pending
1193 end
1194
1195 conn =
1196 post(conn, "/api/v1/accounts", %{
1197 username: "6lain",
1198 email: "6lain@example.org",
1199 password: "PlzDontHackLain",
1200 agreement: true
1201 })
1202
1203 assert json_response_and_validate_schema(conn, :too_many_requests) == %{
1204 "error" => "Throttled"
1205 }
1206 end
1207 end
1208
1209 describe "create account with enabled captcha" do
1210 setup %{conn: conn} do
1211 app_token = insert(:oauth_token, user: nil)
1212
1213 conn =
1214 conn
1215 |> put_req_header("authorization", "Bearer " <> app_token.token)
1216 |> put_req_header("content-type", "multipart/form-data")
1217
1218 [conn: conn]
1219 end
1220
1221 setup do: clear_config([Pleroma.Captcha, :enabled], true)
1222
1223 test "creates an account and returns 200 if captcha is valid", %{conn: conn} do
1224 %{token: token, answer_data: answer_data} = Pleroma.Captcha.new()
1225
1226 params = %{
1227 username: "lain",
1228 email: "lain@example.org",
1229 password: "PlzDontHackLain",
1230 agreement: true,
1231 captcha_solution: Pleroma.Captcha.Mock.solution(),
1232 captcha_token: token,
1233 captcha_answer_data: answer_data
1234 }
1235
1236 assert %{
1237 "access_token" => access_token,
1238 "created_at" => _,
1239 "scope" => "read",
1240 "token_type" => "Bearer"
1241 } =
1242 conn
1243 |> post("/api/v1/accounts", params)
1244 |> json_response_and_validate_schema(:ok)
1245
1246 assert Token |> Repo.get_by(token: access_token) |> Repo.preload(:user) |> Map.get(:user)
1247
1248 Cachex.del(:used_captcha_cache, token)
1249 end
1250
1251 test "returns 400 if any captcha field is not provided", %{conn: conn} do
1252 captcha_fields = [:captcha_solution, :captcha_token, :captcha_answer_data]
1253
1254 valid_params = %{
1255 username: "lain",
1256 email: "lain@example.org",
1257 password: "PlzDontHackLain",
1258 agreement: true,
1259 captcha_solution: "xx",
1260 captcha_token: "xx",
1261 captcha_answer_data: "xx"
1262 }
1263
1264 for field <- captcha_fields do
1265 expected = %{
1266 "error" => "{\"captcha\":[\"Invalid CAPTCHA (Missing parameter: #{field})\"]}"
1267 }
1268
1269 assert expected ==
1270 conn
1271 |> post("/api/v1/accounts", Map.delete(valid_params, field))
1272 |> json_response_and_validate_schema(:bad_request)
1273 end
1274 end
1275
1276 test "returns an error if captcha is invalid", %{conn: conn} do
1277 params = %{
1278 username: "lain",
1279 email: "lain@example.org",
1280 password: "PlzDontHackLain",
1281 agreement: true,
1282 captcha_solution: "cofe",
1283 captcha_token: "cofe",
1284 captcha_answer_data: "cofe"
1285 }
1286
1287 assert %{"error" => "{\"captcha\":[\"Invalid answer data\"]}"} ==
1288 conn
1289 |> post("/api/v1/accounts", params)
1290 |> json_response_and_validate_schema(:bad_request)
1291 end
1292 end
1293
1294 describe "GET /api/v1/accounts/:id/lists - account_lists" do
1295 test "returns lists to which the account belongs" do
1296 %{user: user, conn: conn} = oauth_access(["read:lists"])
1297 other_user = insert(:user)
1298 assert {:ok, %Pleroma.List{id: list_id} = list} = Pleroma.List.create("Test List", user)
1299 {:ok, %{following: _following}} = Pleroma.List.follow(list, other_user)
1300
1301 assert [%{"id" => list_id, "title" => "Test List"}] =
1302 conn
1303 |> get("/api/v1/accounts/#{other_user.id}/lists")
1304 |> json_response_and_validate_schema(200)
1305 end
1306 end
1307
1308 describe "verify_credentials" do
1309 test "verify_credentials" do
1310 %{user: user, conn: conn} = oauth_access(["read:accounts"])
1311 [notification | _] = insert_list(7, :notification, user: user)
1312 Pleroma.Notification.set_read_up_to(user, notification.id)
1313 conn = get(conn, "/api/v1/accounts/verify_credentials")
1314
1315 response = json_response_and_validate_schema(conn, 200)
1316
1317 assert %{"id" => id, "source" => %{"privacy" => "public"}} = response
1318 assert response["pleroma"]["chat_token"]
1319 assert response["pleroma"]["unread_notifications_count"] == 6
1320 assert id == to_string(user.id)
1321 end
1322
1323 test "verify_credentials default scope unlisted" do
1324 user = insert(:user, default_scope: "unlisted")
1325 %{conn: conn} = oauth_access(["read:accounts"], user: user)
1326
1327 conn = get(conn, "/api/v1/accounts/verify_credentials")
1328
1329 assert %{"id" => id, "source" => %{"privacy" => "unlisted"}} =
1330 json_response_and_validate_schema(conn, 200)
1331
1332 assert id == to_string(user.id)
1333 end
1334
1335 test "locked accounts" do
1336 user = insert(:user, default_scope: "private")
1337 %{conn: conn} = oauth_access(["read:accounts"], user: user)
1338
1339 conn = get(conn, "/api/v1/accounts/verify_credentials")
1340
1341 assert %{"id" => id, "source" => %{"privacy" => "private"}} =
1342 json_response_and_validate_schema(conn, 200)
1343
1344 assert id == to_string(user.id)
1345 end
1346 end
1347
1348 describe "user relationships" do
1349 setup do: oauth_access(["read:follows"])
1350
1351 test "returns the relationships for the current user", %{user: user, conn: conn} do
1352 %{id: other_user_id} = other_user = insert(:user)
1353 {:ok, _user} = User.follow(user, other_user)
1354
1355 assert [%{"id" => ^other_user_id}] =
1356 conn
1357 |> get("/api/v1/accounts/relationships?id=#{other_user.id}")
1358 |> json_response_and_validate_schema(200)
1359
1360 assert [%{"id" => ^other_user_id}] =
1361 conn
1362 |> get("/api/v1/accounts/relationships?id[]=#{other_user.id}")
1363 |> json_response_and_validate_schema(200)
1364 end
1365
1366 test "returns an empty list on a bad request", %{conn: conn} do
1367 conn = get(conn, "/api/v1/accounts/relationships", %{})
1368
1369 assert [] = json_response_and_validate_schema(conn, 200)
1370 end
1371 end
1372
1373 test "getting a list of mutes" do
1374 %{user: user, conn: conn} = oauth_access(["read:mutes"])
1375 other_user = insert(:user)
1376
1377 {:ok, _user_relationships} = User.mute(user, other_user)
1378
1379 conn = get(conn, "/api/v1/mutes")
1380
1381 other_user_id = to_string(other_user.id)
1382 assert [%{"id" => ^other_user_id}] = json_response_and_validate_schema(conn, 200)
1383 end
1384
1385 test "getting a list of blocks" do
1386 %{user: user, conn: conn} = oauth_access(["read:blocks"])
1387 other_user = insert(:user)
1388
1389 {:ok, _user_relationship} = User.block(user, other_user)
1390
1391 conn =
1392 conn
1393 |> assign(:user, user)
1394 |> get("/api/v1/blocks")
1395
1396 other_user_id = to_string(other_user.id)
1397 assert [%{"id" => ^other_user_id}] = json_response_and_validate_schema(conn, 200)
1398 end
1399 end