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