UploadMediaPlugTest: Fix tests
This commit is contained in:
parent
dd0cf0371a
commit
d62b17eb60
@ -4,10 +4,18 @@
|
|||||||
|
|
||||||
defmodule Pleroma.Web.Plugs.UploadedMediaPlugTest do
|
defmodule Pleroma.Web.Plugs.UploadedMediaPlugTest do
|
||||||
use Pleroma.Web.ConnCase, async: true
|
use Pleroma.Web.ConnCase, async: true
|
||||||
|
|
||||||
|
alias Pleroma.UnstubbedConfigMock, as: ConfigMock
|
||||||
alias Pleroma.Upload
|
alias Pleroma.Upload
|
||||||
|
|
||||||
|
import Mox
|
||||||
|
|
||||||
defp upload_file(context) do
|
defp upload_file(context) do
|
||||||
|
ConfigMock
|
||||||
|
|> stub_with(Pleroma.Test.StaticConfig)
|
||||||
|
|
||||||
Pleroma.DataCase.ensure_local_uploader(context)
|
Pleroma.DataCase.ensure_local_uploader(context)
|
||||||
|
|
||||||
File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
|
File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
|
||||||
|
|
||||||
file = %Plug.Upload{
|
file = %Plug.Upload{
|
||||||
@ -23,6 +31,13 @@ defmodule Pleroma.Web.Plugs.UploadedMediaPlugTest do
|
|||||||
|
|
||||||
setup_all :upload_file
|
setup_all :upload_file
|
||||||
|
|
||||||
|
setup do
|
||||||
|
ConfigMock
|
||||||
|
|> stub_with(Pleroma.Test.StaticConfig)
|
||||||
|
|
||||||
|
:ok
|
||||||
|
end
|
||||||
|
|
||||||
test "does not send Content-Disposition header when name param is not set", %{
|
test "does not send Content-Disposition header when name param is not set", %{
|
||||||
attachment_url: attachment_url
|
attachment_url: attachment_url
|
||||||
} do
|
} do
|
||||||
|
Loading…
Reference in New Issue
Block a user