2019-07-10 05:13:23 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-07-10 05:13:23 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-06-14 15:45:05 +00:00
|
|
|
defmodule Mix.Tasks.Pleroma.ConfigTest do
|
|
|
|
use Pleroma.DataCase
|
2020-01-17 08:45:44 +00:00
|
|
|
|
2020-01-16 05:50:27 +00:00
|
|
|
alias Pleroma.ConfigDB
|
2019-06-14 15:45:05 +00:00
|
|
|
alias Pleroma.Repo
|
|
|
|
|
|
|
|
setup_all do
|
|
|
|
Mix.shell(Mix.Shell.Process)
|
|
|
|
|
|
|
|
on_exit(fn ->
|
|
|
|
Mix.shell(Mix.Shell.IO)
|
|
|
|
Application.delete_env(:pleroma, :first_setting)
|
|
|
|
Application.delete_env(:pleroma, :second_setting)
|
|
|
|
end)
|
|
|
|
|
2019-09-29 08:17:38 +00:00
|
|
|
:ok
|
2019-06-14 15:45:05 +00:00
|
|
|
end
|
|
|
|
|
2020-03-18 17:30:31 +00:00
|
|
|
clear_config_all(:configurable_from_database, true)
|
2019-08-19 15:34:29 +00:00
|
|
|
|
2020-01-18 13:55:33 +00:00
|
|
|
test "error if file with custom settings doesn't exist" do
|
2020-01-23 12:13:27 +00:00
|
|
|
Mix.Tasks.Pleroma.Config.migrate_to_db("config/not_existance_config_file.exs")
|
2020-01-18 13:55:33 +00:00
|
|
|
|
|
|
|
assert_receive {:mix_shell, :info,
|
|
|
|
[
|
2020-01-23 12:13:27 +00:00
|
|
|
"To migrate settings, you must define custom settings in config/not_existance_config_file.exs."
|
2020-01-18 13:55:33 +00:00
|
|
|
]},
|
|
|
|
15
|
2020-01-17 08:45:44 +00:00
|
|
|
end
|
|
|
|
|
2020-01-23 14:23:02 +00:00
|
|
|
describe "migrate_to_db/1" do
|
|
|
|
setup do
|
|
|
|
initial = Application.get_env(:quack, :level)
|
|
|
|
on_exit(fn -> Application.put_env(:quack, :level, initial) end)
|
|
|
|
end
|
2019-06-14 15:45:05 +00:00
|
|
|
|
2020-01-23 14:23:02 +00:00
|
|
|
test "settings are migrated to db" do
|
|
|
|
assert Repo.all(ConfigDB) == []
|
2019-06-14 15:45:05 +00:00
|
|
|
|
2020-01-23 14:23:02 +00:00
|
|
|
Mix.Tasks.Pleroma.Config.migrate_to_db("test/fixtures/config/temp.secret.exs")
|
2019-06-14 15:45:05 +00:00
|
|
|
|
2020-01-23 14:23:02 +00:00
|
|
|
config1 = ConfigDB.get_by_params(%{group: ":pleroma", key: ":first_setting"})
|
|
|
|
config2 = ConfigDB.get_by_params(%{group: ":pleroma", key: ":second_setting"})
|
|
|
|
config3 = ConfigDB.get_by_params(%{group: ":quack", key: ":level"})
|
|
|
|
refute ConfigDB.get_by_params(%{group: ":pleroma", key: "Pleroma.Repo"})
|
|
|
|
|
|
|
|
assert ConfigDB.from_binary(config1.value) == [key: "value", key2: [Repo]]
|
|
|
|
assert ConfigDB.from_binary(config2.value) == [key: "value2", key2: ["Activity"]]
|
|
|
|
assert ConfigDB.from_binary(config3.value) == :info
|
|
|
|
end
|
|
|
|
|
|
|
|
test "config table is truncated before migration" do
|
|
|
|
ConfigDB.create(%{
|
|
|
|
group: ":pleroma",
|
|
|
|
key: ":first_setting",
|
|
|
|
value: [key: "value", key2: ["Activity"]]
|
|
|
|
})
|
|
|
|
|
|
|
|
assert Repo.aggregate(ConfigDB, :count, :id) == 1
|
|
|
|
|
|
|
|
Mix.Tasks.Pleroma.Config.migrate_to_db("test/fixtures/config/temp.secret.exs")
|
|
|
|
|
|
|
|
config = ConfigDB.get_by_params(%{group: ":pleroma", key: ":first_setting"})
|
|
|
|
assert ConfigDB.from_binary(config.value) == [key: "value", key2: [Repo]]
|
|
|
|
end
|
2019-06-14 15:45:05 +00:00
|
|
|
end
|
|
|
|
|
2019-12-10 06:54:10 +00:00
|
|
|
describe "with deletion temp file" do
|
|
|
|
setup do
|
|
|
|
temp_file = "config/temp.exported_from_db.secret.exs"
|
|
|
|
|
|
|
|
on_exit(fn ->
|
|
|
|
:ok = File.rm(temp_file)
|
|
|
|
end)
|
|
|
|
|
|
|
|
{:ok, temp_file: temp_file}
|
|
|
|
end
|
|
|
|
|
|
|
|
test "settings are migrated to file and deleted from db", %{temp_file: temp_file} do
|
2020-01-16 05:50:27 +00:00
|
|
|
ConfigDB.create(%{
|
2019-12-10 06:54:10 +00:00
|
|
|
group: ":pleroma",
|
|
|
|
key: ":setting_first",
|
|
|
|
value: [key: "value", key2: ["Activity"]]
|
|
|
|
})
|
|
|
|
|
2020-01-16 05:50:27 +00:00
|
|
|
ConfigDB.create(%{
|
2019-12-10 06:54:10 +00:00
|
|
|
group: ":pleroma",
|
|
|
|
key: ":setting_second",
|
|
|
|
value: [key: "value2", key2: [Repo]]
|
|
|
|
})
|
|
|
|
|
2020-01-16 05:50:27 +00:00
|
|
|
ConfigDB.create(%{group: ":quack", key: ":level", value: :info})
|
2019-12-10 06:54:10 +00:00
|
|
|
|
|
|
|
Mix.Tasks.Pleroma.Config.run(["migrate_from_db", "--env", "temp", "-d"])
|
|
|
|
|
2020-01-16 05:50:27 +00:00
|
|
|
assert Repo.all(ConfigDB) == []
|
2019-12-10 06:54:10 +00:00
|
|
|
|
|
|
|
file = File.read!(temp_file)
|
|
|
|
assert file =~ "config :pleroma, :setting_first,"
|
|
|
|
assert file =~ "config :pleroma, :setting_second,"
|
|
|
|
assert file =~ "config :quack, :level, :info"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "load a settings with large values and pass to file", %{temp_file: temp_file} do
|
2020-01-16 05:50:27 +00:00
|
|
|
ConfigDB.create(%{
|
2019-12-10 06:54:10 +00:00
|
|
|
group: ":pleroma",
|
|
|
|
key: ":instance",
|
|
|
|
value: [
|
|
|
|
name: "Pleroma",
|
|
|
|
email: "example@example.com",
|
|
|
|
notify_email: "noreply@example.com",
|
|
|
|
description: "A Pleroma instance, an alternative fediverse server",
|
|
|
|
limit: 5_000,
|
|
|
|
chat_limit: 5_000,
|
|
|
|
remote_limit: 100_000,
|
|
|
|
upload_limit: 16_000_000,
|
|
|
|
avatar_upload_limit: 2_000_000,
|
|
|
|
background_upload_limit: 4_000_000,
|
|
|
|
banner_upload_limit: 4_000_000,
|
|
|
|
poll_limits: %{
|
|
|
|
max_options: 20,
|
|
|
|
max_option_chars: 200,
|
|
|
|
min_expiration: 0,
|
|
|
|
max_expiration: 365 * 24 * 60 * 60
|
|
|
|
},
|
|
|
|
registrations_open: true,
|
|
|
|
federating: true,
|
|
|
|
federation_incoming_replies_max_depth: 100,
|
|
|
|
federation_reachability_timeout_days: 7,
|
|
|
|
federation_publisher_modules: [Pleroma.Web.ActivityPub.Publisher],
|
|
|
|
allow_relay: true,
|
|
|
|
rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
|
|
|
|
public: true,
|
|
|
|
quarantined_instances: [],
|
|
|
|
managed_config: true,
|
|
|
|
static_dir: "instance/static/",
|
|
|
|
allowed_post_formats: ["text/plain", "text/html", "text/markdown", "text/bbcode"],
|
|
|
|
mrf_transparency: true,
|
|
|
|
mrf_transparency_exclusions: [],
|
|
|
|
autofollowed_nicknames: [],
|
|
|
|
max_pinned_statuses: 1,
|
2020-02-11 21:39:19 +00:00
|
|
|
attachment_links: false,
|
2019-12-10 06:54:10 +00:00
|
|
|
welcome_user_nickname: nil,
|
|
|
|
welcome_message: nil,
|
|
|
|
max_report_comment_size: 1000,
|
|
|
|
safe_dm_mentions: false,
|
|
|
|
healthcheck: false,
|
|
|
|
remote_post_retention_days: 90,
|
|
|
|
skip_thread_containment: true,
|
|
|
|
limit_to_local_content: :unauthenticated,
|
|
|
|
user_bio_length: 5000,
|
|
|
|
user_name_length: 100,
|
|
|
|
max_account_fields: 10,
|
|
|
|
max_remote_account_fields: 20,
|
|
|
|
account_field_name_length: 512,
|
|
|
|
account_field_value_length: 2048,
|
|
|
|
external_user_synchronization: true,
|
|
|
|
extended_nickname_format: true,
|
|
|
|
multi_factor_authentication: [
|
|
|
|
totp: [
|
|
|
|
# digits 6 or 8
|
|
|
|
digits: 6,
|
|
|
|
period: 30
|
|
|
|
],
|
|
|
|
backup_codes: [
|
|
|
|
number: 2,
|
|
|
|
length: 6
|
|
|
|
]
|
2019-12-09 19:29:44 +00:00
|
|
|
]
|
|
|
|
]
|
2019-12-10 06:54:10 +00:00
|
|
|
})
|
2019-12-09 19:29:44 +00:00
|
|
|
|
2019-12-10 06:54:10 +00:00
|
|
|
Mix.Tasks.Pleroma.Config.run(["migrate_from_db", "--env", "temp", "-d"])
|
2019-12-09 19:29:44 +00:00
|
|
|
|
2020-01-16 05:50:27 +00:00
|
|
|
assert Repo.all(ConfigDB) == []
|
2019-12-10 06:54:10 +00:00
|
|
|
assert File.exists?(temp_file)
|
|
|
|
{:ok, file} = File.read(temp_file)
|
2019-12-09 19:29:44 +00:00
|
|
|
|
2020-01-18 13:55:33 +00:00
|
|
|
header =
|
|
|
|
if Code.ensure_loaded?(Config.Reader) do
|
|
|
|
"import Config"
|
|
|
|
else
|
|
|
|
"use Mix.Config"
|
|
|
|
end
|
|
|
|
|
2019-12-10 06:54:10 +00:00
|
|
|
assert file ==
|
2020-02-11 21:39:19 +00:00
|
|
|
"#{header}\n\nconfig :pleroma, :instance,\n name: \"Pleroma\",\n email: \"example@example.com\",\n notify_email: \"noreply@example.com\",\n description: \"A Pleroma instance, an alternative fediverse server\",\n limit: 5000,\n chat_limit: 5000,\n remote_limit: 100_000,\n upload_limit: 16_000_000,\n avatar_upload_limit: 2_000_000,\n background_upload_limit: 4_000_000,\n banner_upload_limit: 4_000_000,\n poll_limits: %{\n max_expiration: 31_536_000,\n max_option_chars: 200,\n max_options: 20,\n min_expiration: 0\n },\n registrations_open: true,\n federating: true,\n federation_incoming_replies_max_depth: 100,\n federation_reachability_timeout_days: 7,\n federation_publisher_modules: [Pleroma.Web.ActivityPub.Publisher],\n allow_relay: true,\n rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,\n public: true,\n quarantined_instances: [],\n managed_config: true,\n static_dir: \"instance/static/\",\n allowed_post_formats: [\"text/plain\", \"text/html\", \"text/markdown\", \"text/bbcode\"],\n mrf_transparency: true,\n mrf_transparency_exclusions: [],\n autofollowed_nicknames: [],\n max_pinned_statuses: 1,\n attachment_links: false,\n welcome_user_nickname: nil,\n welcome_message: nil,\n max_report_comment_size: 1000,\n safe_dm_mentions: false,\n healthcheck: false,\n remote_post_retention_days: 90,\n skip_thread_containment: true,\n limit_to_local_content: :unauthenticated,\n user_bio_length: 5000,\n user_name_length: 100,\n max_account_fields: 10,\n max_remote_account_fields: 20,\n account_field_name_length: 512,\n account_field_value_length: 2048,\n external_user_synchronization: true,\n extended_nickname_format: true,\n multi_factor_authentication: [\n totp: [digits: 6, period: 30],\n backup_codes: [number: 2, length: 6]\n ]\n"
|
2019-12-10 06:54:10 +00:00
|
|
|
end
|
2019-12-09 19:29:44 +00:00
|
|
|
end
|
2019-06-14 15:45:05 +00:00
|
|
|
end
|