2020-01-21 14:49:22 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-01-21 14:49:22 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Config.LoaderTest do
|
|
|
|
use ExUnit.Case, async: true
|
|
|
|
|
|
|
|
alias Pleroma.Config.Loader
|
|
|
|
|
2020-03-11 13:25:53 +00:00
|
|
|
test "read/1" do
|
|
|
|
config = Loader.read("test/fixtures/config/temp.secret.exs")
|
2020-01-21 14:49:22 +00:00
|
|
|
assert config[:pleroma][:first_setting][:key] == "value"
|
|
|
|
assert config[:pleroma][:first_setting][:key2] == [Pleroma.Repo]
|
|
|
|
assert config[:quack][:level] == :info
|
|
|
|
end
|
|
|
|
|
|
|
|
test "filter_group/2" do
|
|
|
|
assert Loader.filter_group(:pleroma,
|
|
|
|
pleroma: [
|
|
|
|
{Pleroma.Repo, [a: 1, b: 2]},
|
|
|
|
{Pleroma.Upload, [a: 1, b: 2]},
|
|
|
|
{Pleroma.Web.Endpoint, []},
|
|
|
|
env: :test,
|
|
|
|
configurable_from_database: true,
|
|
|
|
database: []
|
|
|
|
]
|
|
|
|
) == [{Pleroma.Upload, [a: 1, b: 2]}]
|
|
|
|
end
|
|
|
|
end
|