diff options
author | rinpatch <rinpatch@sdf.org> | 2019-11-19 20:04:19 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-11-19 20:04:19 +0000 |
commit | 0ba3f1ffb28792c21809fa9a30fc03a7a52d9361 (patch) | |
tree | 0b1a885f966c36e296d8d48048ddf25fc30b7a93 /test | |
parent | 36f4382b3367a889a191b124066fbbafab37d047 (diff) | |
parent | 34206e4d7f2f5abe896882874e142374d987c44f (diff) | |
download | pleroma-1.1.6.tar.gz |
Merge branch 'release/1.1.6' into 'stable'v1.1.6
Release/1.1.6
See merge request pleroma/pleroma!1995
Diffstat (limited to 'test')
-rw-r--r-- | test/plugs/user_enabled_plug_test.exs | 17 | ||||
-rw-r--r-- | test/web/oauth/oauth_controller_test.exs | 23 |
2 files changed, 40 insertions, 0 deletions
diff --git a/test/plugs/user_enabled_plug_test.exs b/test/plugs/user_enabled_plug_test.exs index c0fafcab1..e85b37ffe 100644 --- a/test/plugs/user_enabled_plug_test.exs +++ b/test/plugs/user_enabled_plug_test.exs @@ -16,6 +16,23 @@ defmodule Pleroma.Plugs.UserEnabledPlugTest do assert ret_conn == conn end + test "with a user that's not confirmed and a config requiring confirmation, it removes that user", + %{conn: conn} do + old = Pleroma.Config.get([:instance, :account_activation_required]) + Pleroma.Config.put([:instance, :account_activation_required], true) + + user = insert(:user, info: %{confirmation_pending: true}) + + conn = + conn + |> assign(:user, user) + |> UserEnabledPlug.call(%{}) + + assert conn.assigns.user == nil + + Pleroma.Config.put([:instance, :account_activation_required], old) + end + test "with a user that is deactivated, it removes that user", %{conn: conn} do user = insert(:user, info: %{deactivated: true}) diff --git a/test/web/oauth/oauth_controller_test.exs b/test/web/oauth/oauth_controller_test.exs index b492c7794..f24647a37 100644 --- a/test/web/oauth/oauth_controller_test.exs +++ b/test/web/oauth/oauth_controller_test.exs @@ -468,6 +468,29 @@ defmodule Pleroma.Web.OAuth.OAuthControllerTest do assert html_response(conn, 200) =~ ~s(type="submit") end + test "renders authentication page if user is already authenticated but user request with another client", + %{ + app: app, + conn: conn + } do + token = insert(:oauth_token, app_id: app.id) + + conn = + conn + |> put_session(:oauth_token, token.token) + |> get( + "/oauth/authorize", + %{ + "response_type" => "code", + "client_id" => "another_client_id", + "redirect_uri" => OAuthController.default_redirect_uri(app), + "scope" => "read" + } + ) + + assert html_response(conn, 200) =~ ~s(type="submit") + end + test "with existing authentication and non-OOB `redirect_uri`, redirects to app with `token` and `state` params", %{ app: app, |