2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:11:29 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-11-26 20:24:34 +00:00
|
|
|
os_exclude = if :os.type() == {:unix, :darwin}, do: [skip_on_mac: true], else: []
|
2021-12-22 04:04:15 +00:00
|
|
|
ExUnit.start(exclude: [:federated, :erratic] ++ os_exclude)
|
2019-11-26 20:24:34 +00:00
|
|
|
|
2017-03-17 16:09:58 +00:00
|
|
|
Ecto.Adapters.SQL.Sandbox.mode(Pleroma.Repo, :manual)
|
2020-03-06 17:23:58 +00:00
|
|
|
|
2017-04-13 13:49:24 +00:00
|
|
|
{:ok, _} = Application.ensure_all_started(:ex_machina)
|
2019-09-18 20:34:13 +00:00
|
|
|
|
2024-03-04 17:39:08 +00:00
|
|
|
# Prepare and later automatically cleanup upload dir
|
|
|
|
uploads_dir = Pleroma.Config.get([Pleroma.Uploaders.Local, :uploads], "test/uploads")
|
|
|
|
File.mkdir_p!(uploads_dir)
|
|
|
|
|
2019-09-18 20:34:13 +00:00
|
|
|
ExUnit.after_suite(fn _results ->
|
|
|
|
uploads = Pleroma.Config.get([Pleroma.Uploaders.Local, :uploads], "test/uploads")
|
|
|
|
File.rm_rf!(uploads)
|
|
|
|
end)
|
2024-06-09 17:28:00 +00:00
|
|
|
|
|
|
|
defmodule Pleroma.Test.StaticConfig do
|
|
|
|
@moduledoc """
|
|
|
|
This module provides a Config that is completely static, built at startup time from the environment. It's safe to use in testing as it will not modify any state.
|
|
|
|
"""
|
|
|
|
|
|
|
|
@behaviour Pleroma.Config.Getting
|
|
|
|
@config Application.get_all_env(:pleroma)
|
|
|
|
|
|
|
|
def get(path, default \\ nil) do
|
|
|
|
get_in(@config, path) || default
|
|
|
|
end
|
|
|
|
end
|