logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 53dd048590b93da67f9d4abac8cc111424c4d5c0
parent 7efc074eadae9b3d6d351e769ead0661f1f4c89c
Author: Mark Felder <feld@FreeBSD.org>
Date:   Mon,  2 Nov 2020 15:49:07 -0600

Test the note is returned when fetching a single report

Diffstat:

Mtest/pleroma/web/admin_api/controllers/report_controller_test.exs9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/test/pleroma/web/admin_api/controllers/report_controller_test.exs b/test/pleroma/web/admin_api/controllers/report_controller_test.exs @@ -37,12 +37,21 @@ defmodule Pleroma.Web.AdminAPI.ReportControllerTest do status_ids: [activity.id] }) + conn + |> put_req_header("content-type", "application/json") + |> post("/api/pleroma/admin/reports/#{report_id}/notes", %{ + content: "this is an admin note" + }) + response = conn |> get("/api/pleroma/admin/reports/#{report_id}") |> json_response_and_validate_schema(:ok) assert response["id"] == report_id + + [notes] = response["notes"] + assert notes["content"] == "this is an admin note" end test "returns 404 when report id is invalid", %{conn: conn} do