pleroma/test/web/plugs/federating_plug_test.exs

32 lines
784 B
Elixir
Raw Normal View History

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