Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

196 lines
8.0KB

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