mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 02:05:12 +00:00
Verify webp files are not processed with exiftool
This commit is contained in:
parent
2165a24974
commit
3a98960c26
|
@ -30,4 +30,15 @@ defmodule Pleroma.Upload.Filter.ExiftoolTest do
|
|||
assert String.match?(exif_original, ~r/GPS/)
|
||||
refute String.match?(exif_filtered, ~r/GPS/)
|
||||
end
|
||||
|
||||
test "verify webp files are skipped" do
|
||||
upload = %Pleroma.Upload{
|
||||
name: "sample.webp",
|
||||
content_type: "image/webp",
|
||||
path: Path.absname("/dev/null"),
|
||||
tempfile: Path.absname("/dev/null")
|
||||
}
|
||||
|
||||
assert Filter.Exiftool.filter(upload) == {:ok, :noop}
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue