2017-03-28 19:39:01 -04:00
|
|
|
defmodule Pleroma.UploadTest do
|
|
|
|
alias Pleroma.Upload
|
|
|
|
use Pleroma.DataCase
|
|
|
|
|
|
|
|
describe "Storing a file" do
|
|
|
|
test "copies the file to the configured folder" do
|
2018-03-30 09:01:53 -04:00
|
|
|
file = %Plug.Upload{
|
|
|
|
content_type: "image/jpg",
|
|
|
|
path: Path.absname("test/fixtures/image.jpg"),
|
|
|
|
filename: "an [image.jpg"
|
|
|
|
}
|
|
|
|
|
2017-03-28 19:39:01 -04:00
|
|
|
data = Upload.store(file)
|
2017-08-09 10:45:05 -04:00
|
|
|
assert data["name"] == "an [image.jpg"
|
2018-03-30 09:01:53 -04:00
|
|
|
|
|
|
|
assert List.first(data["url"])["href"] ==
|
|
|
|
"http://localhost:4001/media/#{data["uuid"]}/an%20%5Bimage.jpg"
|
2017-03-28 19:39:01 -04:00
|
|
|
end
|
2017-11-09 07:11:37 -05:00
|
|
|
|
|
|
|
test "fixes an incorrect content type" do
|
2018-03-30 09:01:53 -04:00
|
|
|
file = %Plug.Upload{
|
|
|
|
content_type: "application/octet-stream",
|
|
|
|
path: Path.absname("test/fixtures/image.jpg"),
|
|
|
|
filename: "an [image.jpg"
|
|
|
|
}
|
|
|
|
|
2017-11-09 07:11:37 -05:00
|
|
|
data = Upload.store(file)
|
|
|
|
assert hd(data["url"])["mediaType"] == "image/jpeg"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "does not modify a valid content type" do
|
2018-03-30 09:01:53 -04:00
|
|
|
file = %Plug.Upload{
|
|
|
|
content_type: "image/png",
|
|
|
|
path: Path.absname("test/fixtures/image.jpg"),
|
|
|
|
filename: "an [image.jpg"
|
|
|
|
}
|
|
|
|
|
2017-11-09 07:11:37 -05:00
|
|
|
data = Upload.store(file)
|
|
|
|
assert hd(data["url"])["mediaType"] == "image/png"
|
|
|
|
end
|
2017-03-28 19:39:01 -04:00
|
|
|
end
|
|
|
|
end
|