2017-03-28 23:39:01 +00:00
|
|
|
defmodule Pleroma.UploadTest do
|
|
|
|
alias Pleroma.Upload
|
|
|
|
use Pleroma.DataCase
|
|
|
|
|
|
|
|
describe "Storing a file" do
|
2018-04-15 23:37:51 +00:00
|
|
|
test "copies the file to the configured folder with deduping" do
|
|
|
|
File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
file = %Plug.Upload{
|
|
|
|
content_type: "image/jpg",
|
2018-04-15 23:37:51 +00:00
|
|
|
path: Path.absname("test/fixtures/image_tmp.jpg"),
|
2018-03-30 13:01:53 +00:00
|
|
|
filename: "an [image.jpg"
|
|
|
|
}
|
|
|
|
|
2018-04-15 23:37:51 +00:00
|
|
|
data = Upload.store(file, true)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-04-15 23:37:51 +00:00
|
|
|
assert data["name"] ==
|
|
|
|
"e7a6d0cf595bff76f14c9a98b6c199539559e8b844e02e51e5efcfd1f614a2df.jpeg"
|
2017-03-28 23:39:01 +00:00
|
|
|
end
|
2017-11-09 12:11:37 +00:00
|
|
|
|
2018-04-15 23:37:51 +00:00
|
|
|
test "copies the file to the configured folder without deduping" do
|
|
|
|
File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
file = %Plug.Upload{
|
2018-04-15 23:37:51 +00:00
|
|
|
content_type: "image/jpg",
|
|
|
|
path: Path.absname("test/fixtures/image_tmp.jpg"),
|
2018-03-30 13:01:53 +00:00
|
|
|
filename: "an [image.jpg"
|
|
|
|
}
|
|
|
|
|
2018-04-15 23:37:51 +00:00
|
|
|
data = Upload.store(file, false)
|
|
|
|
assert data["name"] == "an [image.jpg"
|
2017-11-09 12:11:37 +00:00
|
|
|
end
|
|
|
|
|
2018-04-15 23:37:51 +00:00
|
|
|
test "fixes incorrect content type" do
|
|
|
|
File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
file = %Plug.Upload{
|
2018-04-15 23:37:51 +00:00
|
|
|
content_type: "application/octet-stream",
|
|
|
|
path: Path.absname("test/fixtures/image_tmp.jpg"),
|
2018-03-30 13:01:53 +00:00
|
|
|
filename: "an [image.jpg"
|
|
|
|
}
|
|
|
|
|
2018-04-15 23:37:51 +00:00
|
|
|
data = Upload.store(file, true)
|
|
|
|
assert hd(data["url"])["mediaType"] == "image/jpeg"
|
2017-11-09 12:11:37 +00:00
|
|
|
end
|
2017-03-28 23:39:01 +00:00
|
|
|
end
|
|
|
|
end
|