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