summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2020-04-24 22:25:27 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2020-04-24 22:25:27 +0300
commitb4139cc5472079a34f0256ac9991a0222844d44c (patch)
treea271f2dc411824494733e77537882b3ff5cf51be /test
parent00e62161f64802317d7d789e7eac42c33f0540f5 (diff)
downloadpleroma-b4139cc5472079a34f0256ac9991a0222844d44c.tar.gz
pleroma-b4139cc5472079a34f0256ac9991a0222844d44c.zip
[#2409] Made `GET /api/v1/accounts/:id/favourites` auth-optional, adjusted tests.
Diffstat (limited to 'test')
-rw-r--r--test/web/pleroma_api/controllers/account_controller_test.exs20
1 files changed, 13 insertions, 7 deletions
diff --git a/test/web/pleroma_api/controllers/account_controller_test.exs b/test/web/pleroma_api/controllers/account_controller_test.exs
index ae5334015..6b671a667 100644
--- a/test/web/pleroma_api/controllers/account_controller_test.exs
+++ b/test/web/pleroma_api/controllers/account_controller_test.exs
@@ -151,15 +151,18 @@ defmodule Pleroma.Web.PleromaAPI.AccountControllerTest do
assert like["id"] == activity.id
end
- test "does not return favorites for specified user_id when user is not logged in", %{
+ test "returns favorites for specified user_id when requester is not logged in", %{
user: user
} do
activity = insert(:note_activity)
CommonAPI.favorite(user, activity.id)
- build_conn()
- |> get("/api/v1/pleroma/accounts/#{user.id}/favourites")
- |> json_response(403)
+ response =
+ build_conn()
+ |> get("/api/v1/pleroma/accounts/#{user.id}/favourites")
+ |> json_response(200)
+
+ assert length(response) == 1
end
test "returns favorited DM only when user is logged in and he is one of recipients", %{
@@ -185,9 +188,12 @@ defmodule Pleroma.Web.PleromaAPI.AccountControllerTest do
assert length(response) == 1
end
- build_conn()
- |> get("/api/v1/pleroma/accounts/#{user.id}/favourites")
- |> json_response(403)
+ response =
+ build_conn()
+ |> get("/api/v1/pleroma/accounts/#{user.id}/favourites")
+ |> json_response(200)
+
+ assert length(response) == 0
end
test "does not return others' favorited DM when user is not one of recipients", %{