1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Mix.Tasks.Pleroma.ConfigTest do
12 Mix.shell(Mix.Shell.Process)
15 Mix.shell(Mix.Shell.IO)
16 Application.delete_env(:pleroma, :first_setting)
17 Application.delete_env(:pleroma, :second_setting)
23 clear_config_all(:configurable_from_database) do
24 Pleroma.Config.put(:configurable_from_database, true)
27 test "error if file with custom settings doesn't exist" do
28 Mix.Tasks.Pleroma.Config.migrate_to_db("config/not_existance_config_file.exs")
30 assert_receive {:mix_shell, :info,
32 "To migrate settings, you must define custom settings in config/not_existance_config_file.exs."
37 describe "migrate_to_db/1" do
39 initial = Application.get_env(:quack, :level)
40 on_exit(fn -> Application.put_env(:quack, :level, initial) end)
43 test "settings are migrated to db" do
44 assert Repo.all(ConfigDB) == []
46 Mix.Tasks.Pleroma.Config.migrate_to_db("test/fixtures/config/temp.secret.exs")
48 config1 = ConfigDB.get_by_params(%{group: ":pleroma", key: ":first_setting"})
49 config2 = ConfigDB.get_by_params(%{group: ":pleroma", key: ":second_setting"})
50 config3 = ConfigDB.get_by_params(%{group: ":quack", key: ":level"})
51 refute ConfigDB.get_by_params(%{group: ":pleroma", key: "Pleroma.Repo"})
53 assert ConfigDB.from_binary(config1.value) == [key: "value", key2: [Repo]]
54 assert ConfigDB.from_binary(config2.value) == [key: "value2", key2: ["Activity"]]
55 assert ConfigDB.from_binary(config3.value) == :info
58 test "config table is truncated before migration" do
61 key: ":first_setting",
62 value: [key: "value", key2: ["Activity"]]
65 assert Repo.aggregate(ConfigDB, :count, :id) == 1
67 Mix.Tasks.Pleroma.Config.migrate_to_db("test/fixtures/config/temp.secret.exs")
69 config = ConfigDB.get_by_params(%{group: ":pleroma", key: ":first_setting"})
70 assert ConfigDB.from_binary(config.value) == [key: "value", key2: [Repo]]
74 describe "with deletion temp file" do
76 temp_file = "config/temp.exported_from_db.secret.exs"
79 :ok = File.rm(temp_file)
82 {:ok, temp_file: temp_file}
85 test "settings are migrated to file and deleted from db", %{temp_file: temp_file} do
88 key: ":setting_first",
89 value: [key: "value", key2: ["Activity"]]
94 key: ":setting_second",
95 value: [key: "value2", key2: [Repo]]
98 ConfigDB.create(%{group: ":quack", key: ":level", value: :info})
100 Mix.Tasks.Pleroma.Config.run(["migrate_from_db", "--env", "temp", "-d"])
102 assert Repo.all(ConfigDB) == []
104 file = File.read!(temp_file)
105 assert file =~ "config :pleroma, :setting_first,"
106 assert file =~ "config :pleroma, :setting_second,"
107 assert file =~ "config :quack, :level, :info"
110 test "load a settings with large values and pass to file", %{temp_file: temp_file} do
116 email: "example@example.com",
117 notify_email: "noreply@example.com",
118 description: "A Pleroma instance, an alternative fediverse server",
121 remote_limit: 100_000,
122 upload_limit: 16_000_000,
123 avatar_upload_limit: 2_000_000,
124 background_upload_limit: 4_000_000,
125 banner_upload_limit: 4_000_000,
128 max_option_chars: 200,
130 max_expiration: 365 * 24 * 60 * 60
132 registrations_open: true,
134 federation_incoming_replies_max_depth: 100,
135 federation_reachability_timeout_days: 7,
136 federation_publisher_modules: [Pleroma.Web.ActivityPub.Publisher],
138 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
140 quarantined_instances: [],
141 managed_config: true,
142 static_dir: "instance/static/",
143 allowed_post_formats: ["text/plain", "text/html", "text/markdown", "text/bbcode"],
144 mrf_transparency: true,
145 mrf_transparency_exclusions: [],
146 autofollowed_nicknames: [],
147 max_pinned_statuses: 1,
148 attachment_links: false,
149 welcome_user_nickname: nil,
150 welcome_message: nil,
151 max_report_comment_size: 1000,
152 safe_dm_mentions: false,
154 remote_post_retention_days: 90,
155 skip_thread_containment: true,
156 limit_to_local_content: :unauthenticated,
157 user_bio_length: 5000,
158 user_name_length: 100,
159 max_account_fields: 10,
160 max_remote_account_fields: 20,
161 account_field_name_length: 512,
162 account_field_value_length: 2048,
163 external_user_synchronization: true,
164 extended_nickname_format: true,
165 multi_factor_authentication: [
179 Mix.Tasks.Pleroma.Config.run(["migrate_from_db", "--env", "temp", "-d"])
181 assert Repo.all(ConfigDB) == []
182 assert File.exists?(temp_file)
183 {:ok, file} = File.read(temp_file)
186 if Code.ensure_loaded?(Config.Reader) do
193 "#{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"