diff options
author | Maksim <parallel588@gmail.com> | 2019-03-06 13:20:12 +0000 |
---|---|---|
committer | kaniini <nenolod@gmail.com> | 2019-03-06 13:20:12 +0000 |
commit | bc7570c282ea45d2d0d4b44c4a07b5d0bda2fea8 (patch) | |
tree | 949a440fd0cbeda1a37ecd3022d891345322de64 /test/support/web_push_http_client_mock.ex | |
parent | 4cbaab2181e7dd5e471b78481997fa4ad049e192 (diff) | |
download | pleroma-bc7570c282ea45d2d0d4b44c4a07b5d0bda2fea8.tar.gz pleroma-bc7570c282ea45d2d0d4b44c4a07b5d0bda2fea8.zip |
[#647] tests for web push
Diffstat (limited to 'test/support/web_push_http_client_mock.ex')
-rw-r--r-- | test/support/web_push_http_client_mock.ex | 23 |
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 |