diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2020-02-27 17:27:49 +0400 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2020-02-27 17:27:49 +0400 |
commit | cb60a9c42f48f0b9df1681f9cba229b21eb6095c (patch) | |
tree | a47b1592d1e5d880c251ddad66d994dc61b59b9f /test/web/mastodon_api/controllers/report_controller_test.exs | |
parent | fda6f35a467914d3d6bf6944a10dc928c4ab495c (diff) | |
download | pleroma-cb60a9c42f48f0b9df1681f9cba229b21eb6095c.tar.gz pleroma-cb60a9c42f48f0b9df1681f9cba229b21eb6095c.zip |
Do not fail when user has no email
Diffstat (limited to 'test/web/mastodon_api/controllers/report_controller_test.exs')
-rw-r--r-- | test/web/mastodon_api/controllers/report_controller_test.exs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/test/web/mastodon_api/controllers/report_controller_test.exs b/test/web/mastodon_api/controllers/report_controller_test.exs index 53c132ff4..34ec8119e 100644 --- a/test/web/mastodon_api/controllers/report_controller_test.exs +++ b/test/web/mastodon_api/controllers/report_controller_test.exs @@ -1,5 +1,5 @@ # Pleroma: A lightweight social networking server -# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/> +# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/> # SPDX-License-Identifier: AGPL-3.0-only defmodule Pleroma.Web.MastodonAPI.ReportControllerTest do @@ -75,4 +75,13 @@ defmodule Pleroma.Web.MastodonAPI.ReportControllerTest do assert json_response(conn, 400) == %{"error" => "Account not found"} end + + test "doesn't fail if an admin has no email", %{conn: conn, target_user: target_user} do + insert(:user, %{is_admin: true, email: nil}) + + assert %{"action_taken" => false, "id" => _} = + conn + |> post("/api/v1/reports", %{"account_id" => target_user.id}) + |> json_response(200) + end end |