pleroma/test/pleroma/config/transfer_task_test.exs

162 lines
5.9 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2022-02-26 00:11:42 -06:00
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Config.TransferTaskTest do
use Pleroma.DataCase
import ExUnit.CaptureLog
2020-05-31 02:46:02 -05:00
import Pleroma.Factory
2020-01-18 03:25:56 -06:00
alias Pleroma.Config.TransferTask
setup do: clear_config(:configurable_from_database, true)
test "transfer config values from db to env" do
refute Application.get_env(:pleroma, :test_key)
2019-06-23 00:16:16 -05:00
refute Application.get_env(:idna, :test_key)
2020-04-16 02:36:37 -05:00
refute Application.get_env(:postgrex, :test_key)
2020-04-17 00:42:48 -05:00
initial = Application.get_env(:logger, :level)
2019-06-23 00:16:16 -05:00
2020-05-31 02:46:02 -05: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: :postgrex, key: :test_key, value: :value)
insert(:config, group: :logger, key: :level, value: :debug)
2020-04-17 00:42:48 -05:00
2020-01-18 03:25:56 -06:00
TransferTask.start_link([])
assert Application.get_env(:pleroma, :test_key) == [live: 2, com: 3]
2019-06-23 00:16:16 -05:00
assert Application.get_env(:idna, :test_key) == [live: 15, com: 35]
2020-04-17 00:42:48 -05:00
assert Application.get_env(:logger, :level) == :debug
2020-04-16 02:36:37 -05:00
assert Application.get_env(:postgrex, :test_key) == :value
on_exit(fn ->
Application.delete_env(:pleroma, :test_key)
2019-06-23 00:16:16 -05:00
Application.delete_env(:idna, :test_key)
2020-04-16 02:36:37 -05:00
Application.delete_env(:postgrex, :test_key)
2020-04-17 00:42:48 -05:00
Application.put_env(:logger, :level, initial)
end)
end
test "transfer config values for 1 group and some keys" do
2022-11-11 10:39:43 -06:00
level = Application.get_env(:somegroup, :level)
meta = Application.get_env(:somegroup, :meta)
2022-11-11 10:39:43 -06:00
insert(:config, group: :somegroup, key: :level, value: :info)
insert(:config, group: :somegroup, key: :meta, value: [:none])
2020-01-18 03:25:56 -06:00
TransferTask.start_link([])
2022-11-11 10:39:43 -06:00
assert Application.get_env(:somegroup, :level) == :info
assert Application.get_env(:somegroup, :meta) == [:none]
on_exit(fn ->
2022-11-11 10:39:43 -06:00
Application.put_env(:somegroup, :level, level)
Application.put_env(:somegroup, :meta, meta)
end)
end
2020-01-18 03:25:56 -06:00
test "transfer config values with full subkey update" do
2020-04-17 00:42:48 -05:00
clear_config(:emoji)
clear_config(:assets)
2020-01-18 03:25:56 -06:00
2020-05-31 02:46:02 -05:00
insert(:config, key: :emoji, value: [groups: [a: 1, b: 2]])
insert(:config, key: :assets, value: [mascots: [a: 1, b: 2]])
2020-01-18 03:25:56 -06: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
describe "pleroma restart" do
2020-02-08 03:55:37 -06:00
setup do
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 03:55:37 -06:00
end
test "don't restart if no reboot time settings were changed" do
2020-04-17 00:42:48 -05:00
clear_config(:emoji)
2020-05-31 02:46:02 -05:00
insert(:config, key: :emoji, value: [groups: [a: 1, b: 2]])
2020-01-25 10:21:21 -06:00
refute String.contains?(
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 10:21:21 -06:00
"pleroma restarted"
)
end
2020-02-08 03:55:37 -06:00
test "on reboot time key" do
clear_config(:shout)
insert(:config, key: :shout, 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"
end
2020-02-08 03:55:37 -06:00
test "on reboot time subkey" do
2020-04-17 00:42:48 -05:00
clear_config(Pleroma.Captcha)
2020-05-31 02:46:02 -05:00
insert(:config, key: Pleroma.Captcha, value: [seconds_valid: 60])
# 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"
end
test "don't restart pleroma on reboot time key and subkey if there is false flag" do
clear_config(:shout)
2020-04-17 00:42:48 -05:00
clear_config(Pleroma.Captcha)
insert(:config, key: :shout, value: [enabled: false])
2020-05-31 02:46:02 -05:00
insert(:config, key: Pleroma.Captcha, value: [seconds_valid: 60])
2020-01-28 09:02:11 -06:00
refute String.contains?(
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 09:02:11 -06:00
"pleroma restarted"
)
end
end
end