summaryrefslogtreecommitdiff
path: root/test/plugs/legacy_authentication_plug_test.exs
diff options
context:
space:
mode:
authorlambda <pleromagit@rogerbraun.net>2018-09-08 09:20:34 +0000
committerlambda <pleromagit@rogerbraun.net>2018-09-08 09:20:34 +0000
commit045953225e04862c914b51808907cc86b11fcaf4 (patch)
tree8f629e1572eec131651eae1a4421b6725b6f189a /test/plugs/legacy_authentication_plug_test.exs
parent530561a091f6f82e27ef3d5011b929b00e2da964 (diff)
parentd22af29bb48e94ca21621c30d46cea42559277b7 (diff)
downloadpleroma-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/legacy_authentication_plug_test.exs')
-rw-r--r--test/plugs/legacy_authentication_plug_test.exs82
1 files changed, 82 insertions, 0 deletions
diff --git a/test/plugs/legacy_authentication_plug_test.exs b/test/plugs/legacy_authentication_plug_test.exs
new file mode 100644
index 000000000..383a22ff8
--- /dev/null
+++ b/test/plugs/legacy_authentication_plug_test.exs
@@ -0,0 +1,82 @@
+defmodule Pleroma.Plugs.LegacyAuthenticationPlugTest do
+ use Pleroma.Web.ConnCase, async: true
+
+ alias Pleroma.Plugs.LegacyAuthenticationPlug
+ alias Pleroma.User
+
+ import Mock
+
+ setup do
+ # password is "password"
+ user = %User{
+ id: 1,
+ name: "dude",
+ password_hash:
+ "$6$9psBWV8gxkGOZWBz$PmfCycChoxeJ3GgGzwvhlgacb9mUoZ.KUXNCssekER4SJ7bOK53uXrHNb2e4i8yPFgSKyzaW9CcmrDXWIEMtD1"
+ }
+
+ %{user: user}
+ end
+
+ test "it does nothing if a user is assigned", %{conn: conn, user: user} do
+ conn =
+ conn
+ |> assign(:auth_credentials, %{username: "dude", password: "password"})
+ |> assign(:auth_user, user)
+ |> assign(:user, %User{})
+
+ ret_conn =
+ conn
+ |> LegacyAuthenticationPlug.call(%{})
+
+ assert ret_conn == conn
+ end
+
+ test "it authenticates the auth_user if present and password is correct and resets the password",
+ %{
+ conn: conn,
+ user: user
+ } do
+ conn =
+ conn
+ |> assign(:auth_credentials, %{username: "dude", password: "password"})
+ |> assign(:auth_user, user)
+
+ conn =
+ with_mock User,
+ reset_password: fn user, %{password: password, password_confirmation: password} ->
+ send(self(), :reset_password)
+ {:ok, user}
+ end do
+ conn
+ |> LegacyAuthenticationPlug.call(%{})
+ end
+
+ assert_received :reset_password
+ assert conn.assigns.user == user
+ end
+
+ test "it does nothing if the password is wrong", %{
+ conn: conn,
+ user: user
+ } do
+ conn =
+ conn
+ |> assign(:auth_credentials, %{username: "dude", password: "wrong_password"})
+ |> assign(:auth_user, user)
+
+ ret_conn =
+ conn
+ |> LegacyAuthenticationPlug.call(%{})
+
+ assert conn == ret_conn
+ end
+
+ test "with no credentials or user it does nothing", %{conn: conn} do
+ ret_conn =
+ conn
+ |> LegacyAuthenticationPlug.call(%{})
+
+ assert ret_conn == conn
+ end
+end