summaryrefslogtreecommitdiff
path: root/test/support/web_push_http_client_mock.ex
diff options
context:
space:
mode:
authorlink0ff <juri@linkov.net>2019-03-14 17:43:30 +0200
committerlink0ff <juri@linkov.net>2019-03-14 17:43:30 +0200
commit54e7087ab412a488f8ad7286aef89d313e5e7b14 (patch)
tree9391107eb5aec3940bf6150539acc38e85224751 /test/support/web_push_http_client_mock.ex
parent9338f061a303ae3d57a8ea1af524c2ca51929f8d (diff)
parent59333f2d568dc6e50fb72e5114ec7dd6bcc1ebef (diff)
downloadpleroma-54e7087ab412a488f8ad7286aef89d313e5e7b14.tar.gz
pleroma-54e7087ab412a488f8ad7286aef89d313e5e7b14.zip
Merge remote-tracking branch 'upstream/develop' into feature/openldap-support
Diffstat (limited to 'test/support/web_push_http_client_mock.ex')
-rw-r--r--test/support/web_push_http_client_mock.ex23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/support/web_push_http_client_mock.ex b/test/support/web_push_http_client_mock.ex
new file mode 100644
index 000000000..d8accd21c
--- /dev/null
+++ b/test/support/web_push_http_client_mock.ex
@@ -0,0 +1,23 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
+defmodule Pleroma.Web.WebPushHttpClientMock do
+ def get(url, headers \\ [], options \\ []) do
+ {
+ res,
+ %Tesla.Env{status: status}
+ } = Pleroma.HTTP.request(:get, url, "", headers, options)
+
+ {res, %{status_code: status}}
+ end
+
+ def post(url, body, headers \\ [], options \\ []) do
+ {
+ res,
+ %Tesla.Env{status: status}
+ } = Pleroma.HTTP.request(:post, url, body, headers, options)
+
+ {res, %{status_code: status}}
+ end
+end