test fixes after rebase

This commit is contained in:
Alexander 2019-12-10 09:54:10 +03:00 committed by Alexander Strizhakov
parent fea734ca70
commit e412d2f152
No known key found for this signature in database
GPG Key ID: 022896A53AEF1381
1 changed files with 102 additions and 97 deletions

View File

@ -44,115 +44,120 @@ test "settings are migrated to db" do
assert Config.from_binary(config3.value) == :info assert Config.from_binary(config3.value) == :info
end end
test "settings are migrated to file and deleted from db" do describe "with deletion temp file" do
env = "temp" setup do
config_file = "config/#{env}.exported_from_db.secret.exs" temp_file = "config/temp.exported_from_db.secret.exs"
on_exit(fn -> on_exit(fn ->
:ok = File.rm(config_file) :ok = File.rm(temp_file)
end) end)
Config.create(%{ {:ok, temp_file: temp_file}
group: ":pleroma", end
key: ":setting_first",
value: [key: "value", key2: ["Activity"]]
})
Config.create(%{ test "settings are migrated to file and deleted from db", %{temp_file: temp_file} do
group: ":pleroma", Config.create(%{
key: ":setting_second", group: ":pleroma",
value: [key: "value2", key2: [Repo]] key: ":setting_first",
}) value: [key: "value", key2: ["Activity"]]
})
Config.create(%{group: ":quack", key: ":level", value: :info}) Config.create(%{
group: ":pleroma",
key: ":setting_second",
value: [key: "value2", key2: [Repo]]
})
Mix.Tasks.Pleroma.Config.run(["migrate_from_db", "--env", env, "-d"]) Config.create(%{group: ":quack", key: ":level", value: :info})
assert Repo.all(Config) == [] Mix.Tasks.Pleroma.Config.run(["migrate_from_db", "--env", "temp", "-d"])
file = File.read!(config_file) assert Repo.all(Config) == []
assert file =~ "config :pleroma, :setting_first,"
assert file =~ "config :pleroma, :setting_second,"
assert file =~ "config :quack, :level, :info"
end
test "load a settings with large values and pass to file", %{temp_file: temp_file} do file = File.read!(temp_file)
Config.create(%{ assert file =~ "config :pleroma, :setting_first,"
group: "pleroma", assert file =~ "config :pleroma, :setting_second,"
key: ":instance", assert file =~ "config :quack, :level, :info"
value: [ end
name: "Pleroma",
email: "example@example.com", test "load a settings with large values and pass to file", %{temp_file: temp_file} do
notify_email: "noreply@example.com", Config.create(%{
description: "A Pleroma instance, an alternative fediverse server", group: ":pleroma",
limit: 5_000, key: ":instance",
chat_limit: 5_000, value: [
remote_limit: 100_000, name: "Pleroma",
upload_limit: 16_000_000, email: "example@example.com",
avatar_upload_limit: 2_000_000, notify_email: "noreply@example.com",
background_upload_limit: 4_000_000, description: "A Pleroma instance, an alternative fediverse server",
banner_upload_limit: 4_000_000, limit: 5_000,
poll_limits: %{ chat_limit: 5_000,
max_options: 20, remote_limit: 100_000,
max_option_chars: 200, upload_limit: 16_000_000,
min_expiration: 0, avatar_upload_limit: 2_000_000,
max_expiration: 365 * 24 * 60 * 60 background_upload_limit: 4_000_000,
}, banner_upload_limit: 4_000_000,
registrations_open: true, poll_limits: %{
federating: true, max_options: 20,
federation_incoming_replies_max_depth: 100, max_option_chars: 200,
federation_reachability_timeout_days: 7, min_expiration: 0,
federation_publisher_modules: [Pleroma.Web.ActivityPub.Publisher], max_expiration: 365 * 24 * 60 * 60
allow_relay: true, },
rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy, registrations_open: true,
public: true, federating: true,
quarantined_instances: [], federation_incoming_replies_max_depth: 100,
managed_config: true, federation_reachability_timeout_days: 7,
static_dir: "instance/static/", federation_publisher_modules: [Pleroma.Web.ActivityPub.Publisher],
allowed_post_formats: ["text/plain", "text/html", "text/markdown", "text/bbcode"], allow_relay: true,
mrf_transparency: true, rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
mrf_transparency_exclusions: [], public: true,
autofollowed_nicknames: [], quarantined_instances: [],
max_pinned_statuses: 1, managed_config: true,
no_attachment_links: true, static_dir: "instance/static/",
welcome_user_nickname: nil, allowed_post_formats: ["text/plain", "text/html", "text/markdown", "text/bbcode"],
welcome_message: nil, mrf_transparency: true,
max_report_comment_size: 1000, mrf_transparency_exclusions: [],
safe_dm_mentions: false, autofollowed_nicknames: [],
healthcheck: false, max_pinned_statuses: 1,
remote_post_retention_days: 90, no_attachment_links: true,
skip_thread_containment: true, welcome_user_nickname: nil,
limit_to_local_content: :unauthenticated, welcome_message: nil,
dynamic_configuration: false, max_report_comment_size: 1000,
user_bio_length: 5000, safe_dm_mentions: false,
user_name_length: 100, healthcheck: false,
max_account_fields: 10, remote_post_retention_days: 90,
max_remote_account_fields: 20, skip_thread_containment: true,
account_field_name_length: 512, limit_to_local_content: :unauthenticated,
account_field_value_length: 2048, dynamic_configuration: false,
external_user_synchronization: true, user_bio_length: 5000,
extended_nickname_format: true, user_name_length: 100,
multi_factor_authentication: [ max_account_fields: 10,
totp: [ max_remote_account_fields: 20,
# digits 6 or 8 account_field_name_length: 512,
digits: 6, account_field_value_length: 2048,
period: 30 external_user_synchronization: true,
], extended_nickname_format: true,
backup_codes: [ multi_factor_authentication: [
number: 2, totp: [
length: 6 # digits 6 or 8
digits: 6,
period: 30
],
backup_codes: [
number: 2,
length: 6
]
] ]
] ]
] })
})
Mix.Tasks.Pleroma.Config.run(["migrate_from_db", "temp", "true"]) Mix.Tasks.Pleroma.Config.run(["migrate_from_db", "--env", "temp", "-d"])
assert Repo.all(Config) == [] assert Repo.all(Config) == []
assert File.exists?(temp_file) assert File.exists?(temp_file)
{:ok, file} = File.read(temp_file) {:ok, file} = File.read(temp_file)
assert file == assert file ==
"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 dynamic_configuration: false,\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" "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 dynamic_configuration: false,\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"
end
end end
end end