summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorFrancis Dinh <normandy@firemail.cc>2018-06-14 12:12:38 -0400
committerFrancis Dinh <normandy@firemail.cc>2018-06-14 12:16:34 -0400
commit0a95b5594b654dbec73a9e50e340f4975aa3e8e5 (patch)
treef9dabd019d0819951d11f0d0187c1d5726353658 /test
parent678df59d22165ac91d659901fcbefbd6384c6e87 (diff)
downloadpleroma-0a95b5594b654dbec73a9e50e340f4975aa3e8e5.tar.gz
pleroma-0a95b5594b654dbec73a9e50e340f4975aa3e8e5.zip
Add missing file extension if file does not have one
Diffstat (limited to 'test')
-rw-r--r--test/upload_test.exs13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/upload_test.exs b/test/upload_test.exs
index 645f10293..09aa5e068 100644
--- a/test/upload_test.exs
+++ b/test/upload_test.exs
@@ -43,5 +43,18 @@ defmodule Pleroma.UploadTest do
data = Upload.store(file, true)
assert hd(data["url"])["mediaType"] == "image/jpeg"
end
+
+ test "adds missing extension" do
+ File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
+
+ file = %Plug.Upload{
+ content_type: "image/jpg",
+ path: Path.absname("test/fixtures/image_tmp.jpg"),
+ filename: "an [image"
+ }
+
+ data = Upload.store(file, false)
+ assert data["name"] == "an [image.jpg"
+ end
end
end