X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=test%2Fupload_test.exs;h=09aa5e068b53c0c68f9326dfbada292a58dfbe22;hb=33b033421649f6a7354616ff3458b856ca89637c;hp=645f10293a2d4a800597c4d9889cceb731e48a09;hpb=8c7fdcb31b1255f91493b8f2e0f86dfbbfa2ac85;p=akkoma 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