2020-10-12 17:00:50 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-10-12 17:00:50 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-03-21 06:47:05 +00:00
|
|
|
defmodule Pleroma.Config.DeprecationWarningsTest do
|
2023-08-01 10:43:50 +00:00
|
|
|
use ExUnit.Case, async: false
|
2020-03-21 06:47:05 +00:00
|
|
|
use Pleroma.Tests.Helpers
|
|
|
|
|
|
|
|
import ExUnit.CaptureLog
|
|
|
|
|
2020-09-07 16:04:16 +00:00
|
|
|
alias Pleroma.Config
|
|
|
|
alias Pleroma.Config.DeprecationWarnings
|
|
|
|
|
2022-02-14 12:14:25 +00:00
|
|
|
describe "filter exiftool" do
|
|
|
|
test "gives warning when still used" do
|
|
|
|
clear_config(
|
|
|
|
[Pleroma.Upload, :filters],
|
|
|
|
[Pleroma.Upload.Filter.Exiftool]
|
|
|
|
)
|
|
|
|
|
|
|
|
assert capture_log(fn -> DeprecationWarnings.check_exiftool_filter() end) =~
|
|
|
|
"""
|
|
|
|
!!!DEPRECATION WARNING!!!
|
2024-04-16 18:37:00 +00:00
|
|
|
Your config is using Exiftool as a filter instead of Exiftool.StripMetadata. This should work for now, but you are advised to change to the new configuration to prevent possible issues later:
|
2022-02-14 12:14:25 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
config :pleroma, Pleroma.Upload,
|
|
|
|
filters: [Pleroma.Upload.Filter.Exiftool]
|
|
|
|
```
|
|
|
|
|
|
|
|
Is now
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
config :pleroma, Pleroma.Upload,
|
2024-04-16 18:37:00 +00:00
|
|
|
filters: [Pleroma.Upload.Filter.Exiftool.StripMetadata]
|
2022-02-14 12:14:25 +00:00
|
|
|
```
|
|
|
|
"""
|
|
|
|
end
|
|
|
|
|
2024-04-16 18:37:00 +00:00
|
|
|
test "changes setting to exiftool strip metadata" do
|
2022-02-14 12:14:25 +00:00
|
|
|
clear_config(
|
|
|
|
[Pleroma.Upload, :filters],
|
|
|
|
[Pleroma.Upload.Filter.Exiftool, Pleroma.Upload.Filter.Exiftool.ReadDescription]
|
|
|
|
)
|
|
|
|
|
|
|
|
expected_config = [
|
2024-04-16 18:37:00 +00:00
|
|
|
Pleroma.Upload.Filter.Exiftool.StripMetadata,
|
2022-02-14 12:14:25 +00:00
|
|
|
Pleroma.Upload.Filter.Exiftool.ReadDescription
|
|
|
|
]
|
|
|
|
|
|
|
|
capture_log(fn -> DeprecationWarnings.warn() end)
|
|
|
|
|
|
|
|
assert Config.get([Pleroma.Upload]) |> Keyword.get(:filters, []) == expected_config
|
|
|
|
end
|
|
|
|
|
|
|
|
test "doesn't give a warning with correct config" do
|
|
|
|
clear_config(
|
|
|
|
[Pleroma.Upload, :filters],
|
|
|
|
[
|
2024-04-16 18:37:00 +00:00
|
|
|
Pleroma.Upload.Filter.Exiftool.StripMetadata,
|
2022-02-14 12:14:25 +00:00
|
|
|
Pleroma.Upload.Filter.Exiftool.ReadDescription
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
assert capture_log(fn -> DeprecationWarnings.check_exiftool_filter() end) == ""
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-09-23 22:34:59 +00:00
|
|
|
describe "simple policy tuples" do
|
|
|
|
test "gives warning when there are still strings" do
|
|
|
|
clear_config([:mrf_simple],
|
|
|
|
media_removal: ["some.removal"],
|
|
|
|
media_nsfw: ["some.nsfw"],
|
|
|
|
federated_timeline_removal: ["some.tl.removal"],
|
|
|
|
report_removal: ["some.report.removal"],
|
|
|
|
reject: ["some.reject"],
|
|
|
|
followers_only: ["some.followers.only"],
|
|
|
|
accept: ["some.accept"],
|
|
|
|
avatar_removal: ["some.avatar.removal"],
|
|
|
|
banner_removal: ["some.banner.removal"],
|
|
|
|
reject_deletes: ["some.reject.deletes"]
|
|
|
|
)
|
|
|
|
|
|
|
|
assert capture_log(fn -> DeprecationWarnings.check_simple_policy_tuples() end) =~
|
|
|
|
"""
|
|
|
|
!!!DEPRECATION WARNING!!!
|
|
|
|
Your config is using strings in the SimplePolicy configuration instead of tuples. They should work for now, but you are advised to change to the new configuration to prevent possible issues later:
|
|
|
|
|
|
|
|
```
|
|
|
|
config :pleroma, :mrf_simple,
|
|
|
|
media_removal: ["instance.tld"],
|
|
|
|
media_nsfw: ["instance.tld"],
|
|
|
|
federated_timeline_removal: ["instance.tld"],
|
|
|
|
report_removal: ["instance.tld"],
|
|
|
|
reject: ["instance.tld"],
|
|
|
|
followers_only: ["instance.tld"],
|
|
|
|
accept: ["instance.tld"],
|
|
|
|
avatar_removal: ["instance.tld"],
|
|
|
|
banner_removal: ["instance.tld"],
|
|
|
|
reject_deletes: ["instance.tld"]
|
|
|
|
```
|
|
|
|
|
|
|
|
Is now
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
config :pleroma, :mrf_simple,
|
|
|
|
media_removal: [{"instance.tld", "Reason for media removal"}],
|
|
|
|
media_nsfw: [{"instance.tld", "Reason for media nsfw"}],
|
|
|
|
federated_timeline_removal: [{"instance.tld", "Reason for federated timeline removal"}],
|
|
|
|
report_removal: [{"instance.tld", "Reason for report removal"}],
|
|
|
|
reject: [{"instance.tld", "Reason for reject"}],
|
|
|
|
followers_only: [{"instance.tld", "Reason for followers only"}],
|
|
|
|
accept: [{"instance.tld", "Reason for accept"}],
|
|
|
|
avatar_removal: [{"instance.tld", "Reason for avatar removal"}],
|
|
|
|
banner_removal: [{"instance.tld", "Reason for banner removal"}],
|
|
|
|
reject_deletes: [{"instance.tld", "Reason for reject deletes"}]
|
|
|
|
```
|
|
|
|
"""
|
|
|
|
end
|
|
|
|
|
|
|
|
test "transforms config to tuples" do
|
|
|
|
clear_config([:mrf_simple],
|
|
|
|
media_removal: ["some.removal", {"some.other.instance", "Some reason"}]
|
|
|
|
)
|
|
|
|
|
|
|
|
expected_config = [
|
|
|
|
{:media_removal, [{"some.removal", ""}, {"some.other.instance", "Some reason"}]}
|
|
|
|
]
|
|
|
|
|
2020-10-05 09:26:08 +00:00
|
|
|
capture_log(fn -> DeprecationWarnings.warn() end)
|
2020-09-23 22:34:59 +00:00
|
|
|
|
|
|
|
assert Config.get([:mrf_simple]) == expected_config
|
|
|
|
end
|
|
|
|
|
|
|
|
test "doesn't give a warning with correct config" do
|
|
|
|
clear_config([:mrf_simple],
|
|
|
|
media_removal: [{"some.removal", ""}, {"some.other.instance", "Some reason"}]
|
|
|
|
)
|
|
|
|
|
|
|
|
assert capture_log(fn -> DeprecationWarnings.check_simple_policy_tuples() end) == ""
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-10-02 14:03:20 +00:00
|
|
|
describe "quarantined_instances tuples" do
|
|
|
|
test "gives warning when there are still strings" do
|
|
|
|
clear_config([:instance, :quarantined_instances], [
|
|
|
|
{"domain.com", "some reason"},
|
|
|
|
"somedomain.tld"
|
|
|
|
])
|
|
|
|
|
|
|
|
assert capture_log(fn -> DeprecationWarnings.check_quarantined_instances_tuples() end) =~
|
|
|
|
"""
|
|
|
|
!!!DEPRECATION WARNING!!!
|
|
|
|
Your config is using strings in the quarantined_instances configuration instead of tuples. They should work for now, but you are advised to change to the new configuration to prevent possible issues later:
|
|
|
|
|
|
|
|
```
|
|
|
|
config :pleroma, :instance,
|
|
|
|
quarantined_instances: ["instance.tld"]
|
|
|
|
```
|
|
|
|
|
|
|
|
Is now
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
config :pleroma, :instance,
|
|
|
|
quarantined_instances: [{"instance.tld", "Reason for quarantine"}]
|
|
|
|
```
|
|
|
|
"""
|
|
|
|
end
|
|
|
|
|
|
|
|
test "transforms config to tuples" do
|
|
|
|
clear_config([:instance, :quarantined_instances], [
|
|
|
|
{"domain.com", "some reason"},
|
|
|
|
"some.tld"
|
|
|
|
])
|
|
|
|
|
|
|
|
expected_config = [{"domain.com", "some reason"}, {"some.tld", ""}]
|
|
|
|
|
2020-10-05 09:26:08 +00:00
|
|
|
capture_log(fn -> DeprecationWarnings.warn() end)
|
2020-10-02 14:03:20 +00:00
|
|
|
|
|
|
|
assert Config.get([:instance, :quarantined_instances]) == expected_config
|
|
|
|
end
|
|
|
|
|
|
|
|
test "doesn't give a warning with correct config" do
|
|
|
|
clear_config([:instance, :quarantined_instances], [
|
|
|
|
{"domain.com", "some reason"},
|
|
|
|
{"some.tld", ""}
|
|
|
|
])
|
|
|
|
|
|
|
|
assert capture_log(fn -> DeprecationWarnings.check_quarantined_instances_tuples() end) == ""
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-10-02 18:35:51 +00:00
|
|
|
describe "transparency_exclusions tuples" do
|
|
|
|
test "gives warning when there are still strings" do
|
|
|
|
clear_config([:mrf, :transparency_exclusions], [
|
|
|
|
{"domain.com", "some reason"},
|
|
|
|
"somedomain.tld"
|
|
|
|
])
|
|
|
|
|
|
|
|
assert capture_log(fn -> DeprecationWarnings.check_transparency_exclusions_tuples() end) =~
|
|
|
|
"""
|
|
|
|
!!!DEPRECATION WARNING!!!
|
|
|
|
Your config is using strings in the transparency_exclusions configuration instead of tuples. They should work for now, but you are advised to change to the new configuration to prevent possible issues later:
|
|
|
|
|
|
|
|
```
|
|
|
|
config :pleroma, :mrf,
|
|
|
|
transparency_exclusions: ["instance.tld"]
|
|
|
|
```
|
|
|
|
|
|
|
|
Is now
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
config :pleroma, :mrf,
|
|
|
|
transparency_exclusions: [{"instance.tld", "Reason to exlude transparency"}]
|
|
|
|
```
|
|
|
|
"""
|
|
|
|
end
|
|
|
|
|
|
|
|
test "transforms config to tuples" do
|
|
|
|
clear_config([:mrf, :transparency_exclusions], [
|
|
|
|
{"domain.com", "some reason"},
|
|
|
|
"some.tld"
|
|
|
|
])
|
|
|
|
|
|
|
|
expected_config = [{"domain.com", "some reason"}, {"some.tld", ""}]
|
|
|
|
|
2020-10-05 09:26:08 +00:00
|
|
|
capture_log(fn -> DeprecationWarnings.warn() end)
|
2020-10-02 18:35:51 +00:00
|
|
|
|
|
|
|
assert Config.get([:mrf, :transparency_exclusions]) == expected_config
|
|
|
|
end
|
|
|
|
|
|
|
|
test "doesn't give a warning with correct config" do
|
|
|
|
clear_config([:mrf, :transparency_exclusions], [
|
|
|
|
{"domain.com", "some reason"},
|
|
|
|
{"some.tld", ""}
|
|
|
|
])
|
|
|
|
|
2020-10-03 09:55:16 +00:00
|
|
|
assert capture_log(fn -> DeprecationWarnings.check_transparency_exclusions_tuples() end) ==
|
|
|
|
""
|
2020-10-02 18:35:51 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-03-21 06:47:05 +00:00
|
|
|
test "check_old_mrf_config/0" do
|
2020-09-10 07:54:57 +00:00
|
|
|
clear_config([:instance, :rewrite_policy], [])
|
2020-03-21 06:47:05 +00:00
|
|
|
clear_config([:instance, :mrf_transparency], true)
|
|
|
|
clear_config([:instance, :mrf_transparency_exclusions], [])
|
|
|
|
|
2020-09-07 16:04:16 +00:00
|
|
|
assert capture_log(fn -> DeprecationWarnings.check_old_mrf_config() end) =~
|
2020-03-21 06:47:05 +00:00
|
|
|
"""
|
|
|
|
!!!DEPRECATION WARNING!!!
|
|
|
|
Your config is using old namespaces for MRF configuration. They should work for now, but you are advised to change to new namespaces to prevent possible issues later:
|
|
|
|
|
|
|
|
* `config :pleroma, :instance, rewrite_policy` is now `config :pleroma, :mrf, policies`
|
|
|
|
* `config :pleroma, :instance, mrf_transparency` is now `config :pleroma, :mrf, transparency`
|
|
|
|
* `config :pleroma, :instance, mrf_transparency_exclusions` is now `config :pleroma, :mrf, transparency_exclusions`
|
|
|
|
"""
|
|
|
|
end
|
|
|
|
|
|
|
|
test "move_namespace_and_warn/2" do
|
|
|
|
old_group1 = [:group, :key]
|
|
|
|
old_group2 = [:group, :key2]
|
|
|
|
old_group3 = [:group, :key3]
|
|
|
|
|
|
|
|
new_group1 = [:another_group, :key4]
|
|
|
|
new_group2 = [:another_group, :key5]
|
|
|
|
new_group3 = [:another_group, :key6]
|
|
|
|
|
|
|
|
clear_config(old_group1, 1)
|
|
|
|
clear_config(old_group2, 2)
|
|
|
|
clear_config(old_group3, 3)
|
|
|
|
|
|
|
|
clear_config(new_group1)
|
|
|
|
clear_config(new_group2)
|
|
|
|
clear_config(new_group3)
|
|
|
|
|
|
|
|
config_map = [
|
|
|
|
{old_group1, new_group1, "\n error :key"},
|
|
|
|
{old_group2, new_group2, "\n error :key2"},
|
|
|
|
{old_group3, new_group3, "\n error :key3"}
|
|
|
|
]
|
|
|
|
|
|
|
|
assert capture_log(fn ->
|
2020-09-07 16:04:16 +00:00
|
|
|
DeprecationWarnings.move_namespace_and_warn(
|
2020-03-21 06:47:05 +00:00
|
|
|
config_map,
|
|
|
|
"Warning preface"
|
|
|
|
)
|
|
|
|
end) =~ "Warning preface\n error :key\n error :key2\n error :key3"
|
|
|
|
|
2020-09-07 16:04:16 +00:00
|
|
|
assert Config.get(new_group1) == 1
|
|
|
|
assert Config.get(new_group2) == 2
|
|
|
|
assert Config.get(new_group3) == 3
|
2020-03-21 06:47:05 +00:00
|
|
|
end
|
2020-07-11 07:36:36 +00:00
|
|
|
|
|
|
|
test "check_media_proxy_whitelist_config/0" do
|
|
|
|
clear_config([:media_proxy, :whitelist], ["https://example.com", "example2.com"])
|
|
|
|
|
|
|
|
assert capture_log(fn ->
|
2020-09-07 16:04:16 +00:00
|
|
|
DeprecationWarnings.check_media_proxy_whitelist_config()
|
2020-07-11 07:36:36 +00:00
|
|
|
end) =~ "Your config is using old format (only domain) for MediaProxy whitelist option"
|
|
|
|
end
|
2020-09-07 16:04:16 +00:00
|
|
|
|
2020-09-22 16:19:29 +00:00
|
|
|
test "check_welcome_message_config/0" do
|
|
|
|
clear_config([:instance, :welcome_user_nickname], "LainChan")
|
|
|
|
|
|
|
|
assert capture_log(fn ->
|
|
|
|
DeprecationWarnings.check_welcome_message_config()
|
|
|
|
end) =~ "Your config is using the old namespace for Welcome messages configuration."
|
|
|
|
end
|
|
|
|
|
2020-09-22 16:22:15 +00:00
|
|
|
test "check_hellthread_threshold/0" do
|
|
|
|
clear_config([:mrf_hellthread, :threshold], 16)
|
|
|
|
|
|
|
|
assert capture_log(fn ->
|
|
|
|
DeprecationWarnings.check_hellthread_threshold()
|
|
|
|
end) =~ "You are using the old configuration mechanism for the hellthread filter."
|
|
|
|
end
|
|
|
|
|
2020-09-22 16:34:51 +00:00
|
|
|
test "check_activity_expiration_config/0" do
|
2021-02-01 16:33:40 +00:00
|
|
|
clear_config([Pleroma.ActivityExpiration], enabled: true)
|
2020-09-22 16:34:51 +00:00
|
|
|
|
|
|
|
assert capture_log(fn ->
|
|
|
|
DeprecationWarnings.check_activity_expiration_config()
|
|
|
|
end) =~ "Your config is using old namespace for activity expiration configuration."
|
|
|
|
end
|
|
|
|
|
2021-01-12 22:31:35 +00:00
|
|
|
test "check_uploders_s3_public_endpoint/0" do
|
2021-02-01 16:33:40 +00:00
|
|
|
clear_config([Pleroma.Uploaders.S3], public_endpoint: "https://fake.amazonaws.com/bucket/")
|
2021-01-12 22:31:35 +00:00
|
|
|
|
|
|
|
assert capture_log(fn ->
|
|
|
|
DeprecationWarnings.check_uploders_s3_public_endpoint()
|
|
|
|
end) =~
|
|
|
|
"Your config is using the old setting for controlling the URL of media uploaded to your S3 bucket."
|
|
|
|
end
|
2022-12-11 23:22:35 +00:00
|
|
|
|
|
|
|
test "check_http_adapter/0" do
|
2022-12-11 23:50:31 +00:00
|
|
|
Application.put_env(:tesla, :adapter, Gun)
|
2022-12-11 23:22:35 +00:00
|
|
|
|
|
|
|
assert capture_log(fn ->
|
|
|
|
DeprecationWarnings.check_http_adapter()
|
|
|
|
end) =~ "Your config is using a custom tesla adapter"
|
2022-12-11 23:50:31 +00:00
|
|
|
|
|
|
|
Application.put_env(:tesla, :adapter, Tesla.Mock)
|
2022-12-11 23:22:35 +00:00
|
|
|
end
|
2024-04-02 09:54:53 +00:00
|
|
|
|
2024-04-02 10:36:26 +00:00
|
|
|
describe "check_uploader_base_url_set/0" do
|
|
|
|
test "should error if the base_url is not set" do
|
|
|
|
clear_config([Pleroma.Upload, :base_url], nil)
|
|
|
|
|
|
|
|
# we need to capture the error
|
|
|
|
assert_raise ArgumentError, fn ->
|
|
|
|
assert capture_log(fn ->
|
|
|
|
DeprecationWarnings.check_uploader_base_url_set()
|
|
|
|
end) =~ "Your config does not specify a base_url for uploads!"
|
|
|
|
end
|
|
|
|
end
|
2024-04-02 09:54:53 +00:00
|
|
|
|
2024-04-02 10:36:26 +00:00
|
|
|
test "should not error if the base_url is set" do
|
|
|
|
clear_config([Pleroma.Upload, :base_url], "https://example.com")
|
|
|
|
|
|
|
|
refute capture_log(fn ->
|
2024-04-02 09:54:53 +00:00
|
|
|
DeprecationWarnings.check_uploader_base_url_set()
|
|
|
|
end) =~ "Your config does not specify a base_url for uploads!"
|
|
|
|
end
|
|
|
|
|
2024-04-02 10:36:26 +00:00
|
|
|
test "should not error if local uploader is not used" do
|
|
|
|
clear_config([Pleroma.Upload, :base_url], nil)
|
|
|
|
clear_config([Pleroma.Upload, :uploader], Pleroma.Uploaders.S3)
|
2024-04-02 10:23:57 +00:00
|
|
|
|
2024-04-02 10:36:26 +00:00
|
|
|
refute capture_log(fn ->
|
|
|
|
DeprecationWarnings.check_uploader_base_url_set()
|
|
|
|
end) =~ "Your config does not specify a base_url for uploads!"
|
|
|
|
end
|
2024-04-02 09:54:53 +00:00
|
|
|
end
|
|
|
|
|
2024-04-02 10:36:26 +00:00
|
|
|
describe "check_uploader_base_url_is_not_base_domain/0" do
|
|
|
|
test "should error if the akkoma domain is the same as the upload domain" do
|
|
|
|
clear_config([Pleroma.Upload, :base_url], "http://localhost")
|
2024-04-02 09:54:53 +00:00
|
|
|
|
2024-04-02 10:36:26 +00:00
|
|
|
assert capture_log(fn ->
|
|
|
|
DeprecationWarnings.check_uploader_base_url_is_not_base_domain()
|
|
|
|
end) =~ "Your Akkoma Host and your Upload base_url's host are the same!"
|
|
|
|
end
|
2024-04-02 09:54:53 +00:00
|
|
|
|
2024-04-02 10:36:26 +00:00
|
|
|
test "should not error if the local uploader is not used" do
|
|
|
|
clear_config([Pleroma.Upload, :base_url], "http://localhost")
|
|
|
|
clear_config([Pleroma.Upload, :uploader], Pleroma.Uploaders.S3)
|
2024-04-02 09:54:53 +00:00
|
|
|
|
2024-04-02 10:36:26 +00:00
|
|
|
refute capture_log(fn ->
|
|
|
|
DeprecationWarnings.check_uploader_base_url_is_not_base_domain()
|
|
|
|
end) =~ "Your Akkoma Host and your Upload base_url's host are the same!"
|
|
|
|
end
|
2024-04-02 10:23:57 +00:00
|
|
|
|
2024-04-02 10:36:26 +00:00
|
|
|
test "should not error if the akkoma domain is different from the upload domain" do
|
|
|
|
clear_config([Pleroma.Upload, :base_url], "https://media.localhost")
|
|
|
|
clear_config([Pleroma.Upload, :uploader], Pleroma.Uploaders.Local)
|
|
|
|
|
|
|
|
refute capture_log(fn ->
|
|
|
|
DeprecationWarnings.check_uploader_base_url_is_not_base_domain()
|
|
|
|
end) =~ "Your Akkoma Host and your Upload base_url's host are the same!"
|
|
|
|
|
|
|
|
clear_config([Pleroma.Upload, :base_url])
|
|
|
|
end
|
2024-04-02 09:54:53 +00:00
|
|
|
end
|
2020-03-21 06:47:05 +00:00
|
|
|
end
|