ff921ecfaa675f720774066e3596351ef1c36479
[akkoma] / test / tasks / config_test.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Mix.Tasks.Pleroma.ConfigTest do
6 use Pleroma.DataCase
7
8 import ExUnit.CaptureLog
9
10 alias Pleroma.ConfigDB
11 alias Pleroma.Repo
12
13 setup_all do
14 Mix.shell(Mix.Shell.Process)
15
16 on_exit(fn ->
17 Mix.shell(Mix.Shell.IO)
18 Application.delete_env(:pleroma, :first_setting)
19 Application.delete_env(:pleroma, :second_setting)
20 end)
21
22 :ok
23 end
24
25 clear_config_all(:configurable_from_database) do
26 Pleroma.Config.put(:configurable_from_database, true)
27 end
28
29 test "warning if file with custom settings doesn't exist" do
30 assert capture_log(fn -> Mix.Tasks.Pleroma.Config.run(["migrate_to_db"]) end) =~
31 "to migrate settings, you must define custom settings in config/test.secret.exs"
32 end
33
34 test "settings are migrated to db" do
35 initial = Application.get_env(:quack, :level)
36 on_exit(fn -> Application.put_env(:quack, :level, initial) end)
37 assert Repo.all(ConfigDB) == []
38
39 Mix.Tasks.Pleroma.Config.migrate_to_db("test/fixtures/config/temp.secret.exs")
40
41 config1 = ConfigDB.get_by_params(%{group: ":pleroma", key: ":first_setting"})
42 config2 = ConfigDB.get_by_params(%{group: ":pleroma", key: ":second_setting"})
43 config3 = ConfigDB.get_by_params(%{group: ":quack", key: ":level"})
44 refute ConfigDB.get_by_params(%{group: ":pleroma", key: "Pleroma.Repo"})
45
46 assert ConfigDB.from_binary(config1.value) == [key: "value", key2: [Repo]]
47 assert ConfigDB.from_binary(config2.value) == [key: "value2", key2: ["Activity"]]
48 assert ConfigDB.from_binary(config3.value) == :info
49 end
50
51 describe "with deletion temp file" do
52 setup do
53 temp_file = "config/temp.exported_from_db.secret.exs"
54
55 on_exit(fn ->
56 :ok = File.rm(temp_file)
57 end)
58
59 {:ok, temp_file: temp_file}
60 end
61
62 test "settings are migrated to file and deleted from db", %{temp_file: temp_file} do
63 ConfigDB.create(%{
64 group: ":pleroma",
65 key: ":setting_first",
66 value: [key: "value", key2: ["Activity"]]
67 })
68
69 ConfigDB.create(%{
70 group: ":pleroma",
71 key: ":setting_second",
72 value: [key: "value2", key2: [Repo]]
73 })
74
75 ConfigDB.create(%{group: ":quack", key: ":level", value: :info})
76
77 Mix.Tasks.Pleroma.Config.run(["migrate_from_db", "--env", "temp", "-d"])
78
79 assert Repo.all(ConfigDB) == []
80
81 file = File.read!(temp_file)
82 assert file =~ "config :pleroma, :setting_first,"
83 assert file =~ "config :pleroma, :setting_second,"
84 assert file =~ "config :quack, :level, :info"
85 end
86
87 test "load a settings with large values and pass to file", %{temp_file: temp_file} do
88 ConfigDB.create(%{
89 group: ":pleroma",
90 key: ":instance",
91 value: [
92 name: "Pleroma",
93 email: "example@example.com",
94 notify_email: "noreply@example.com",
95 description: "A Pleroma instance, an alternative fediverse server",
96 limit: 5_000,
97 chat_limit: 5_000,
98 remote_limit: 100_000,
99 upload_limit: 16_000_000,
100 avatar_upload_limit: 2_000_000,
101 background_upload_limit: 4_000_000,
102 banner_upload_limit: 4_000_000,
103 poll_limits: %{
104 max_options: 20,
105 max_option_chars: 200,
106 min_expiration: 0,
107 max_expiration: 365 * 24 * 60 * 60
108 },
109 registrations_open: true,
110 federating: true,
111 federation_incoming_replies_max_depth: 100,
112 federation_reachability_timeout_days: 7,
113 federation_publisher_modules: [Pleroma.Web.ActivityPub.Publisher],
114 allow_relay: true,
115 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
116 public: true,
117 quarantined_instances: [],
118 managed_config: true,
119 static_dir: "instance/static/",
120 allowed_post_formats: ["text/plain", "text/html", "text/markdown", "text/bbcode"],
121 mrf_transparency: true,
122 mrf_transparency_exclusions: [],
123 autofollowed_nicknames: [],
124 max_pinned_statuses: 1,
125 no_attachment_links: true,
126 welcome_user_nickname: nil,
127 welcome_message: nil,
128 max_report_comment_size: 1000,
129 safe_dm_mentions: false,
130 healthcheck: false,
131 remote_post_retention_days: 90,
132 skip_thread_containment: true,
133 limit_to_local_content: :unauthenticated,
134 user_bio_length: 5000,
135 user_name_length: 100,
136 max_account_fields: 10,
137 max_remote_account_fields: 20,
138 account_field_name_length: 512,
139 account_field_value_length: 2048,
140 external_user_synchronization: true,
141 extended_nickname_format: true,
142 multi_factor_authentication: [
143 totp: [
144 # digits 6 or 8
145 digits: 6,
146 period: 30
147 ],
148 backup_codes: [
149 number: 2,
150 length: 6
151 ]
152 ]
153 ]
154 })
155
156 Mix.Tasks.Pleroma.Config.run(["migrate_from_db", "--env", "temp", "-d"])
157
158 assert Repo.all(ConfigDB) == []
159 assert File.exists?(temp_file)
160 {:ok, file} = File.read(temp_file)
161
162 assert file ==
163 "use Mix.Config\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 no_attachment_links: true,\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"
164 end
165 end
166 end