pleroma/test/pleroma/http_test.exs

71 lines
1.9 KiB
Elixir
Raw Normal View History

2018-12-23 21:11:29 +01:00
# Pleroma: A lightweight social networking server
2022-02-26 07:11:42 +01:00
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
2018-12-23 21:11:29 +01:00
# SPDX-License-Identifier: AGPL-3.0-only
2018-12-04 17:43:00 +01:00
defmodule Pleroma.HTTPTest do
2020-03-07 09:01:37 +01:00
use ExUnit.Case, async: true
2020-02-11 08:12:57 +01:00
use Pleroma.Tests.Helpers
2018-12-04 17:43:00 +01:00
import Tesla.Mock
2020-02-11 08:12:57 +01:00
alias Pleroma.HTTP
2018-12-04 17:43:00 +01:00
setup do
mock(fn
%{
method: :get,
url: "http://example.com/hello",
headers: [{"content-type", "application/json"}]
} ->
json(%{"my" => "data"})
%{method: :head, url: "http://example.com/hello"} ->
%Tesla.Env{status: 200, body: ""}
2018-12-04 17:43:00 +01:00
%{method: :get, url: "http://example.com/hello"} ->
%Tesla.Env{status: 200, body: "hello"}
%{method: :post, url: "http://example.com/world"} ->
%Tesla.Env{status: 200, body: "world"}
end)
:ok
end
describe "head/1" do
test "returns successfully result" do
assert HTTP.head("http://example.com/hello") == {:ok, %Tesla.Env{status: 200, body: ""}}
end
end
2018-12-04 17:43:00 +01:00
describe "get/1" do
test "returns successfully result" do
2020-02-11 08:12:57 +01:00
assert HTTP.get("http://example.com/hello") == {
2018-12-04 17:43:00 +01:00
:ok,
%Tesla.Env{status: 200, body: "hello"}
}
end
end
describe "get/2 (with headers)" do
test "returns successfully result for json content-type" do
2020-02-11 08:12:57 +01:00
assert HTTP.get("http://example.com/hello", [{"content-type", "application/json"}]) ==
2018-12-04 17:43:00 +01:00
{
:ok,
%Tesla.Env{
status: 200,
body: "{\"my\":\"data\"}",
headers: [{"content-type", "application/json"}]
}
}
end
end
describe "post/2" do
test "returns successfully result" do
2020-02-11 08:12:57 +01:00
assert HTTP.post("http://example.com/world", "") == {
2018-12-04 17:43:00 +01:00
:ok,
%Tesla.Env{status: 200, body: "world"}
}
end
end
end