StatusControllerTest: test creating a quote post

This commit is contained in:
Alex Gleason 2022-01-22 22:35:08 -06:00
parent 4b2fe550de
commit bbd3433f5a
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 19 additions and 0 deletions

View File

@ -124,6 +124,25 @@ defmodule Pleroma.Web.MastodonAPI.StatusControllerTest do
)
end
test "posting a quote post", %{conn: conn} do
user = insert(:user)
{:ok, %{id: activity_id}} = CommonAPI.post(user, %{status: "yolo"})
conn =
conn
|> put_req_header("content-type", "application/json")
|> post("/api/v1/statuses", %{
"status" => "indeed",
"quote_id" => activity_id
})
assert %{"id" => id, "pleroma" => %{"quote" => %{"id" => ^activity_id}}} =
json_response_and_validate_schema(conn, 200)
assert Activity.get_by_id(id)
end
test "it fails to create a status if `expires_in` is less or equal than an hour", %{
conn: conn
} do