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