X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=test%2Fsupport%2Fconn_case.ex;h=ec5892ff53f45ca182ef70d37472d2b20b7b4d8f;hb=c623b4324deaf236334a0f77a81435b5bffadf3c;hp=8d6969855fb4c91f9bc93132912bb7b61ea3db25;hpb=a93f3421a704d6728a856d5d82cdbf9c43f3f897;p=akkoma diff --git a/test/support/conn_case.ex b/test/support/conn_case.ex index 8d6969855..ec5892ff5 100644 --- a/test/support/conn_case.ex +++ b/test/support/conn_case.ex @@ -1,3 +1,7 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2018 Pleroma Authors +# SPDX-License-Identifier: AGPL-3.0-only + defmodule Pleroma.Web.ConnCase do @moduledoc """ This module defines the test case to be used by @@ -19,6 +23,7 @@ defmodule Pleroma.Web.ConnCase do quote do # Import conveniences for testing with connections use Phoenix.ConnTest + use Pleroma.Tests.Helpers import Pleroma.Web.Router.Helpers # The default endpoint for testing @@ -26,13 +31,15 @@ defmodule Pleroma.Web.ConnCase do end end - setup tags do + Cachex.clear(:user_cache) + Cachex.clear(:object_cache) :ok = Ecto.Adapters.SQL.Sandbox.checkout(Pleroma.Repo) + unless tags[:async] do Ecto.Adapters.SQL.Sandbox.mode(Pleroma.Repo, {:shared, self()}) end + {:ok, conn: Phoenix.ConnTest.build_conn()} end - end