forked from AkkomaGang/akkoma
Add test on changing [:instance, :upload_limit]
This commit is contained in:
parent
a851a24036
commit
fc6ab78a84
2 changed files with 57 additions and 0 deletions
|
@ -24,6 +24,7 @@ def create_operation do
|
||||||
requestBody: Helpers.request_body("Parameters", create_request()),
|
requestBody: Helpers.request_body("Parameters", create_request()),
|
||||||
responses: %{
|
responses: %{
|
||||||
200 => Operation.response("Media", "application/json", Attachment),
|
200 => Operation.response("Media", "application/json", Attachment),
|
||||||
|
400 => Operation.response("Media", "application/json", ApiError),
|
||||||
401 => Operation.response("Media", "application/json", ApiError),
|
401 => Operation.response("Media", "application/json", ApiError),
|
||||||
422 => Operation.response("Media", "application/json", ApiError)
|
422 => Operation.response("Media", "application/json", ApiError)
|
||||||
}
|
}
|
||||||
|
@ -121,6 +122,7 @@ def create2_operation do
|
||||||
requestBody: Helpers.request_body("Parameters", create_request()),
|
requestBody: Helpers.request_body("Parameters", create_request()),
|
||||||
responses: %{
|
responses: %{
|
||||||
202 => Operation.response("Media", "application/json", Attachment),
|
202 => Operation.response("Media", "application/json", Attachment),
|
||||||
|
400 => Operation.response("Media", "application/json", ApiError),
|
||||||
422 => Operation.response("Media", "application/json", ApiError),
|
422 => Operation.response("Media", "application/json", ApiError),
|
||||||
500 => Operation.response("Media", "application/json", ApiError)
|
500 => Operation.response("Media", "application/json", ApiError)
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,8 @@
|
||||||
defmodule Pleroma.Web.MastodonAPI.MediaControllerTest do
|
defmodule Pleroma.Web.MastodonAPI.MediaControllerTest do
|
||||||
use Pleroma.Web.ConnCase
|
use Pleroma.Web.ConnCase
|
||||||
|
|
||||||
|
import ExUnit.CaptureLog
|
||||||
|
|
||||||
alias Pleroma.Object
|
alias Pleroma.Object
|
||||||
alias Pleroma.User
|
alias Pleroma.User
|
||||||
alias Pleroma.Web.ActivityPub.ActivityPub
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
||||||
|
@ -67,6 +69,59 @@ test "/api/v2/media", %{conn: conn, user: user, image: image} do
|
||||||
object = Object.get_by_id(media["id"])
|
object = Object.get_by_id(media["id"])
|
||||||
assert object.data["actor"] == user.ap_id
|
assert object.data["actor"] == user.ap_id
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "/api/v2/media, upload_limit", %{conn: conn, user: user} do
|
||||||
|
desc = "Description of the binary"
|
||||||
|
|
||||||
|
upload_limit = Config.get([:instance, :upload_limit]) * 8 + 8
|
||||||
|
|
||||||
|
assert :ok ==
|
||||||
|
File.write(Path.absname("test/tmp/large_binary.data"), <<0::size(upload_limit)>>)
|
||||||
|
|
||||||
|
large_binary = %Plug.Upload{
|
||||||
|
content_type: nil,
|
||||||
|
path: Path.absname("test/tmp/large_binary.data"),
|
||||||
|
filename: "large_binary.data"
|
||||||
|
}
|
||||||
|
|
||||||
|
assert capture_log(fn ->
|
||||||
|
assert %{"error" => "file_too_large"} =
|
||||||
|
conn
|
||||||
|
|> put_req_header("content-type", "multipart/form-data")
|
||||||
|
|> post("/api/v2/media", %{
|
||||||
|
"file" => large_binary,
|
||||||
|
"description" => desc
|
||||||
|
})
|
||||||
|
|> json_response_and_validate_schema(400)
|
||||||
|
end) =~
|
||||||
|
"[error] Elixir.Pleroma.Upload store (using Pleroma.Uploaders.Local) failed: :file_too_large"
|
||||||
|
|
||||||
|
clear_config([:instance, :upload_limit], upload_limit)
|
||||||
|
|
||||||
|
assert response =
|
||||||
|
conn
|
||||||
|
|> put_req_header("content-type", "multipart/form-data")
|
||||||
|
|> post("/api/v2/media", %{
|
||||||
|
"file" => large_binary,
|
||||||
|
"description" => desc
|
||||||
|
})
|
||||||
|
|> json_response_and_validate_schema(202)
|
||||||
|
|
||||||
|
assert media_id = response["id"]
|
||||||
|
|
||||||
|
%{conn: conn} = oauth_access(["read:media"], user: user)
|
||||||
|
|
||||||
|
media =
|
||||||
|
conn
|
||||||
|
|> get("/api/v1/media/#{media_id}")
|
||||||
|
|> json_response_and_validate_schema(200)
|
||||||
|
|
||||||
|
assert media["type"] == "unknown"
|
||||||
|
assert media["description"] == desc
|
||||||
|
assert media["id"]
|
||||||
|
|
||||||
|
assert :ok == File.rm(Path.absname("test/tmp/large_binary.data"))
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "Update media description" do
|
describe "Update media description" do
|
||||||
|
|
Loading…
Reference in a new issue