diff options
author | lain <lain@soykaf.club> | 2020-06-01 13:17:56 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-06-01 13:17:56 +0200 |
commit | d4d4b92f758979fbc22cd56a9f30435df5c40ab6 (patch) | |
tree | 223db069b8c05b881499f3315816f3dca637cbeb /test | |
parent | e96765df6b04fe5e9766271a9c62e559392758b2 (diff) | |
download | pleroma-d4d4b92f758979fbc22cd56a9f30435df5c40ab6.tar.gz |
TimelineController: Only return `Create` in public timelines.
Diffstat (limited to 'test')
-rw-r--r-- | test/web/mastodon_api/controllers/timeline_controller_test.exs | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/test/web/mastodon_api/controllers/timeline_controller_test.exs b/test/web/mastodon_api/controllers/timeline_controller_test.exs index 2375ac8e8..65b4079fe 100644 --- a/test/web/mastodon_api/controllers/timeline_controller_test.exs +++ b/test/web/mastodon_api/controllers/timeline_controller_test.exs @@ -60,9 +60,9 @@ defmodule Pleroma.Web.MastodonAPI.TimelineControllerTest do describe "public" do @tag capture_log: true test "the public timeline", %{conn: conn} do - following = insert(:user) + user = insert(:user) - {:ok, _activity} = CommonAPI.post(following, %{status: "test"}) + {:ok, activity} = CommonAPI.post(user, %{status: "test"}) _activity = insert(:note_activity, local: false) @@ -77,6 +77,13 @@ defmodule Pleroma.Web.MastodonAPI.TimelineControllerTest do conn = get(build_conn(), "/api/v1/timelines/public?local=1") assert [%{"content" => "test"}] = json_response_and_validate_schema(conn, :ok) + + # does not contain repeats + {:ok, _} = CommonAPI.repeat(activity.id, user) + + conn = get(build_conn(), "/api/v1/timelines/public?local=true") + + assert [_] = json_response_and_validate_schema(conn, :ok) end test "the public timeline includes only public statuses for an authenticated user" do |