Merge branch 'feature/funkwhale-audio' into 'develop'
[akkoma] / test / web / twitter_api / util_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.TwitterAPI.UtilControllerTest do
6 use Pleroma.Web.ConnCase
7 use Oban.Testing, repo: Pleroma.Repo
8
9 alias Pleroma.Config
10 alias Pleroma.Tests.ObanHelpers
11 alias Pleroma.User
12
13 import Pleroma.Factory
14 import Mock
15
16 setup do
17 Tesla.Mock.mock(fn env -> apply(HttpRequestMock, :request, [env]) end)
18 :ok
19 end
20
21 setup do: clear_config([:instance])
22 setup do: clear_config([:frontend_configurations, :pleroma_fe])
23
24 describe "POST /api/pleroma/follow_import" do
25 setup do: oauth_access(["follow"])
26
27 test "it returns HTTP 200", %{conn: conn} do
28 user2 = insert(:user)
29
30 response =
31 conn
32 |> post("/api/pleroma/follow_import", %{"list" => "#{user2.ap_id}"})
33 |> json_response(:ok)
34
35 assert response == "job started"
36 end
37
38 test "it imports follow lists from file", %{user: user1, conn: conn} do
39 user2 = insert(:user)
40
41 with_mocks([
42 {File, [],
43 read!: fn "follow_list.txt" ->
44 "Account address,Show boosts\n#{user2.ap_id},true"
45 end}
46 ]) do
47 response =
48 conn
49 |> post("/api/pleroma/follow_import", %{"list" => %Plug.Upload{path: "follow_list.txt"}})
50 |> json_response(:ok)
51
52 assert response == "job started"
53
54 assert ObanHelpers.member?(
55 %{
56 "op" => "follow_import",
57 "follower_id" => user1.id,
58 "followed_identifiers" => [user2.ap_id]
59 },
60 all_enqueued(worker: Pleroma.Workers.BackgroundWorker)
61 )
62 end
63 end
64
65 test "it imports new-style mastodon follow lists", %{conn: conn} do
66 user2 = insert(:user)
67
68 response =
69 conn
70 |> post("/api/pleroma/follow_import", %{
71 "list" => "Account address,Show boosts\n#{user2.ap_id},true"
72 })
73 |> json_response(:ok)
74
75 assert response == "job started"
76 end
77
78 test "requires 'follow' or 'write:follows' permissions" do
79 token1 = insert(:oauth_token, scopes: ["read", "write"])
80 token2 = insert(:oauth_token, scopes: ["follow"])
81 token3 = insert(:oauth_token, scopes: ["something"])
82 another_user = insert(:user)
83
84 for token <- [token1, token2, token3] do
85 conn =
86 build_conn()
87 |> put_req_header("authorization", "Bearer #{token.token}")
88 |> post("/api/pleroma/follow_import", %{"list" => "#{another_user.ap_id}"})
89
90 if token == token3 do
91 assert %{"error" => "Insufficient permissions: follow | write:follows."} ==
92 json_response(conn, 403)
93 else
94 assert json_response(conn, 200)
95 end
96 end
97 end
98 end
99
100 describe "POST /api/pleroma/blocks_import" do
101 # Note: "follow" or "write:blocks" permission is required
102 setup do: oauth_access(["write:blocks"])
103
104 test "it returns HTTP 200", %{conn: conn} do
105 user2 = insert(:user)
106
107 response =
108 conn
109 |> post("/api/pleroma/blocks_import", %{"list" => "#{user2.ap_id}"})
110 |> json_response(:ok)
111
112 assert response == "job started"
113 end
114
115 test "it imports blocks users from file", %{user: user1, conn: conn} do
116 user2 = insert(:user)
117 user3 = insert(:user)
118
119 with_mocks([
120 {File, [], read!: fn "blocks_list.txt" -> "#{user2.ap_id} #{user3.ap_id}" end}
121 ]) do
122 response =
123 conn
124 |> post("/api/pleroma/blocks_import", %{"list" => %Plug.Upload{path: "blocks_list.txt"}})
125 |> json_response(:ok)
126
127 assert response == "job started"
128
129 assert ObanHelpers.member?(
130 %{
131 "op" => "blocks_import",
132 "blocker_id" => user1.id,
133 "blocked_identifiers" => [user2.ap_id, user3.ap_id]
134 },
135 all_enqueued(worker: Pleroma.Workers.BackgroundWorker)
136 )
137 end
138 end
139 end
140
141 describe "PUT /api/pleroma/notification_settings" do
142 setup do: oauth_access(["write:accounts"])
143
144 test "it updates notification settings", %{user: user, conn: conn} do
145 conn
146 |> put("/api/pleroma/notification_settings", %{
147 "followers" => false,
148 "bar" => 1
149 })
150 |> json_response(:ok)
151
152 user = refresh_record(user)
153
154 assert %Pleroma.User.NotificationSetting{
155 followers: false,
156 follows: true,
157 non_follows: true,
158 non_followers: true,
159 privacy_option: false
160 } == user.notification_settings
161 end
162
163 test "it updates notification privacy option", %{user: user, conn: conn} do
164 conn
165 |> put("/api/pleroma/notification_settings", %{"privacy_option" => "1"})
166 |> json_response(:ok)
167
168 user = refresh_record(user)
169
170 assert %Pleroma.User.NotificationSetting{
171 followers: true,
172 follows: true,
173 non_follows: true,
174 non_followers: true,
175 privacy_option: true
176 } == user.notification_settings
177 end
178 end
179
180 describe "GET /api/statusnet/config" do
181 test "it returns config in xml format", %{conn: conn} do
182 instance = Config.get(:instance)
183
184 response =
185 conn
186 |> put_req_header("accept", "application/xml")
187 |> get("/api/statusnet/config")
188 |> response(:ok)
189
190 assert response ==
191 "<config>\n<site>\n<name>#{Keyword.get(instance, :name)}</name>\n<site>#{
192 Pleroma.Web.base_url()
193 }</site>\n<textlimit>#{Keyword.get(instance, :limit)}</textlimit>\n<closed>#{
194 !Keyword.get(instance, :registrations_open)
195 }</closed>\n</site>\n</config>\n"
196 end
197
198 test "it returns config in json format", %{conn: conn} do
199 instance = Config.get(:instance)
200 Config.put([:instance, :managed_config], true)
201 Config.put([:instance, :registrations_open], false)
202 Config.put([:instance, :invites_enabled], true)
203 Config.put([:instance, :public], false)
204 Config.put([:frontend_configurations, :pleroma_fe], %{theme: "asuka-hospital"})
205
206 response =
207 conn
208 |> put_req_header("accept", "application/json")
209 |> get("/api/statusnet/config")
210 |> json_response(:ok)
211
212 expected_data = %{
213 "site" => %{
214 "accountActivationRequired" => "0",
215 "closed" => "1",
216 "description" => Keyword.get(instance, :description),
217 "invitesEnabled" => "1",
218 "name" => Keyword.get(instance, :name),
219 "pleromafe" => %{"theme" => "asuka-hospital"},
220 "private" => "1",
221 "safeDMMentionsEnabled" => "0",
222 "server" => Pleroma.Web.base_url(),
223 "textlimit" => to_string(Keyword.get(instance, :limit)),
224 "uploadlimit" => %{
225 "avatarlimit" => to_string(Keyword.get(instance, :avatar_upload_limit)),
226 "backgroundlimit" => to_string(Keyword.get(instance, :background_upload_limit)),
227 "bannerlimit" => to_string(Keyword.get(instance, :banner_upload_limit)),
228 "uploadlimit" => to_string(Keyword.get(instance, :upload_limit))
229 },
230 "vapidPublicKey" => Keyword.get(Pleroma.Web.Push.vapid_config(), :public_key)
231 }
232 }
233
234 assert response == expected_data
235 end
236
237 test "returns the state of safe_dm_mentions flag", %{conn: conn} do
238 Config.put([:instance, :safe_dm_mentions], true)
239
240 response =
241 conn
242 |> get("/api/statusnet/config.json")
243 |> json_response(:ok)
244
245 assert response["site"]["safeDMMentionsEnabled"] == "1"
246
247 Config.put([:instance, :safe_dm_mentions], false)
248
249 response =
250 conn
251 |> get("/api/statusnet/config.json")
252 |> json_response(:ok)
253
254 assert response["site"]["safeDMMentionsEnabled"] == "0"
255 end
256
257 test "it returns the managed config", %{conn: conn} do
258 Config.put([:instance, :managed_config], false)
259 Config.put([:frontend_configurations, :pleroma_fe], %{theme: "asuka-hospital"})
260
261 response =
262 conn
263 |> get("/api/statusnet/config.json")
264 |> json_response(:ok)
265
266 refute response["site"]["pleromafe"]
267
268 Config.put([:instance, :managed_config], true)
269
270 response =
271 conn
272 |> get("/api/statusnet/config.json")
273 |> json_response(:ok)
274
275 assert response["site"]["pleromafe"] == %{"theme" => "asuka-hospital"}
276 end
277 end
278
279 describe "GET /api/pleroma/frontend_configurations" do
280 test "returns everything in :pleroma, :frontend_configurations", %{conn: conn} do
281 config = [
282 frontend_a: %{
283 x: 1,
284 y: 2
285 },
286 frontend_b: %{
287 z: 3
288 }
289 ]
290
291 Config.put(:frontend_configurations, config)
292
293 response =
294 conn
295 |> get("/api/pleroma/frontend_configurations")
296 |> json_response(:ok)
297
298 assert response == Jason.encode!(config |> Enum.into(%{})) |> Jason.decode!()
299 end
300 end
301
302 describe "/api/pleroma/emoji" do
303 test "returns json with custom emoji with tags", %{conn: conn} do
304 emoji =
305 conn
306 |> get("/api/pleroma/emoji")
307 |> json_response(200)
308
309 assert Enum.all?(emoji, fn
310 {_key,
311 %{
312 "image_url" => url,
313 "tags" => tags
314 }} ->
315 is_binary(url) and is_list(tags)
316 end)
317 end
318 end
319
320 describe "GET /api/pleroma/healthcheck" do
321 setup do: clear_config([:instance, :healthcheck])
322
323 test "returns 503 when healthcheck disabled", %{conn: conn} do
324 Config.put([:instance, :healthcheck], false)
325
326 response =
327 conn
328 |> get("/api/pleroma/healthcheck")
329 |> json_response(503)
330
331 assert response == %{}
332 end
333
334 test "returns 200 when healthcheck enabled and all ok", %{conn: conn} do
335 Config.put([:instance, :healthcheck], true)
336
337 with_mock Pleroma.Healthcheck,
338 system_info: fn -> %Pleroma.Healthcheck{healthy: true} end do
339 response =
340 conn
341 |> get("/api/pleroma/healthcheck")
342 |> json_response(200)
343
344 assert %{
345 "active" => _,
346 "healthy" => true,
347 "idle" => _,
348 "memory_used" => _,
349 "pool_size" => _
350 } = response
351 end
352 end
353
354 test "returns 503 when healthcheck enabled and health is false", %{conn: conn} do
355 Config.put([:instance, :healthcheck], true)
356
357 with_mock Pleroma.Healthcheck,
358 system_info: fn -> %Pleroma.Healthcheck{healthy: false} end do
359 response =
360 conn
361 |> get("/api/pleroma/healthcheck")
362 |> json_response(503)
363
364 assert %{
365 "active" => _,
366 "healthy" => false,
367 "idle" => _,
368 "memory_used" => _,
369 "pool_size" => _
370 } = response
371 end
372 end
373 end
374
375 describe "POST /api/pleroma/disable_account" do
376 setup do: oauth_access(["write:accounts"])
377
378 test "with valid permissions and password, it disables the account", %{conn: conn, user: user} do
379 response =
380 conn
381 |> post("/api/pleroma/disable_account", %{"password" => "test"})
382 |> json_response(:ok)
383
384 assert response == %{"status" => "success"}
385 ObanHelpers.perform_all()
386
387 user = User.get_cached_by_id(user.id)
388
389 assert user.deactivated == true
390 end
391
392 test "with valid permissions and invalid password, it returns an error", %{conn: conn} do
393 user = insert(:user)
394
395 response =
396 conn
397 |> post("/api/pleroma/disable_account", %{"password" => "test1"})
398 |> json_response(:ok)
399
400 assert response == %{"error" => "Invalid password."}
401 user = User.get_cached_by_id(user.id)
402
403 refute user.deactivated
404 end
405 end
406
407 describe "GET /api/statusnet/version" do
408 test "it returns version in xml format", %{conn: conn} do
409 response =
410 conn
411 |> put_req_header("accept", "application/xml")
412 |> get("/api/statusnet/version")
413 |> response(:ok)
414
415 assert response == "<version>#{Pleroma.Application.named_version()}</version>"
416 end
417
418 test "it returns version in json format", %{conn: conn} do
419 response =
420 conn
421 |> put_req_header("accept", "application/json")
422 |> get("/api/statusnet/version")
423 |> json_response(:ok)
424
425 assert response == "#{Pleroma.Application.named_version()}"
426 end
427 end
428
429 describe "POST /main/ostatus - remote_subscribe/2" do
430 setup do: clear_config([:instance, :federating], true)
431
432 test "renders subscribe form", %{conn: conn} do
433 user = insert(:user)
434
435 response =
436 conn
437 |> post("/main/ostatus", %{"nickname" => user.nickname, "profile" => ""})
438 |> response(:ok)
439
440 refute response =~ "Could not find user"
441 assert response =~ "Remotely follow #{user.nickname}"
442 end
443
444 test "renders subscribe form with error when user not found", %{conn: conn} do
445 response =
446 conn
447 |> post("/main/ostatus", %{"nickname" => "nickname", "profile" => ""})
448 |> response(:ok)
449
450 assert response =~ "Could not find user"
451 refute response =~ "Remotely follow"
452 end
453
454 test "it redirect to webfinger url", %{conn: conn} do
455 user = insert(:user)
456 user2 = insert(:user, ap_id: "shp@social.heldscal.la")
457
458 conn =
459 conn
460 |> post("/main/ostatus", %{
461 "user" => %{"nickname" => user.nickname, "profile" => user2.ap_id}
462 })
463
464 assert redirected_to(conn) ==
465 "https://social.heldscal.la/main/ostatussub?profile=#{user.ap_id}"
466 end
467
468 test "it renders form with error when user not found", %{conn: conn} do
469 user2 = insert(:user, ap_id: "shp@social.heldscal.la")
470
471 response =
472 conn
473 |> post("/main/ostatus", %{"user" => %{"nickname" => "jimm", "profile" => user2.ap_id}})
474 |> response(:ok)
475
476 assert response =~ "Something went wrong."
477 end
478 end
479
480 test "it returns new captcha", %{conn: conn} do
481 with_mock Pleroma.Captcha,
482 new: fn -> "test_captcha" end do
483 resp =
484 conn
485 |> get("/api/pleroma/captcha")
486 |> response(200)
487
488 assert resp == "\"test_captcha\""
489 assert called(Pleroma.Captcha.new())
490 end
491 end
492
493 describe "POST /api/pleroma/change_email" do
494 setup do: oauth_access(["write:accounts"])
495
496 test "without permissions", %{conn: conn} do
497 conn =
498 conn
499 |> assign(:token, nil)
500 |> post("/api/pleroma/change_email")
501
502 assert json_response(conn, 403) == %{"error" => "Insufficient permissions: write:accounts."}
503 end
504
505 test "with proper permissions and invalid password", %{conn: conn} do
506 conn =
507 post(conn, "/api/pleroma/change_email", %{
508 "password" => "hi",
509 "email" => "test@test.com"
510 })
511
512 assert json_response(conn, 200) == %{"error" => "Invalid password."}
513 end
514
515 test "with proper permissions, valid password and invalid email", %{
516 conn: conn
517 } do
518 conn =
519 post(conn, "/api/pleroma/change_email", %{
520 "password" => "test",
521 "email" => "foobar"
522 })
523
524 assert json_response(conn, 200) == %{"error" => "Email has invalid format."}
525 end
526
527 test "with proper permissions, valid password and no email", %{
528 conn: conn
529 } do
530 conn =
531 post(conn, "/api/pleroma/change_email", %{
532 "password" => "test"
533 })
534
535 assert json_response(conn, 200) == %{"error" => "Email can't be blank."}
536 end
537
538 test "with proper permissions, valid password and blank email", %{
539 conn: conn
540 } do
541 conn =
542 post(conn, "/api/pleroma/change_email", %{
543 "password" => "test",
544 "email" => ""
545 })
546
547 assert json_response(conn, 200) == %{"error" => "Email can't be blank."}
548 end
549
550 test "with proper permissions, valid password and non unique email", %{
551 conn: conn
552 } do
553 user = insert(:user)
554
555 conn =
556 post(conn, "/api/pleroma/change_email", %{
557 "password" => "test",
558 "email" => user.email
559 })
560
561 assert json_response(conn, 200) == %{"error" => "Email has already been taken."}
562 end
563
564 test "with proper permissions, valid password and valid email", %{
565 conn: conn
566 } do
567 conn =
568 post(conn, "/api/pleroma/change_email", %{
569 "password" => "test",
570 "email" => "cofe@foobar.com"
571 })
572
573 assert json_response(conn, 200) == %{"status" => "success"}
574 end
575 end
576
577 describe "POST /api/pleroma/change_password" do
578 setup do: oauth_access(["write:accounts"])
579
580 test "without permissions", %{conn: conn} do
581 conn =
582 conn
583 |> assign(:token, nil)
584 |> post("/api/pleroma/change_password")
585
586 assert json_response(conn, 403) == %{"error" => "Insufficient permissions: write:accounts."}
587 end
588
589 test "with proper permissions and invalid password", %{conn: conn} do
590 conn =
591 post(conn, "/api/pleroma/change_password", %{
592 "password" => "hi",
593 "new_password" => "newpass",
594 "new_password_confirmation" => "newpass"
595 })
596
597 assert json_response(conn, 200) == %{"error" => "Invalid password."}
598 end
599
600 test "with proper permissions, valid password and new password and confirmation not matching",
601 %{
602 conn: conn
603 } do
604 conn =
605 post(conn, "/api/pleroma/change_password", %{
606 "password" => "test",
607 "new_password" => "newpass",
608 "new_password_confirmation" => "notnewpass"
609 })
610
611 assert json_response(conn, 200) == %{
612 "error" => "New password does not match confirmation."
613 }
614 end
615
616 test "with proper permissions, valid password and invalid new password", %{
617 conn: conn
618 } do
619 conn =
620 post(conn, "/api/pleroma/change_password", %{
621 "password" => "test",
622 "new_password" => "",
623 "new_password_confirmation" => ""
624 })
625
626 assert json_response(conn, 200) == %{
627 "error" => "New password can't be blank."
628 }
629 end
630
631 test "with proper permissions, valid password and matching new password and confirmation", %{
632 conn: conn,
633 user: user
634 } do
635 conn =
636 post(conn, "/api/pleroma/change_password", %{
637 "password" => "test",
638 "new_password" => "newpass",
639 "new_password_confirmation" => "newpass"
640 })
641
642 assert json_response(conn, 200) == %{"status" => "success"}
643 fetched_user = User.get_cached_by_id(user.id)
644 assert Comeonin.Pbkdf2.checkpw("newpass", fetched_user.password_hash) == true
645 end
646 end
647
648 describe "POST /api/pleroma/delete_account" do
649 setup do: oauth_access(["write:accounts"])
650
651 test "without permissions", %{conn: conn} do
652 conn =
653 conn
654 |> assign(:token, nil)
655 |> post("/api/pleroma/delete_account")
656
657 assert json_response(conn, 403) ==
658 %{"error" => "Insufficient permissions: write:accounts."}
659 end
660
661 test "with proper permissions and wrong or missing password", %{conn: conn} do
662 for params <- [%{"password" => "hi"}, %{}] do
663 ret_conn = post(conn, "/api/pleroma/delete_account", params)
664
665 assert json_response(ret_conn, 200) == %{"error" => "Invalid password."}
666 end
667 end
668
669 test "with proper permissions and valid password", %{conn: conn} do
670 conn = post(conn, "/api/pleroma/delete_account", %{"password" => "test"})
671
672 assert json_response(conn, 200) == %{"status" => "success"}
673 end
674 end
675 end