Clear caches on test.
authorlain <lain@soykaf.club>
Thu, 22 Mar 2018 11:44:32 +0000 (12:44 +0100)
committerlain <lain@soykaf.club>
Thu, 22 Mar 2018 11:44:32 +0000 (12:44 +0100)
test/support/conn_case.ex
test/support/data_case.ex
test/web/mastodon_api/status_view_test.exs

index 8d6969855fb4c91f9bc93132912bb7b61ea3db25..a83ef3b3ab96894d2d06b3620d41cb53eb62eea0 100644 (file)
@@ -28,6 +28,7 @@ defmodule Pleroma.Web.ConnCase do
 
 
   setup tags do
+    Cachex.clear(:user_cache)
     :ok = Ecto.Adapters.SQL.Sandbox.checkout(Pleroma.Repo)
     unless tags[:async] do
       Ecto.Adapters.SQL.Sandbox.mode(Pleroma.Repo, {:shared, self()})
index 3f40c3670fb8c17ce86872c7aac627318c85c823..8eff0fd946185470784959f3aa7a9b03695d1db4 100644 (file)
@@ -26,6 +26,7 @@ defmodule Pleroma.DataCase do
   end
 
   setup tags do
+    Cachex.clear(:user_cache)
     :ok = Ecto.Adapters.SQL.Sandbox.checkout(Pleroma.Repo)
 
     unless tags[:async] do
index 9e2bc3c185ce8bf4eb2d70b1aaf4b412ed76b604..a58f729a617a85e1bcf99442dc4eb3ad2f5108cb 100644 (file)
@@ -58,10 +58,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do
     incoming = File.read!("test/fixtures/incoming_reply_mastodon.xml")
     # a user with this ap id might be in the cache.
     recipient = "https://pleroma.soykaf.com/users/lain"
-    user = User.get_cached_by_ap_id(recipient) || insert(:user, %{ap_id: recipient})
-
-    # invalidate the cache
-    User.invalidate_cache(user)
+    user = insert(:user, %{ap_id: recipient})
 
     {:ok, [activity]} = OStatus.handle_incoming(incoming)