pleroma/test/pleroma/web/plugs/federating_plug_test.exs

32 lines
802 B
Elixir
Raw Normal View History

2018-12-23 21:11:29 +01:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
2018-12-23 21:11:29 +01:00
# SPDX-License-Identifier: AGPL-3.0-only
2020-06-23 17:16:47 +02: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 08:30:51 +02:00
2018-11-06 14:44:00 +01:00
test "returns and halt the conn when federating is disabled" do
2019-05-30 10:33:58 +02:00
Pleroma.Config.put([:instance, :federating], false)
2018-11-06 14:44:00 +01:00
conn =
build_conn()
2020-06-24 09:41:09 +02: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
2019-07-09 08:30:51 +02:00
Pleroma.Config.put([:instance, :federating], true)
2018-11-06 14:44:00 +01:00
conn =
build_conn()
2020-06-24 09:41:09 +02:00
|> Pleroma.Web.Plugs.FederatingPlug.call(%{})
2018-11-06 14:44:00 +01:00
refute conn.status
refute conn.halted
end
end