diff options
| author | Hakaba Hitoyo <hakabahitoyo@example.com> | 2018-11-15 14:04:09 +0900 |
|---|---|---|
| committer | Hakaba Hitoyo <hakabahitoyo@example.com> | 2018-11-15 14:04:09 +0900 |
| commit | 5c8b8f6cb7212bd202924b535cd2a263416e78d4 (patch) | |
| tree | 07ad2b2dd44189ae14a1ff44ff5a98013143866b /test/web/plugs/federating_plug_test.exs | |
| parent | 3484f687958f57ea5ce749135f78517ff12849d7 (diff) | |
| parent | cc45797f4e1765f5123c058166f6032c6a6556a0 (diff) | |
| download | pleroma-5c8b8f6cb7212bd202924b535cd2a263416e78d4.tar.gz pleroma-5c8b8f6cb7212bd202924b535cd2a263416e78d4.zip | |
Merge remote-tracking branch 'official/develop' into develop
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 |
