diff options
author | lambda <pleromagit@rogerbraun.net> | 2018-09-08 09:20:34 +0000 |
---|---|---|
committer | lambda <pleromagit@rogerbraun.net> | 2018-09-08 09:20:34 +0000 |
commit | 045953225e04862c914b51808907cc86b11fcaf4 (patch) | |
tree | 8f629e1572eec131651eae1a4421b6725b6f189a /test/plugs/ensure_authenticated_plug_test.exs | |
parent | 530561a091f6f82e27ef3d5011b929b00e2da964 (diff) | |
parent | d22af29bb48e94ca21621c30d46cea42559277b7 (diff) | |
download | pleroma-045953225e04862c914b51808907cc86b11fcaf4.tar.gz pleroma-045953225e04862c914b51808907cc86b11fcaf4.zip |
Merge branch 'moonman/pleroma-sha512-crypt' into 'develop'
auth overhaul and legacy GS auth
See merge request pleroma/pleroma!331
Diffstat (limited to 'test/plugs/ensure_authenticated_plug_test.exs')
-rw-r--r-- | test/plugs/ensure_authenticated_plug_test.exs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/plugs/ensure_authenticated_plug_test.exs b/test/plugs/ensure_authenticated_plug_test.exs new file mode 100644 index 000000000..b32817fef --- /dev/null +++ b/test/plugs/ensure_authenticated_plug_test.exs @@ -0,0 +1,27 @@ +defmodule Pleroma.Plugs.EnsureAuthenticatedPlugTest do + use Pleroma.Web.ConnCase, async: true + + alias Pleroma.Plugs.EnsureAuthenticatedPlug + alias Pleroma.User + + test "it halts if no user is assigned", %{conn: conn} do + conn = + conn + |> EnsureAuthenticatedPlug.call(%{}) + + assert conn.status == 403 + assert conn.halted == true + end + + test "it continues if a user is assigned", %{conn: conn} do + conn = + conn + |> assign(:user, %User{}) + + ret_conn = + conn + |> EnsureAuthenticatedPlug.call(%{}) + + assert ret_conn == conn + end +end |