2019-08-10 11:27:59 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-08-10 11:27:59 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Uploaders.S3Test do
|
|
|
|
use Pleroma.DataCase
|
|
|
|
|
|
|
|
alias Pleroma.Uploaders.S3
|
|
|
|
|
|
|
|
import Mock
|
|
|
|
import ExUnit.CaptureLog
|
|
|
|
|
2021-01-08 16:49:12 +00:00
|
|
|
setup do
|
2021-01-13 18:00:48 +00:00
|
|
|
clear_config([Pleroma.Upload, :uploader], Pleroma.Uploaders.S3)
|
|
|
|
clear_config([Pleroma.Upload, :base_url], "https://s3.amazonaws.com")
|
2021-01-16 20:05:31 +00:00
|
|
|
clear_config([Pleroma.Uploaders.S3])
|
|
|
|
clear_config([Pleroma.Uploaders.S3, :bucket], "test_bucket")
|
2021-01-08 16:49:12 +00:00
|
|
|
end
|
2019-08-10 11:27:59 +00:00
|
|
|
|
|
|
|
describe "get_file/1" do
|
|
|
|
test "it returns path to local folder for files" do
|
|
|
|
assert S3.get_file("test_image.jpg") == {
|
|
|
|
:ok,
|
|
|
|
{:url, "https://s3.amazonaws.com/test_bucket/test_image.jpg"}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it returns path without bucket when truncated_namespace set to ''" do
|
2021-01-26 17:58:43 +00:00
|
|
|
clear_config([Pleroma.Uploaders.S3],
|
2019-08-10 11:27:59 +00:00
|
|
|
bucket: "test_bucket",
|
2021-01-20 22:33:00 +00:00
|
|
|
bucket_namespace: "myaccount",
|
2019-08-10 11:27:59 +00:00
|
|
|
truncated_namespace: ""
|
|
|
|
)
|
|
|
|
|
2021-01-26 17:58:43 +00:00
|
|
|
clear_config([Pleroma.Upload, :base_url], "https://s3.amazonaws.com")
|
2021-01-12 22:35:10 +00:00
|
|
|
|
2019-08-10 11:27:59 +00:00
|
|
|
assert S3.get_file("test_image.jpg") == {
|
|
|
|
:ok,
|
|
|
|
{:url, "https://s3.amazonaws.com/test_image.jpg"}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it returns path with bucket namespace when namespace is set" do
|
2021-01-26 17:58:43 +00:00
|
|
|
clear_config([Pleroma.Uploaders.S3],
|
2019-08-10 11:27:59 +00:00
|
|
|
bucket: "test_bucket",
|
|
|
|
bucket_namespace: "family"
|
|
|
|
)
|
|
|
|
|
|
|
|
assert S3.get_file("test_image.jpg") == {
|
|
|
|
:ok,
|
|
|
|
{:url, "https://s3.amazonaws.com/family:test_bucket/test_image.jpg"}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "put_file/1" do
|
|
|
|
setup do
|
|
|
|
file_upload = %Pleroma.Upload{
|
|
|
|
name: "image-tet.jpg",
|
2020-10-13 15:37:24 +00:00
|
|
|
content_type: "image/jpeg",
|
2019-08-10 11:27:59 +00:00
|
|
|
path: "test_folder/image-tet.jpg",
|
2020-05-08 15:51:16 +00:00
|
|
|
tempfile: Path.absname("test/instance_static/add/shortcode.png")
|
2019-08-10 11:27:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[file_upload: file_upload]
|
|
|
|
end
|
|
|
|
|
|
|
|
test "save file", %{file_upload: file_upload} do
|
|
|
|
with_mock ExAws, request: fn _ -> {:ok, :ok} end do
|
|
|
|
assert S3.put_file(file_upload) == {:ok, {:file, "test_folder/image-tet.jpg"}}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "returns error", %{file_upload: file_upload} do
|
|
|
|
with_mock ExAws, request: fn _ -> {:error, "S3 Upload failed"} end do
|
|
|
|
assert capture_log(fn ->
|
|
|
|
assert S3.put_file(file_upload) == {:error, "S3 Upload failed"}
|
|
|
|
end) =~ "Elixir.Pleroma.Uploaders.S3: {:error, \"S3 Upload failed\"}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-01-12 18:48:58 +00:00
|
|
|
|
|
|
|
describe "delete_file/1" do
|
|
|
|
test_with_mock "deletes file", ExAws, request: fn _req -> {:ok, %{status_code: 204}} end do
|
|
|
|
assert :ok = S3.delete_file("image.jpg")
|
|
|
|
assert_called(ExAws.request(:_))
|
|
|
|
end
|
|
|
|
end
|
2019-08-10 11:27:59 +00:00
|
|
|
end
|