diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-10-01 19:08:25 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-10-01 20:38:29 +0200 |
commit | 7d5a9f3f6d393c744364148568cfb9b0249789fc (patch) | |
tree | 53d44d0b78ccbbd7879d1b337a0cd34b656305de | |
parent | 4c1f158f5de95581f1489be32614e0e75bc77ba4 (diff) | |
download | pleroma-7d5a9f3f6d393c744364148568cfb9b0249789fc.tar.gz |
Add tests for privately announcing statuses via API
-rw-r--r-- | test/web/common_api/common_api_test.exs | 12 | ||||
-rw-r--r-- | test/web/mastodon_api/controllers/status_controller_test.exs | 18 |
2 files changed, 30 insertions, 0 deletions
diff --git a/test/web/common_api/common_api_test.exs b/test/web/common_api/common_api_test.exs index 0f4a5eb25..2d3c41e82 100644 --- a/test/web/common_api/common_api_test.exs +++ b/test/web/common_api/common_api_test.exs @@ -231,6 +231,18 @@ defmodule Pleroma.Web.CommonAPITest do {:ok, %Activity{}, _} = CommonAPI.repeat(activity.id, user) end + test "repeating a status privately" do + user = insert(:user) + other_user = insert(:user) + + {:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"}) + + {:ok, %Activity{} = announce_activity, _} = + CommonAPI.repeat(activity.id, user, %{"visibility" => "private"}) + + assert Visibility.is_private?(announce_activity) + end + test "favoriting a status" do user = insert(:user) other_user = insert(:user) diff --git a/test/web/mastodon_api/controllers/status_controller_test.exs b/test/web/mastodon_api/controllers/status_controller_test.exs index b194feae6..727a233e7 100644 --- a/test/web/mastodon_api/controllers/status_controller_test.exs +++ b/test/web/mastodon_api/controllers/status_controller_test.exs @@ -547,6 +547,24 @@ defmodule Pleroma.Web.MastodonAPI.StatusControllerTest do assert to_string(activity.id) == id end + test "reblogs privately and returns the reblogged status", %{conn: conn} do + activity = insert(:note_activity) + user = insert(:user) + + conn = + conn + |> assign(:user, user) + |> post("/api/v1/statuses/#{activity.id}/reblog", %{"visibility" => "private"}) + + assert %{ + "reblog" => %{"id" => id, "reblogged" => true, "reblogs_count" => 0}, + "reblogged" => true, + "visibility" => "private" + } = json_response(conn, 200) + + assert to_string(activity.id) == id + end + test "reblogged status for another user", %{conn: conn} do activity = insert(:note_activity) user1 = insert(:user) |