2019-07-10 05:13:23 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-07-10 05:13:23 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-06-14 15:45:05 +00:00
|
|
|
defmodule Pleroma.Config.TransferTaskTest do
|
|
|
|
use Pleroma.DataCase
|
|
|
|
|
2020-01-25 15:42:04 +00:00
|
|
|
import ExUnit.CaptureLog
|
2020-05-31 07:46:02 +00:00
|
|
|
import Pleroma.Factory
|
2020-01-25 15:42:04 +00:00
|
|
|
|
2020-01-18 09:25:56 +00:00
|
|
|
alias Pleroma.Config.TransferTask
|
2019-12-06 05:21:30 +00:00
|
|
|
|
2022-09-02 22:05:39 +00:00
|
|
|
setup do
|
|
|
|
clear_config(:configurable_from_database, true)
|
|
|
|
end
|
2019-06-14 15:45:05 +00:00
|
|
|
|
|
|
|
test "transfer config values from db to env" do
|
|
|
|
refute Application.get_env(:pleroma, :test_key)
|
2019-06-23 05:16:16 +00:00
|
|
|
refute Application.get_env(:idna, :test_key)
|
2019-12-06 05:21:30 +00:00
|
|
|
refute Application.get_env(:quack, :test_key)
|
2020-04-16 07:36:37 +00:00
|
|
|
refute Application.get_env(:postgrex, :test_key)
|
2022-09-02 22:05:39 +00:00
|
|
|
|
2020-04-17 05:42:48 +00:00
|
|
|
initial = Application.get_env(:logger, :level)
|
2019-06-23 05:16:16 +00:00
|
|
|
|
2020-05-31 07:46:02 +00:00
|
|
|
insert(:config, key: :test_key, value: [live: 2, com: 3])
|
|
|
|
insert(:config, group: :idna, key: :test_key, value: [live: 15, com: 35])
|
|
|
|
insert(:config, group: :quack, key: :test_key, value: [:test_value1, :test_value2])
|
|
|
|
insert(:config, group: :postgrex, key: :test_key, value: :value)
|
|
|
|
insert(:config, group: :logger, key: :level, value: :debug)
|
2022-09-02 22:05:39 +00:00
|
|
|
insert(:config, group: :pleroma, key: :instance, value: [static_dir: "static_dir_from_db"])
|
2020-01-18 09:25:56 +00:00
|
|
|
TransferTask.start_link([])
|
2019-06-14 15:45:05 +00:00
|
|
|
|
|
|
|
assert Application.get_env(:pleroma, :test_key) == [live: 2, com: 3]
|
2019-06-23 05:16:16 +00:00
|
|
|
assert Application.get_env(:idna, :test_key) == [live: 15, com: 35]
|
2019-12-06 05:21:30 +00:00
|
|
|
assert Application.get_env(:quack, :test_key) == [:test_value1, :test_value2]
|
2020-04-17 05:42:48 +00:00
|
|
|
assert Application.get_env(:logger, :level) == :debug
|
2020-04-16 07:36:37 +00:00
|
|
|
assert Application.get_env(:postgrex, :test_key) == :value
|
2022-09-02 22:05:39 +00:00
|
|
|
assert Application.get_env(:pleroma, :instance)[:static_dir] == "static_dir_from_db"
|
2019-06-14 15:45:05 +00:00
|
|
|
|
|
|
|
on_exit(fn ->
|
|
|
|
Application.delete_env(:pleroma, :test_key)
|
2019-06-23 05:16:16 +00:00
|
|
|
Application.delete_env(:idna, :test_key)
|
2019-12-06 05:21:30 +00:00
|
|
|
Application.delete_env(:quack, :test_key)
|
2020-04-16 07:36:37 +00:00
|
|
|
Application.delete_env(:postgrex, :test_key)
|
2020-04-17 05:42:48 +00:00
|
|
|
Application.put_env(:logger, :level, initial)
|
2022-09-02 22:05:39 +00:00
|
|
|
System.delete_env("RELEASE_NAME")
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "transfer task falls back to env before default" do
|
|
|
|
instance = Application.get_env(:pleroma, :instance)
|
|
|
|
|
|
|
|
insert(:config, key: :instance, value: [name: "wow"])
|
|
|
|
clear_config([:instance, :static_dir], "static_dir_from_env")
|
|
|
|
TransferTask.start_link([])
|
|
|
|
|
|
|
|
assert Application.get_env(:pleroma, :instance)[:name] == "wow"
|
|
|
|
assert Application.get_env(:pleroma, :instance)[:static_dir] == "static_dir_from_env"
|
|
|
|
|
|
|
|
on_exit(fn ->
|
|
|
|
Application.put_env(:pleroma, :instance, instance)
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "transfer task falls back to release defaults if no other values found" do
|
|
|
|
instance = Application.get_env(:pleroma, :instance)
|
|
|
|
|
|
|
|
System.put_env("RELEASE_NAME", "akkoma")
|
|
|
|
Pleroma.Config.Holder.save_default()
|
|
|
|
insert(:config, key: :instance, value: [name: "wow"])
|
|
|
|
Application.delete_env(:pleroma, :instance)
|
|
|
|
|
|
|
|
TransferTask.start_link([])
|
|
|
|
|
|
|
|
assert Application.get_env(:pleroma, :instance)[:name] == "wow"
|
|
|
|
assert Application.get_env(:pleroma, :instance)[:static_dir] == "/var/lib/akkoma/static"
|
|
|
|
|
|
|
|
on_exit(fn ->
|
|
|
|
System.delete_env("RELEASE_NAME")
|
|
|
|
Pleroma.Config.Holder.save_default()
|
|
|
|
Application.put_env(:pleroma, :instance, instance)
|
2019-06-14 15:45:05 +00:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2020-01-17 08:45:44 +00:00
|
|
|
test "transfer config values for 1 group and some keys" do
|
|
|
|
level = Application.get_env(:quack, :level)
|
|
|
|
meta = Application.get_env(:quack, :meta)
|
|
|
|
|
2020-05-31 07:46:02 +00:00
|
|
|
insert(:config, group: :quack, key: :level, value: :info)
|
|
|
|
insert(:config, group: :quack, key: :meta, value: [:none])
|
2020-01-17 08:45:44 +00:00
|
|
|
|
2020-01-18 09:25:56 +00:00
|
|
|
TransferTask.start_link([])
|
2020-01-17 08:45:44 +00:00
|
|
|
|
|
|
|
assert Application.get_env(:quack, :level) == :info
|
|
|
|
assert Application.get_env(:quack, :meta) == [:none]
|
2020-03-11 13:25:53 +00:00
|
|
|
default = Pleroma.Config.Holder.default_config(:quack, :webhook_url)
|
2020-01-17 08:45:44 +00:00
|
|
|
assert Application.get_env(:quack, :webhook_url) == default
|
|
|
|
|
|
|
|
on_exit(fn ->
|
|
|
|
Application.put_env(:quack, :level, level)
|
|
|
|
Application.put_env(:quack, :meta, meta)
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2020-01-18 09:25:56 +00:00
|
|
|
test "transfer config values with full subkey update" do
|
2020-04-17 05:42:48 +00:00
|
|
|
clear_config(:emoji)
|
|
|
|
clear_config(:assets)
|
2020-01-18 09:25:56 +00:00
|
|
|
|
2020-05-31 07:46:02 +00:00
|
|
|
insert(:config, key: :emoji, value: [groups: [a: 1, b: 2]])
|
|
|
|
insert(:config, key: :assets, value: [mascots: [a: 1, b: 2]])
|
2020-01-18 09:25:56 +00:00
|
|
|
|
|
|
|
TransferTask.start_link([])
|
|
|
|
|
|
|
|
emoji_env = Application.get_env(:pleroma, :emoji)
|
|
|
|
assert emoji_env[:groups] == [a: 1, b: 2]
|
|
|
|
assets_env = Application.get_env(:pleroma, :assets)
|
|
|
|
assert assets_env[:mascots] == [a: 1, b: 2]
|
|
|
|
end
|
2020-01-25 15:42:04 +00:00
|
|
|
|
|
|
|
describe "pleroma restart" do
|
2020-02-08 09:55:37 +00:00
|
|
|
setup do
|
2022-11-01 14:31:29 +00:00
|
|
|
on_exit(fn ->
|
|
|
|
Restarter.Pleroma.refresh()
|
|
|
|
|
|
|
|
# Restarter.Pleroma.refresh/0 is an asynchronous call.
|
|
|
|
# A GenServer will first finish the previous call before starting a new one.
|
|
|
|
# Here we do a synchronous call.
|
|
|
|
# That way we are sure that the previous call has finished before we continue.
|
|
|
|
# See https://stackoverflow.com/questions/51361856/how-to-use-task-await-with-genserver
|
|
|
|
Restarter.Pleroma.rebooted?()
|
|
|
|
end)
|
2020-02-08 09:55:37 +00:00
|
|
|
end
|
|
|
|
|
2020-01-25 15:42:04 +00:00
|
|
|
test "don't restart if no reboot time settings were changed" do
|
2020-04-17 05:42:48 +00:00
|
|
|
clear_config(:emoji)
|
2020-05-31 07:46:02 +00:00
|
|
|
insert(:config, key: :emoji, value: [groups: [a: 1, b: 2]])
|
2020-01-25 15:42:04 +00:00
|
|
|
|
2020-01-25 16:21:21 +00:00
|
|
|
refute String.contains?(
|
2022-11-01 14:31:29 +00:00
|
|
|
capture_log(fn ->
|
|
|
|
TransferTask.start_link([])
|
|
|
|
|
|
|
|
# TransferTask.start_link/1 is an asynchronous call.
|
|
|
|
# A GenServer will first finish the previous call before starting a new one.
|
|
|
|
# Here we do a synchronous call.
|
|
|
|
# That way we are sure that the previous call has finished before we continue.
|
|
|
|
Restarter.Pleroma.rebooted?()
|
|
|
|
end),
|
2020-01-25 16:21:21 +00:00
|
|
|
"pleroma restarted"
|
|
|
|
)
|
2020-01-25 15:42:04 +00:00
|
|
|
end
|
|
|
|
|
2020-02-08 09:55:37 +00:00
|
|
|
test "on reboot time key" do
|
2022-11-01 14:31:29 +00:00
|
|
|
clear_config(:rate_limit)
|
|
|
|
insert(:config, key: :rate_limit, value: [enabled: false])
|
|
|
|
|
|
|
|
# Note that we don't actually restart Pleroma.
|
|
|
|
# See module Restarter.Pleroma
|
|
|
|
assert capture_log(fn ->
|
|
|
|
TransferTask.start_link([])
|
|
|
|
|
|
|
|
# TransferTask.start_link/1 is an asynchronous call.
|
|
|
|
# A GenServer will first finish the previous call before starting a new one.
|
|
|
|
# Here we do a synchronous call.
|
|
|
|
# That way we are sure that the previous call has finished before we continue.
|
|
|
|
Restarter.Pleroma.rebooted?()
|
|
|
|
end) =~ "pleroma restarted"
|
2020-01-25 15:42:04 +00:00
|
|
|
end
|
|
|
|
|
2020-02-08 09:55:37 +00:00
|
|
|
test "on reboot time subkey" do
|
2020-04-17 05:42:48 +00:00
|
|
|
clear_config(Pleroma.Captcha)
|
2020-05-31 07:46:02 +00:00
|
|
|
insert(:config, key: Pleroma.Captcha, value: [seconds_valid: 60])
|
2022-11-01 14:31:29 +00:00
|
|
|
|
|
|
|
# Note that we don't actually restart Pleroma.
|
|
|
|
# See module Restarter.Pleroma
|
|
|
|
assert capture_log(fn ->
|
|
|
|
TransferTask.start_link([])
|
|
|
|
|
|
|
|
# TransferTask.start_link/1 is an asynchronous call.
|
|
|
|
# A GenServer will first finish the previous call before starting a new one.
|
|
|
|
# Here we do a synchronous call.
|
|
|
|
# That way we are sure that the previous call has finished before we continue.
|
|
|
|
Restarter.Pleroma.rebooted?()
|
|
|
|
end) =~ "pleroma restarted"
|
2020-01-25 15:42:04 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "don't restart pleroma on reboot time key and subkey if there is false flag" do
|
2022-11-01 14:31:29 +00:00
|
|
|
clear_config(:rate_limit)
|
2020-04-17 05:42:48 +00:00
|
|
|
clear_config(Pleroma.Captcha)
|
2020-01-25 15:42:04 +00:00
|
|
|
|
2022-11-01 14:31:29 +00:00
|
|
|
insert(:config, key: :rate_limit, value: [enabled: false])
|
2020-05-31 07:46:02 +00:00
|
|
|
insert(:config, key: Pleroma.Captcha, value: [seconds_valid: 60])
|
2020-01-25 15:42:04 +00:00
|
|
|
|
2020-01-28 15:02:11 +00:00
|
|
|
refute String.contains?(
|
2022-11-01 14:31:29 +00:00
|
|
|
capture_log(fn ->
|
|
|
|
TransferTask.load_and_update_env([], false)
|
|
|
|
|
|
|
|
# TransferTask.start_link/1 is an asynchronous call.
|
|
|
|
# A GenServer will first finish the previous call before starting a new one.
|
|
|
|
# Here we do a synchronous call.
|
|
|
|
# That way we are sure that the previous call has finished before we continue.
|
|
|
|
Restarter.Pleroma.rebooted?()
|
|
|
|
end),
|
2020-01-28 15:02:11 +00:00
|
|
|
"pleroma restarted"
|
|
|
|
)
|
2020-01-25 15:42:04 +00:00
|
|
|
end
|
|
|
|
end
|
2019-06-14 15:45:05 +00:00
|
|
|
end
|