Tests: Stub the pipeline in all tests.

Restores the old un-moxed behavior.
This commit is contained in:
lain 2020-12-21 16:38:34 +01:00
parent 5db1e6c8d3
commit 1a3da01a65
2 changed files with 18 additions and 0 deletions

View File

@ -136,6 +136,8 @@ defp json_response_and_validate_schema(conn, _status) do
})
end
Pleroma.DataCase.stub_pipeline()
{:ok, conn: Phoenix.ConnTest.build_conn()}
end
end

View File

@ -83,9 +83,25 @@ def clear_cachex do
})
end
stub_pipeline()
:ok
end
def stub_pipeline do
Mox.stub_with(Pleroma.Web.ActivityPub.SideEffectsMock, Pleroma.Web.ActivityPub.SideEffects)
Mox.stub_with(
Pleroma.Web.ActivityPub.ObjectValidatorMock,
Pleroma.Web.ActivityPub.ObjectValidator
)
Mox.stub_with(Pleroma.Web.ActivityPub.MRFMock, Pleroma.Web.ActivityPub.MRF)
Mox.stub_with(Pleroma.Web.ActivityPub.ActivityPubMock, Pleroma.Web.ActivityPub.ActivityPub)
Mox.stub_with(Pleroma.Web.FederatorMock, Pleroma.Web.Federator)
Mox.stub_with(Pleroma.ConfigMock, Pleroma.Config)
end
def ensure_local_uploader(context) do
test_uploader = Map.get(context, :uploader, Pleroma.Uploaders.Local)
uploader = Pleroma.Config.get([Pleroma.Upload, :uploader])