diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2021-02-17 00:45:01 +0100 |
---|---|---|
committer | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2021-03-15 06:47:07 +0100 |
commit | ef5de5eb398b6d4cbc1ed338f2f41d3bfa1c5fe9 (patch) | |
tree | 69e75a4a1df50684b2d78df02b622ee814655ab9 | |
parent | 0c7c6463d13b8a4471b8721912c82fe1cbe3e91a (diff) | |
download | pleroma-ef5de5eb398b6d4cbc1ed338f2f41d3bfa1c5fe9.tar.gz |
OpenAPI: MastodonAPI Status Controller
-rw-r--r-- | test/pleroma/web/mastodon_api/controllers/status_controller_test.exs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/pleroma/web/mastodon_api/controllers/status_controller_test.exs b/test/pleroma/web/mastodon_api/controllers/status_controller_test.exs index f616f405e..4c0149a4c 100644 --- a/test/pleroma/web/mastodon_api/controllers/status_controller_test.exs +++ b/test/pleroma/web/mastodon_api/controllers/status_controller_test.exs @@ -81,6 +81,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusControllerTest do "sensitive" => 0 }) + # Idempotency plug response means detection fail assert %{"id" => second_id} = json_response(conn_two, 200) assert id == second_id @@ -1542,7 +1543,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusControllerTest do |> assign(:token, insert(:oauth_token, user: user3, scopes: ["read:statuses"])) |> get("api/v1/timelines/home") - [reblogged_activity] = json_response(conn3, 200) + [reblogged_activity] = json_response_and_validate_schema(conn3, 200) assert reblogged_activity["reblog"]["in_reply_to_id"] == replied_to.id @@ -1896,7 +1897,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusControllerTest do local = Pleroma.Constants.as_local_public() assert %{"content" => "cofe", "id" => id, "visibility" => "local"} = - json_response(conn_one, 200) + json_response_and_validate_schema(conn_one, 200) assert %Activity{id: ^id, data: %{"to" => [^local]}} = Activity.get_by_id(id) end |