mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-01 06:14:07 +00:00
37a1001b97
Reviewed-on: https://akkoma.dev/AkkomaGang/akkoma/pulls/158
51 lines
1.5 KiB
Elixir
51 lines
1.5 KiB
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.HTTP.AdapterHelperTest do
|
|
use ExUnit.Case, async: true
|
|
|
|
alias Pleroma.HTTP.AdapterHelper
|
|
|
|
describe "format_proxy/1" do
|
|
test "with nil" do
|
|
assert AdapterHelper.format_proxy(nil) == nil
|
|
end
|
|
|
|
test "with string" do
|
|
assert AdapterHelper.format_proxy("http://127.0.0.1:8123") == {:http, "127.0.0.1", 8123, []}
|
|
end
|
|
|
|
test "localhost with port" do
|
|
assert AdapterHelper.format_proxy("https://localhost:8123") ==
|
|
{:https, "localhost", 8123, []}
|
|
end
|
|
|
|
test "tuple" do
|
|
assert AdapterHelper.format_proxy({:http, "localhost", 9050}) ==
|
|
{:http, "localhost", 9050, []}
|
|
end
|
|
end
|
|
|
|
describe "maybe_add_proxy_pool/1" do
|
|
test "should do nothing with nil" do
|
|
assert AdapterHelper.maybe_add_proxy_pool([], nil) == []
|
|
end
|
|
|
|
test "should create pools" do
|
|
assert AdapterHelper.maybe_add_proxy_pool([], "proxy") == [
|
|
pools: %{default: [conn_opts: [proxy: "proxy"]]}
|
|
]
|
|
end
|
|
|
|
test "should not override conn_opts if set" do
|
|
assert AdapterHelper.maybe_add_proxy_pool(
|
|
[pools: %{default: [conn_opts: [already: "set"]]}],
|
|
"proxy"
|
|
) == [
|
|
pools: %{default: [conn_opts: [proxy: "proxy", already: "set"]]}
|
|
]
|
|
end
|
|
end
|
|
end
|