diff options
| author | lain <lain@soykaf.club> | 2018-09-05 22:30:14 +0200 | 
|---|---|---|
| committer | lain <lain@soykaf.club> | 2018-09-05 22:30:14 +0200 | 
| commit | 44b094908c28b588438b4bf31c0a4751be47f48d (patch) | |
| tree | f645d83485a5d6427a2dfe64cdca6ce53797f8c3 /test | |
| parent | c0e067c74e46c98657cb0e403debcbcb0a362df8 (diff) | |
| download | pleroma-44b094908c28b588438b4bf31c0a4751be47f48d.tar.gz pleroma-44b094908c28b588438b4bf31c0a4751be47f48d.zip | |
Update legacy passwords automatically.
Diffstat (limited to 'test')
| -rw-r--r-- | test/plugs/legacy_authentication_plug_test.exs | 22 | 
1 files changed, 16 insertions, 6 deletions
| diff --git a/test/plugs/legacy_authentication_plug_test.exs b/test/plugs/legacy_authentication_plug_test.exs index 90783f628..117810722 100644 --- a/test/plugs/legacy_authentication_plug_test.exs +++ b/test/plugs/legacy_authentication_plug_test.exs @@ -4,6 +4,8 @@ defmodule Pleroma.Plugs.LegacyAuthenticationPlugTest do    alias Pleroma.Plugs.LegacyAuthenticationPlug    alias Pleroma.User +  import Mock +    setup do      # password is "password"      user = %User{ @@ -30,19 +32,27 @@ defmodule Pleroma.Plugs.LegacyAuthenticationPlugTest do      assert ret_conn == conn    end -  test "it authenticates the auth_user if present and password is correct", %{ -    conn: conn, -    user: user -  } do +  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 = -      conn -      |> LegacyAuthenticationPlug.call(%{}) +      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 | 
