mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 19:29:11 +00:00
98cb255d12
OTP builds to 1.15
Changelog entry
Ensure policies are fully loaded
Fix :warn
use main branch for linkify
Fix warn in tests
Migrations for phoenix 1.17
Revert "Migrations for phoenix 1.17"
This reverts commit 6a3b2f15b7
.
Oban upgrade
Add default empty whitelist
mix format
limit test to amd64
OTP 26 tests for 1.15
use OTP_VERSION tag
baka
just 1.15
Massive deps update
Update locale, deps
Mix format
shell????
multiline???
?
max cases 1
use assert_recieve
don't put_env in async tests
don't async conn/fs tests
mix format
FIx some uploader issues
Fix tests
292 lines
10 KiB
Elixir
292 lines
10 KiB
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Config.DeprecationWarningsTest do
|
|
use ExUnit.Case, async: false
|
|
use Pleroma.Tests.Helpers
|
|
|
|
import ExUnit.CaptureLog
|
|
|
|
alias Pleroma.Config
|
|
alias Pleroma.Config.DeprecationWarnings
|
|
|
|
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"}]}
|
|
]
|
|
|
|
capture_log(fn -> DeprecationWarnings.warn() end)
|
|
|
|
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
|
|
|
|
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", ""}]
|
|
|
|
capture_log(fn -> DeprecationWarnings.warn() end)
|
|
|
|
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
|
|
|
|
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", ""}]
|
|
|
|
capture_log(fn -> DeprecationWarnings.warn() end)
|
|
|
|
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", ""}
|
|
])
|
|
|
|
assert capture_log(fn -> DeprecationWarnings.check_transparency_exclusions_tuples() end) ==
|
|
""
|
|
end
|
|
end
|
|
|
|
test "check_old_mrf_config/0" do
|
|
clear_config([:instance, :rewrite_policy], [])
|
|
clear_config([:instance, :mrf_transparency], true)
|
|
clear_config([:instance, :mrf_transparency_exclusions], [])
|
|
|
|
assert capture_log(fn -> DeprecationWarnings.check_old_mrf_config() end) =~
|
|
"""
|
|
!!!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 ->
|
|
DeprecationWarnings.move_namespace_and_warn(
|
|
config_map,
|
|
"Warning preface"
|
|
)
|
|
end) =~ "Warning preface\n error :key\n error :key2\n error :key3"
|
|
|
|
assert Config.get(new_group1) == 1
|
|
assert Config.get(new_group2) == 2
|
|
assert Config.get(new_group3) == 3
|
|
end
|
|
|
|
test "check_media_proxy_whitelist_config/0" do
|
|
clear_config([:media_proxy, :whitelist], ["https://example.com", "example2.com"])
|
|
|
|
assert capture_log(fn ->
|
|
DeprecationWarnings.check_media_proxy_whitelist_config()
|
|
end) =~ "Your config is using old format (only domain) for MediaProxy whitelist option"
|
|
end
|
|
|
|
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
|
|
|
|
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
|
|
|
|
test "check_activity_expiration_config/0" do
|
|
clear_config([Pleroma.ActivityExpiration], enabled: true)
|
|
|
|
assert capture_log(fn ->
|
|
DeprecationWarnings.check_activity_expiration_config()
|
|
end) =~ "Your config is using old namespace for activity expiration configuration."
|
|
end
|
|
|
|
test "check_uploders_s3_public_endpoint/0" do
|
|
clear_config([Pleroma.Uploaders.S3], public_endpoint: "https://fake.amazonaws.com/bucket/")
|
|
|
|
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
|
|
|
|
test "check_http_adapter/0" do
|
|
Application.put_env(:tesla, :adapter, Gun)
|
|
|
|
assert capture_log(fn ->
|
|
DeprecationWarnings.check_http_adapter()
|
|
end) =~ "Your config is using a custom tesla adapter"
|
|
|
|
Application.put_env(:tesla, :adapter, Tesla.Mock)
|
|
end
|
|
end
|