1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-24 22:55:52 +00:00
akkoma/test/pleroma/web/plugs/federating_plug_test.exs

32 lines
790 B
Elixir
Raw Normal View History

2018-12-23 20:11:29 +00:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
2018-12-23 20:11:29 +00:00
# SPDX-License-Identifier: AGPL-3.0-only
2020-06-23 18:16:47 +03:00
defmodule Pleroma.Web.Plugs.FederatingPlugTest do
2018-11-06 14:44:00 +01:00
use Pleroma.Web.ConnCase
setup do: clear_config([:instance, :federating])
2019-07-09 15:30:51 +09:00
2018-11-06 14:44:00 +01:00
test "returns and halt the conn when federating is disabled" do
clear_config([:instance, :federating], false)
2018-11-06 14:44:00 +01:00
conn =
build_conn()
2020-06-24 10:41:09 +03:00
|> Pleroma.Web.Plugs.FederatingPlug.call(%{})
2018-11-06 14:44:00 +01:00
assert conn.status == 404
assert conn.halted
end
test "does nothing when federating is enabled" do
clear_config([:instance, :federating], true)
2019-07-09 15:30:51 +09:00
2018-11-06 14:44:00 +01:00
conn =
build_conn()
2020-06-24 10:41:09 +03:00
|> Pleroma.Web.Plugs.FederatingPlug.call(%{})
2018-11-06 14:44:00 +01:00
refute conn.status
refute conn.halted
end
end