summaryrefslogtreecommitdiff
path: root/test/support
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2025-03-11 16:04:14 +0000
committerlain <lain@soykaf.club>2025-03-11 16:04:14 +0000
commit66687beddaf6cee236a2e035c0f4582ec586f957 (patch)
tree9ee7bf53ef26d1fc2f39922808b8beb24c18414f /test/support
parentaf6d5470d29f294e9b356da36cccbcaf85379f78 (diff)
parent5ce612b2723381a978f3810a414a3c3038a1859c (diff)
downloadpleroma-stable.tar.gz
pleroma-stable.zip
Merge branch 'release/2.9.1' into 'stable'stable
Release/2.9.1 See merge request pleroma/pleroma!4338
Diffstat (limited to 'test/support')
-rw-r--r--test/support/data_case.ex2
-rw-r--r--test/support/http_request_mock.ex16
-rw-r--r--test/support/mocks.ex3
3 files changed, 13 insertions, 8 deletions
diff --git a/test/support/data_case.ex b/test/support/data_case.ex
index 52d4bef1a..304bee5da 100644
--- a/test/support/data_case.ex
+++ b/test/support/data_case.ex
@@ -117,6 +117,8 @@ defmodule Pleroma.DataCase do
Mox.stub_with(Pleroma.ConfigMock, Pleroma.Config)
Mox.stub_with(Pleroma.StaticStubbedConfigMock, Pleroma.Test.StaticConfig)
Mox.stub_with(Pleroma.StubbedHTTPSignaturesMock, Pleroma.Test.HTTPSignaturesProxy)
+
+ Mox.stub_with(Pleroma.DateTimeMock, Pleroma.DateTime.Impl)
end
def ensure_local_uploader(context) do
diff --git a/test/support/http_request_mock.ex b/test/support/http_request_mock.ex
index ed044cf98..1c472fca9 100644
--- a/test/support/http_request_mock.ex
+++ b/test/support/http_request_mock.ex
@@ -955,7 +955,7 @@ defmodule HttpRequestMock do
{:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/ogp.html")}}
end
- def get("http://localhost:4001/users/masto_closed/followers", _, _, _) do
+ def get("https://remote.org/users/masto_closed/followers", _, _, _) do
{:ok,
%Tesla.Env{
status: 200,
@@ -964,7 +964,7 @@ defmodule HttpRequestMock do
}}
end
- def get("http://localhost:4001/users/masto_closed/followers?page=1", _, _, _) do
+ def get("https://remote.org/users/masto_closed/followers?page=1", _, _, _) do
{:ok,
%Tesla.Env{
status: 200,
@@ -973,7 +973,7 @@ defmodule HttpRequestMock do
}}
end
- def get("http://localhost:4001/users/masto_closed/following", _, _, _) do
+ def get("https://remote.org/users/masto_closed/following", _, _, _) do
{:ok,
%Tesla.Env{
status: 200,
@@ -982,7 +982,7 @@ defmodule HttpRequestMock do
}}
end
- def get("http://localhost:4001/users/masto_closed/following?page=1", _, _, _) do
+ def get("https://remote.org/users/masto_closed/following?page=1", _, _, _) do
{:ok,
%Tesla.Env{
status: 200,
@@ -991,7 +991,7 @@ defmodule HttpRequestMock do
}}
end
- def get("http://localhost:8080/followers/fuser3", _, _, _) do
+ def get("https://remote.org/followers/fuser3", _, _, _) do
{:ok,
%Tesla.Env{
status: 200,
@@ -1000,7 +1000,7 @@ defmodule HttpRequestMock do
}}
end
- def get("http://localhost:8080/following/fuser3", _, _, _) do
+ def get("https://remote.org/following/fuser3", _, _, _) do
{:ok,
%Tesla.Env{
status: 200,
@@ -1009,7 +1009,7 @@ defmodule HttpRequestMock do
}}
end
- def get("http://localhost:4001/users/fuser2/followers", _, _, _) do
+ def get("https://remote.org/users/fuser2/followers", _, _, _) do
{:ok,
%Tesla.Env{
status: 200,
@@ -1018,7 +1018,7 @@ defmodule HttpRequestMock do
}}
end
- def get("http://localhost:4001/users/fuser2/following", _, _, _) do
+ def get("https://remote.org/users/fuser2/following", _, _, _) do
{:ok,
%Tesla.Env{
status: 200,
diff --git a/test/support/mocks.ex b/test/support/mocks.ex
index d84958e15..ca2974504 100644
--- a/test/support/mocks.ex
+++ b/test/support/mocks.ex
@@ -33,3 +33,6 @@ Mox.defmock(Pleroma.StubbedHTTPSignaturesMock, for: Pleroma.HTTPSignaturesAPI)
Mox.defmock(Pleroma.LoggerMock, for: Pleroma.Logging)
Mox.defmock(Pleroma.Uploaders.S3.ExAwsMock, for: Pleroma.Uploaders.S3.ExAwsAPI)
+
+Mox.defmock(Pleroma.DateTimeMock, for: Pleroma.DateTime)
+Mox.defmock(Pleroma.MogrifyMock, for: Pleroma.MogrifyBehaviour)