1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.UploadTest do
8 import ExUnit.CaptureLog
11 alias Pleroma.Uploaders.Uploader
13 @upload_file %Plug.Upload{
14 content_type: "image/jpeg",
15 path: Path.absname("test/fixtures/image_tmp.jpg"),
19 defmodule TestUploaderBase do
20 def put_file(%{path: path} = _upload, module_name) do
26 |> :global.whereis_name()
27 |> send({Uploader, self(), {:test}, %{}})
29 assert_receive {Uploader, {:test}}, 4_000
32 Agent.start(fn -> task_pid end, name: module_name)
38 describe "Tried storing a file when http callback response success result" do
39 defmodule TestUploaderSuccess do
40 def http_callback(conn, _params),
41 do: {:ok, conn, {:file, "post-process-file.jpg"}}
43 def put_file(upload), do: TestUploaderBase.put_file(upload, __MODULE__)
46 setup do: [uploader: TestUploaderSuccess]
47 setup [:ensure_local_uploader]
49 test "it returns file" do
50 File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
52 assert Upload.store(@upload_file) ==
55 "name" => "image.jpg",
57 "mediaType" => "image/jpeg",
60 "href" => "http://localhost:4001/media/post-process-file.jpg",
61 "mediaType" => "image/jpeg",
67 Task.await(Agent.get(TestUploaderSuccess, fn task_pid -> task_pid end))
71 describe "Tried storing a file when http callback response error" do
72 defmodule TestUploaderError do
73 def http_callback(conn, _params), do: {:error, conn, "Errors"}
75 def put_file(upload), do: TestUploaderBase.put_file(upload, __MODULE__)
78 setup do: [uploader: TestUploaderError]
79 setup [:ensure_local_uploader]
81 test "it returns error" do
82 File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
84 assert capture_log(fn ->
85 assert Upload.store(@upload_file) == {:error, "Errors"}
86 Task.await(Agent.get(TestUploaderError, fn task_pid -> task_pid end))
88 "[error] Elixir.Pleroma.Upload store (using Pleroma.UploadTest.TestUploaderError) failed: \"Errors\""
92 describe "Tried storing a file when http callback doesn't response by timeout" do
93 defmodule(TestUploader, do: def(put_file(_upload), do: :wait_callback))
94 setup do: [uploader: TestUploader]
95 setup [:ensure_local_uploader]
97 test "it returns error" do
98 File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
100 assert capture_log(fn ->
101 assert Upload.store(@upload_file) == {:error, "Uploader callback timeout"}
103 "[error] Elixir.Pleroma.Upload store (using Pleroma.UploadTest.TestUploader) failed: \"Uploader callback timeout\""
107 describe "Storing a file with the Local uploader" do
108 setup [:ensure_local_uploader]
110 test "does not allow descriptions longer than the post limit" do
111 clear_config([:instance, :description_limit], 2)
112 File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
115 content_type: "image/jpeg",
116 path: Path.absname("test/fixtures/image_tmp.jpg"),
117 filename: "image.jpg"
120 {:error, :description_too_long} = Upload.store(file, description: "123")
123 test "returns a media url" do
124 File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
127 content_type: "image/jpeg",
128 path: Path.absname("test/fixtures/image_tmp.jpg"),
129 filename: "image.jpg"
132 {:ok, data} = Upload.store(file)
134 assert %{"url" => [%{"href" => url}]} = data
136 assert String.starts_with?(url, Pleroma.Upload.base_url())
139 test "copies the file to the configured folder with deduping" do
140 File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
143 content_type: "image/jpeg",
144 path: Path.absname("test/fixtures/image_tmp.jpg"),
145 filename: "an [image.jpg"
148 {:ok, data} = Upload.store(file, filters: [Pleroma.Upload.Filter.Dedupe])
150 assert List.first(data["url"])["href"] ==
151 Pleroma.Upload.base_url() <>
152 "e30397b58d226d6583ab5b8b3c5defb0c682bda5c31ef07a9f57c1c4986e3781.jpg"
155 test "copies the file to the configured folder without deduping" do
156 File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
159 content_type: "image/jpeg",
160 path: Path.absname("test/fixtures/image_tmp.jpg"),
161 filename: "an [image.jpg"
164 {:ok, data} = Upload.store(file)
165 assert data["name"] == "an [image.jpg"
168 test "fixes incorrect content type when base64 is given" do
170 img: "data:image/png;base64,#{Base.encode64(File.read!("test/fixtures/image.jpg"))}"
173 {:ok, data} = Upload.store(params)
174 assert hd(data["url"])["mediaType"] == "image/jpeg"
177 test "adds extension when base64 is given" do
178 File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
181 img: "data:image/png;base64,#{Base.encode64(File.read!("test/fixtures/image.jpg"))}"
184 {:ok, data} = Upload.store(params)
185 assert String.ends_with?(data["name"], ".jpg")
188 test "copies the file to the configured folder with anonymizing filename" do
189 File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
192 content_type: "image/jpeg",
193 path: Path.absname("test/fixtures/image_tmp.jpg"),
194 filename: "an [image.jpg"
197 {:ok, data} = Upload.store(file, filters: [Pleroma.Upload.Filter.AnonymizeFilename])
199 refute data["name"] == "an [image.jpg"
202 test "escapes invalid characters in url" do
203 File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
206 content_type: "image/jpeg",
207 path: Path.absname("test/fixtures/image_tmp.jpg"),
208 filename: "an… image.jpg"
211 {:ok, data} = Upload.store(file)
212 [attachment_url | _] = data["url"]
214 assert Path.basename(attachment_url["href"]) == "an%E2%80%A6%20image.jpg"
217 test "escapes reserved uri characters" do
218 File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
221 content_type: "image/jpeg",
222 path: Path.absname("test/fixtures/image_tmp.jpg"),
223 filename: ":?#[]@!$&\\'()*+,;=.jpg"
226 {:ok, data} = Upload.store(file)
227 [attachment_url | _] = data["url"]
229 assert Path.basename(attachment_url["href"]) ==
230 "%3A%3F%23%5B%5D%40%21%24%26%5C%27%28%29%2A%2B%2C%3B%3D.jpg"
234 describe "Setting a custom base_url for uploaded media" do
235 setup do: clear_config([Pleroma.Upload, :base_url], "https://cache.pleroma.social")
237 test "returns a media url with configured base_url" do
238 base_url = Pleroma.Config.get([Pleroma.Upload, :base_url])
240 File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
243 content_type: "image/jpeg",
244 path: Path.absname("test/fixtures/image_tmp.jpg"),
245 filename: "image.jpg"
248 {:ok, data} = Upload.store(file, base_url: base_url)
250 assert %{"url" => [%{"href" => url}]} = data
252 refute String.starts_with?(url, base_url <> "/media/")