diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-10-06 14:25:20 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-10-06 14:25:20 -0500 |
commit | cddca85c8404272080caa661ce59ab5dbafec794 (patch) | |
tree | aac5b9fe51b26999e2e184ddfa2b4829f33794a5 /test/web/push/impl_test.exs | |
parent | ba7f9459b4798388eb4e441d096302c018354033 (diff) | |
parent | 2698bbc9f63d0bfd59de182d361db03d54aa2a68 (diff) | |
download | pleroma-cddca85c8404272080caa661ce59ab5dbafec794.tar.gz pleroma-cddca85c8404272080caa661ce59ab5dbafec794.zip |
Merge branch 'develop' into revert/rich-media-censorship
Diffstat (limited to 'test/web/push/impl_test.exs')
-rw-r--r-- | test/web/push/impl_test.exs | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/test/web/push/impl_test.exs b/test/web/push/impl_test.exs index c7c17e156..6cab46696 100644 --- a/test/web/push/impl_test.exs +++ b/test/web/push/impl_test.exs @@ -5,6 +5,8 @@ defmodule Pleroma.Web.Push.ImplTest do use Pleroma.DataCase + import Pleroma.Factory + alias Pleroma.Notification alias Pleroma.Object alias Pleroma.User @@ -12,10 +14,6 @@ defmodule Pleroma.Web.Push.ImplTest do alias Pleroma.Web.CommonAPI alias Pleroma.Web.Push.Impl alias Pleroma.Web.Push.Subscription - alias Pleroma.Web.WebPushHttpClientMock - - import Mock - import Pleroma.Factory setup do Tesla.Mock.mock(fn @@ -80,22 +78,6 @@ defmodule Pleroma.Web.Push.ImplTest do assert Impl.push_message(@message, @sub, @api_key, %Subscription{}) == :ok end - test_with_mock "uses WebPushHttpClientMock as an HTTP client", WebPushHttpClientMock, - post: fn _, _, _ -> {:ok, %{status_code: 200}} end do - Impl.push_message(@message, @sub, @api_key, %Subscription{}) - assert_called(WebPushHttpClientMock.post("https://example.com/example/1234", :_, :_)) - end - - test_with_mock "uses Pleroma.HTTP as an HTTP client", Pleroma.HTTP, - post: fn _, _, _ -> {:ok, %{status_code: 200}} end do - client = Application.get_env(:web_push_encryption, :http_client) - on_exit(fn -> Application.put_env(:web_push_encryption, :http_client, client) end) - Application.put_env(:web_push_encryption, :http_client, Pleroma.HTTP) - - Impl.push_message(@message, @sub, @api_key, %Subscription{}) - assert_called(Pleroma.HTTP.post("https://example.com/example/1234", :_, :_)) - end - @tag capture_log: true test "fail message sending" do assert Impl.push_message( |