diff options
author | AkiraFukushima <h3.poteto@gmail.com> | 2019-11-05 23:52:47 +0900 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-11-19 19:15:14 +0300 |
commit | df22197755ab026e1b413af09707ec138b593fad (patch) | |
tree | bece8be87a83864b6c9641ec1ca80899258ced9f /test | |
parent | b74f4260ae8367b33d133298a96fed9d1080ef5c (diff) | |
download | pleroma-df22197755ab026e1b413af09707ec138b593fad.tar.gz |
Check client and token in GET /oauth/authorize
Diffstat (limited to 'test')
-rw-r--r-- | test/web/oauth/oauth_controller_test.exs | 23 |
1 files changed, 23 insertions, 0 deletions
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, |