2020-02-11 07:12:57 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 12:44:13 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2020-02-11 07:12:57 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.HTTP.AdapterTest do
|
|
|
|
use ExUnit.Case, async: true
|
|
|
|
|
|
|
|
alias Pleroma.HTTP.Adapter
|
|
|
|
|
|
|
|
describe "format_proxy/1" do
|
|
|
|
test "with nil" do
|
|
|
|
assert Adapter.format_proxy(nil) == nil
|
|
|
|
end
|
|
|
|
|
|
|
|
test "with string" do
|
|
|
|
assert Adapter.format_proxy("127.0.0.1:8123") == {{127, 0, 0, 1}, 8123}
|
|
|
|
end
|
|
|
|
|
|
|
|
test "localhost with port" do
|
|
|
|
assert Adapter.format_proxy("localhost:8123") == {'localhost', 8123}
|
|
|
|
end
|
|
|
|
|
|
|
|
test "tuple" do
|
|
|
|
assert Adapter.format_proxy({:socks4, :localhost, 9050}) == {:socks4, 'localhost', 9050}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|