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