diff options
author | href <href@random.sh> | 2018-11-06 14:44:00 +0100 |
---|---|---|
committer | href <href@random.sh> | 2018-11-06 14:45:04 +0100 |
commit | 013f7ba8c1c4e6519cf30d192e3a41c6c96f8a63 (patch) | |
tree | f4185cc48e2bcb1eb193af8b7838c0dc2a4961a6 /test/web/plugs/federating_plug_test.exs | |
parent | 6fe23c54581437fbaa42d880b57b3464bb439ce4 (diff) | |
download | pleroma-013f7ba8c1c4e6519cf30d192e3a41c6c96f8a63.tar.gz pleroma-013f7ba8c1c4e6519cf30d192e3a41c6c96f8a63.zip |
Add federating plug & public tests
Diffstat (limited to 'test/web/plugs/federating_plug_test.exs')
-rw-r--r-- | test/web/plugs/federating_plug_test.exs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/test/web/plugs/federating_plug_test.exs b/test/web/plugs/federating_plug_test.exs new file mode 100644 index 000000000..1455a1c46 --- /dev/null +++ b/test/web/plugs/federating_plug_test.exs @@ -0,0 +1,33 @@ +defmodule Pleroma.Web.FederatingPlugTest do + use Pleroma.Web.ConnCase + + test "returns and halt the conn when federating is disabled" do + instance = + Application.get_env(:pleroma, :instance) + |> Keyword.put(:federating, false) + + Application.put_env(:pleroma, :instance, instance) + + conn = + build_conn() + |> Pleroma.Web.FederatingPlug.call(%{}) + + assert conn.status == 404 + assert conn.halted + + instance = + Application.get_env(:pleroma, :instance) + |> Keyword.put(:federating, true) + + Application.put_env(:pleroma, :instance, instance) + end + + test "does nothing when federating is enabled" do + conn = + build_conn() + |> Pleroma.Web.FederatingPlug.call(%{}) + + refute conn.status + refute conn.halted + end +end |