pleroma/test/web/plugs/federating_plug_test.exs

31 lines
777 B
Elixir
Raw Normal View History

2018-12-23 21:11:29 +01:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
2018-12-23 21:11:29 +01:00
# SPDX-License-Identifier: AGPL-3.0-only
2018-11-06 14:44:00 +01:00
defmodule Pleroma.Web.FederatingPlugTest do
use Pleroma.Web.ConnCase
clear_config_all([: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()
|> Pleroma.Web.FederatingPlug.call(%{})
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()
|> Pleroma.Web.FederatingPlug.call(%{})
refute conn.status
refute conn.halted
end
end