social.metadata.moe/test/test_helper.exs

41 lines
1.3 KiB
Elixir
Raw Permalink Normal View History

2018-12-24 05:11:29 +09:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
2018-12-24 05:11:29 +09:00
# SPDX-License-Identifier: AGPL-3.0-only
Code.put_compiler_option(:warnings_as_errors, true)
2024-06-18 23:50:31 +09:00
ExUnit.configure(capture_log: true, max_cases: System.schedulers_online())
2024-06-21 04:43:39 +09:00
ExUnit.start(exclude: [:federated])
2019-11-27 05:24:34 +09:00
if match?({:unix, :darwin}, :os.type()) do
excluded = ExUnit.configuration() |> Keyword.get(:exclude, [])
excluded = excluded ++ [:skip_darwin]
ExUnit.configure(exclude: excluded)
end
2017-03-18 01:09:58 +09:00
Ecto.Adapters.SQL.Sandbox.mode(Pleroma.Repo, :manual)
2020-03-07 02:23:58 +09:00
2019-07-10 01:54:13 +09:00
Mox.defmock(Pleroma.ReverseProxy.ClientMock, for: Pleroma.ReverseProxy.Client)
2020-03-07 02:23:58 +09:00
Mox.defmock(Pleroma.GunMock, for: Pleroma.Gun)
2017-04-13 22:49:24 +09:00
{:ok, _} = Application.ensure_all_started(:ex_machina)
ExUnit.after_suite(fn _results ->
uploads = Pleroma.Config.get([Pleroma.Uploaders.Local, :uploads], "test/uploads")
File.rm_rf!(uploads)
end)
2023-12-11 14:43:49 +09:00
defmodule Pleroma.Test.StaticConfig do
2023-12-11 14:48:34 +09:00
@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.
"""
2023-12-11 14:43:49 +09:00
@behaviour Pleroma.Config.Getting
@config Application.get_all_env(:pleroma)
def get(path, default \\ nil) do
get_in(@config, path) || default
end
end