summaryrefslogtreecommitdiff
path: root/test/support/web_push_http_client_mock.ex
blob: 3cd12957d01813fc132276a8dd2b1e0b986d0696 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 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