Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into remake-remodel
[akkoma] / test / web / oauth / oauth_controller_test.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.OAuth.OAuthControllerTest do
6 use Pleroma.Web.ConnCase
7 import Pleroma.Factory
8
9 alias Pleroma.Repo
10 alias Pleroma.User
11 alias Pleroma.Web.OAuth.Authorization
12 alias Pleroma.Web.OAuth.OAuthController
13 alias Pleroma.Web.OAuth.Token
14
15 @session_opts [
16 store: :cookie,
17 key: "_test",
18 signing_salt: "cooldude"
19 ]
20 clear_config_all([:instance, :account_activation_required])
21
22 describe "in OAuth consumer mode, " do
23 setup do
24 [
25 app: insert(:oauth_app),
26 conn:
27 build_conn()
28 |> Plug.Session.call(Plug.Session.init(@session_opts))
29 |> fetch_session()
30 ]
31 end
32
33 clear_config([:auth, :oauth_consumer_strategies]) do
34 Pleroma.Config.put(
35 [:auth, :oauth_consumer_strategies],
36 ~w(twitter facebook)
37 )
38 end
39
40 test "GET /oauth/authorize renders auth forms, including OAuth consumer form", %{
41 app: app,
42 conn: conn
43 } do
44 conn =
45 get(
46 conn,
47 "/oauth/authorize",
48 %{
49 "response_type" => "code",
50 "client_id" => app.client_id,
51 "redirect_uri" => OAuthController.default_redirect_uri(app),
52 "scope" => "read"
53 }
54 )
55
56 assert response = html_response(conn, 200)
57 assert response =~ "Sign in with Twitter"
58 assert response =~ o_auth_path(conn, :prepare_request)
59 end
60
61 test "GET /oauth/prepare_request encodes parameters as `state` and redirects", %{
62 app: app,
63 conn: conn
64 } do
65 conn =
66 get(
67 conn,
68 "/oauth/prepare_request",
69 %{
70 "provider" => "twitter",
71 "authorization" => %{
72 "scope" => "read follow",
73 "client_id" => app.client_id,
74 "redirect_uri" => OAuthController.default_redirect_uri(app),
75 "state" => "a_state"
76 }
77 }
78 )
79
80 assert response = html_response(conn, 302)
81
82 redirect_query = URI.parse(redirected_to(conn)).query
83 assert %{"state" => state_param} = URI.decode_query(redirect_query)
84 assert {:ok, state_components} = Poison.decode(state_param)
85
86 expected_client_id = app.client_id
87 expected_redirect_uri = app.redirect_uris
88
89 assert %{
90 "scope" => "read follow",
91 "client_id" => ^expected_client_id,
92 "redirect_uri" => ^expected_redirect_uri,
93 "state" => "a_state"
94 } = state_components
95 end
96
97 test "with user-bound registration, GET /oauth/<provider>/callback redirects to `redirect_uri` with `code`",
98 %{app: app, conn: conn} do
99 registration = insert(:registration)
100 redirect_uri = OAuthController.default_redirect_uri(app)
101
102 state_params = %{
103 "scope" => Enum.join(app.scopes, " "),
104 "client_id" => app.client_id,
105 "redirect_uri" => redirect_uri,
106 "state" => ""
107 }
108
109 conn =
110 conn
111 |> assign(:ueberauth_auth, %{provider: registration.provider, uid: registration.uid})
112 |> get(
113 "/oauth/twitter/callback",
114 %{
115 "oauth_token" => "G-5a3AAAAAAAwMH9AAABaektfSM",
116 "oauth_verifier" => "QZl8vUqNvXMTKpdmUnGejJxuHG75WWWs",
117 "provider" => "twitter",
118 "state" => Poison.encode!(state_params)
119 }
120 )
121
122 assert response = html_response(conn, 302)
123 assert redirected_to(conn) =~ ~r/#{redirect_uri}\?code=.+/
124 end
125
126 test "with user-unbound registration, GET /oauth/<provider>/callback renders registration_details page",
127 %{app: app, conn: conn} do
128 user = insert(:user)
129
130 state_params = %{
131 "scope" => "read write",
132 "client_id" => app.client_id,
133 "redirect_uri" => OAuthController.default_redirect_uri(app),
134 "state" => "a_state"
135 }
136
137 conn =
138 conn
139 |> assign(:ueberauth_auth, %{
140 provider: "twitter",
141 uid: "171799000",
142 info: %{nickname: user.nickname, email: user.email, name: user.name, description: nil}
143 })
144 |> get(
145 "/oauth/twitter/callback",
146 %{
147 "oauth_token" => "G-5a3AAAAAAAwMH9AAABaektfSM",
148 "oauth_verifier" => "QZl8vUqNvXMTKpdmUnGejJxuHG75WWWs",
149 "provider" => "twitter",
150 "state" => Poison.encode!(state_params)
151 }
152 )
153
154 assert response = html_response(conn, 200)
155 assert response =~ ~r/name="op" type="submit" value="register"/
156 assert response =~ ~r/name="op" type="submit" value="connect"/
157 assert response =~ user.email
158 assert response =~ user.nickname
159 end
160
161 test "on authentication error, GET /oauth/<provider>/callback redirects to `redirect_uri`", %{
162 app: app,
163 conn: conn
164 } do
165 state_params = %{
166 "scope" => Enum.join(app.scopes, " "),
167 "client_id" => app.client_id,
168 "redirect_uri" => OAuthController.default_redirect_uri(app),
169 "state" => ""
170 }
171
172 conn =
173 conn
174 |> assign(:ueberauth_failure, %{errors: [%{message: "(error description)"}]})
175 |> get(
176 "/oauth/twitter/callback",
177 %{
178 "oauth_token" => "G-5a3AAAAAAAwMH9AAABaektfSM",
179 "oauth_verifier" => "QZl8vUqNvXMTKpdmUnGejJxuHG75WWWs",
180 "provider" => "twitter",
181 "state" => Poison.encode!(state_params)
182 }
183 )
184
185 assert response = html_response(conn, 302)
186 assert redirected_to(conn) == app.redirect_uris
187 assert get_flash(conn, :error) == "Failed to authenticate: (error description)."
188 end
189
190 test "GET /oauth/registration_details renders registration details form", %{
191 app: app,
192 conn: conn
193 } do
194 conn =
195 get(
196 conn,
197 "/oauth/registration_details",
198 %{
199 "authorization" => %{
200 "scopes" => app.scopes,
201 "client_id" => app.client_id,
202 "redirect_uri" => OAuthController.default_redirect_uri(app),
203 "state" => "a_state",
204 "nickname" => nil,
205 "email" => "john@doe.com"
206 }
207 }
208 )
209
210 assert response = html_response(conn, 200)
211 assert response =~ ~r/name="op" type="submit" value="register"/
212 assert response =~ ~r/name="op" type="submit" value="connect"/
213 end
214
215 test "with valid params, POST /oauth/register?op=register redirects to `redirect_uri` with `code`",
216 %{
217 app: app,
218 conn: conn
219 } do
220 registration = insert(:registration, user: nil, info: %{"nickname" => nil, "email" => nil})
221 redirect_uri = OAuthController.default_redirect_uri(app)
222
223 conn =
224 conn
225 |> put_session(:registration_id, registration.id)
226 |> post(
227 "/oauth/register",
228 %{
229 "op" => "register",
230 "authorization" => %{
231 "scopes" => app.scopes,
232 "client_id" => app.client_id,
233 "redirect_uri" => redirect_uri,
234 "state" => "a_state",
235 "nickname" => "availablenick",
236 "email" => "available@email.com"
237 }
238 }
239 )
240
241 assert response = html_response(conn, 302)
242 assert redirected_to(conn) =~ ~r/#{redirect_uri}\?code=.+/
243 end
244
245 test "with unlisted `redirect_uri`, POST /oauth/register?op=register results in HTTP 401",
246 %{
247 app: app,
248 conn: conn
249 } do
250 registration = insert(:registration, user: nil, info: %{"nickname" => nil, "email" => nil})
251 unlisted_redirect_uri = "http://cross-site-request.com"
252
253 conn =
254 conn
255 |> put_session(:registration_id, registration.id)
256 |> post(
257 "/oauth/register",
258 %{
259 "op" => "register",
260 "authorization" => %{
261 "scopes" => app.scopes,
262 "client_id" => app.client_id,
263 "redirect_uri" => unlisted_redirect_uri,
264 "state" => "a_state",
265 "nickname" => "availablenick",
266 "email" => "available@email.com"
267 }
268 }
269 )
270
271 assert response = html_response(conn, 401)
272 end
273
274 test "with invalid params, POST /oauth/register?op=register renders registration_details page",
275 %{
276 app: app,
277 conn: conn
278 } do
279 another_user = insert(:user)
280 registration = insert(:registration, user: nil, info: %{"nickname" => nil, "email" => nil})
281
282 params = %{
283 "op" => "register",
284 "authorization" => %{
285 "scopes" => app.scopes,
286 "client_id" => app.client_id,
287 "redirect_uri" => OAuthController.default_redirect_uri(app),
288 "state" => "a_state",
289 "nickname" => "availablenickname",
290 "email" => "available@email.com"
291 }
292 }
293
294 for {bad_param, bad_param_value} <-
295 [{"nickname", another_user.nickname}, {"email", another_user.email}] do
296 bad_registration_attrs = %{
297 "authorization" => Map.put(params["authorization"], bad_param, bad_param_value)
298 }
299
300 bad_params = Map.merge(params, bad_registration_attrs)
301
302 conn =
303 conn
304 |> put_session(:registration_id, registration.id)
305 |> post("/oauth/register", bad_params)
306
307 assert html_response(conn, 403) =~ ~r/name="op" type="submit" value="register"/
308 assert get_flash(conn, :error) == "Error: #{bad_param} has already been taken."
309 end
310 end
311
312 test "with valid params, POST /oauth/register?op=connect redirects to `redirect_uri` with `code`",
313 %{
314 app: app,
315 conn: conn
316 } do
317 user = insert(:user, password_hash: Comeonin.Pbkdf2.hashpwsalt("testpassword"))
318 registration = insert(:registration, user: nil)
319 redirect_uri = OAuthController.default_redirect_uri(app)
320
321 conn =
322 conn
323 |> put_session(:registration_id, registration.id)
324 |> post(
325 "/oauth/register",
326 %{
327 "op" => "connect",
328 "authorization" => %{
329 "scopes" => app.scopes,
330 "client_id" => app.client_id,
331 "redirect_uri" => redirect_uri,
332 "state" => "a_state",
333 "name" => user.nickname,
334 "password" => "testpassword"
335 }
336 }
337 )
338
339 assert response = html_response(conn, 302)
340 assert redirected_to(conn) =~ ~r/#{redirect_uri}\?code=.+/
341 end
342
343 test "with unlisted `redirect_uri`, POST /oauth/register?op=connect results in HTTP 401`",
344 %{
345 app: app,
346 conn: conn
347 } do
348 user = insert(:user, password_hash: Comeonin.Pbkdf2.hashpwsalt("testpassword"))
349 registration = insert(:registration, user: nil)
350 unlisted_redirect_uri = "http://cross-site-request.com"
351
352 conn =
353 conn
354 |> put_session(:registration_id, registration.id)
355 |> post(
356 "/oauth/register",
357 %{
358 "op" => "connect",
359 "authorization" => %{
360 "scopes" => app.scopes,
361 "client_id" => app.client_id,
362 "redirect_uri" => unlisted_redirect_uri,
363 "state" => "a_state",
364 "name" => user.nickname,
365 "password" => "testpassword"
366 }
367 }
368 )
369
370 assert response = html_response(conn, 401)
371 end
372
373 test "with invalid params, POST /oauth/register?op=connect renders registration_details page",
374 %{
375 app: app,
376 conn: conn
377 } do
378 user = insert(:user)
379 registration = insert(:registration, user: nil)
380
381 params = %{
382 "op" => "connect",
383 "authorization" => %{
384 "scopes" => app.scopes,
385 "client_id" => app.client_id,
386 "redirect_uri" => OAuthController.default_redirect_uri(app),
387 "state" => "a_state",
388 "name" => user.nickname,
389 "password" => "wrong password"
390 }
391 }
392
393 conn =
394 conn
395 |> put_session(:registration_id, registration.id)
396 |> post("/oauth/register", params)
397
398 assert html_response(conn, 401) =~ ~r/name="op" type="submit" value="connect"/
399 assert get_flash(conn, :error) == "Invalid Username/Password"
400 end
401 end
402
403 describe "GET /oauth/authorize" do
404 setup do
405 [
406 app: insert(:oauth_app, redirect_uris: "https://redirect.url"),
407 conn:
408 build_conn()
409 |> Plug.Session.call(Plug.Session.init(@session_opts))
410 |> fetch_session()
411 ]
412 end
413
414 test "renders authentication page", %{app: app, conn: conn} do
415 conn =
416 get(
417 conn,
418 "/oauth/authorize",
419 %{
420 "response_type" => "code",
421 "client_id" => app.client_id,
422 "redirect_uri" => OAuthController.default_redirect_uri(app),
423 "scope" => "read"
424 }
425 )
426
427 assert html_response(conn, 200) =~ ~s(type="submit")
428 end
429
430 test "properly handles internal calls with `authorization`-wrapped params", %{
431 app: app,
432 conn: conn
433 } do
434 conn =
435 get(
436 conn,
437 "/oauth/authorize",
438 %{
439 "authorization" => %{
440 "response_type" => "code",
441 "client_id" => app.client_id,
442 "redirect_uri" => OAuthController.default_redirect_uri(app),
443 "scope" => "read"
444 }
445 }
446 )
447
448 assert html_response(conn, 200) =~ ~s(type="submit")
449 end
450
451 test "renders authentication page if user is already authenticated but `force_login` is tru-ish",
452 %{app: app, conn: conn} do
453 token = insert(:oauth_token, app_id: app.id)
454
455 conn =
456 conn
457 |> put_session(:oauth_token, token.token)
458 |> get(
459 "/oauth/authorize",
460 %{
461 "response_type" => "code",
462 "client_id" => app.client_id,
463 "redirect_uri" => OAuthController.default_redirect_uri(app),
464 "scope" => "read",
465 "force_login" => "true"
466 }
467 )
468
469 assert html_response(conn, 200) =~ ~s(type="submit")
470 end
471
472 test "renders authentication page if user is already authenticated but user request with another client",
473 %{
474 app: app,
475 conn: conn
476 } do
477 token = insert(:oauth_token, app_id: app.id)
478
479 conn =
480 conn
481 |> put_session(:oauth_token, token.token)
482 |> get(
483 "/oauth/authorize",
484 %{
485 "response_type" => "code",
486 "client_id" => "another_client_id",
487 "redirect_uri" => OAuthController.default_redirect_uri(app),
488 "scope" => "read"
489 }
490 )
491
492 assert html_response(conn, 200) =~ ~s(type="submit")
493 end
494
495 test "with existing authentication and non-OOB `redirect_uri`, redirects to app with `token` and `state` params",
496 %{
497 app: app,
498 conn: conn
499 } do
500 token = insert(:oauth_token, app_id: app.id)
501
502 conn =
503 conn
504 |> put_session(:oauth_token, token.token)
505 |> get(
506 "/oauth/authorize",
507 %{
508 "response_type" => "code",
509 "client_id" => app.client_id,
510 "redirect_uri" => OAuthController.default_redirect_uri(app),
511 "state" => "specific_client_state",
512 "scope" => "read"
513 }
514 )
515
516 assert URI.decode(redirected_to(conn)) ==
517 "https://redirect.url?access_token=#{token.token}&state=specific_client_state"
518 end
519
520 test "with existing authentication and unlisted non-OOB `redirect_uri`, redirects without credentials",
521 %{
522 app: app,
523 conn: conn
524 } do
525 unlisted_redirect_uri = "http://cross-site-request.com"
526 token = insert(:oauth_token, app_id: app.id)
527
528 conn =
529 conn
530 |> put_session(:oauth_token, token.token)
531 |> get(
532 "/oauth/authorize",
533 %{
534 "response_type" => "code",
535 "client_id" => app.client_id,
536 "redirect_uri" => unlisted_redirect_uri,
537 "state" => "specific_client_state",
538 "scope" => "read"
539 }
540 )
541
542 assert redirected_to(conn) == unlisted_redirect_uri
543 end
544
545 test "with existing authentication and OOB `redirect_uri`, redirects to app with `token` and `state` params",
546 %{
547 app: app,
548 conn: conn
549 } do
550 token = insert(:oauth_token, app_id: app.id)
551
552 conn =
553 conn
554 |> put_session(:oauth_token, token.token)
555 |> get(
556 "/oauth/authorize",
557 %{
558 "response_type" => "code",
559 "client_id" => app.client_id,
560 "redirect_uri" => "urn:ietf:wg:oauth:2.0:oob",
561 "scope" => "read"
562 }
563 )
564
565 assert html_response(conn, 200) =~ "Authorization exists"
566 end
567 end
568
569 describe "POST /oauth/authorize" do
570 test "redirects with oauth authorization" do
571 user = insert(:user)
572 app = insert(:oauth_app, scopes: ["read", "write", "follow"])
573 redirect_uri = OAuthController.default_redirect_uri(app)
574
575 conn =
576 build_conn()
577 |> post("/oauth/authorize", %{
578 "authorization" => %{
579 "name" => user.nickname,
580 "password" => "test",
581 "client_id" => app.client_id,
582 "redirect_uri" => redirect_uri,
583 "scope" => "read:subscope write",
584 "state" => "statepassed"
585 }
586 })
587
588 target = redirected_to(conn)
589 assert target =~ redirect_uri
590
591 query = URI.parse(target).query |> URI.query_decoder() |> Map.new()
592
593 assert %{"state" => "statepassed", "code" => code} = query
594 auth = Repo.get_by(Authorization, token: code)
595 assert auth
596 assert auth.scopes == ["read:subscope", "write"]
597 end
598
599 test "returns 401 for wrong credentials", %{conn: conn} do
600 user = insert(:user)
601 app = insert(:oauth_app)
602 redirect_uri = OAuthController.default_redirect_uri(app)
603
604 result =
605 conn
606 |> post("/oauth/authorize", %{
607 "authorization" => %{
608 "name" => user.nickname,
609 "password" => "wrong",
610 "client_id" => app.client_id,
611 "redirect_uri" => redirect_uri,
612 "state" => "statepassed",
613 "scope" => Enum.join(app.scopes, " ")
614 }
615 })
616 |> html_response(:unauthorized)
617
618 # Keep the details
619 assert result =~ app.client_id
620 assert result =~ redirect_uri
621
622 # Error message
623 assert result =~ "Invalid Username/Password"
624 end
625
626 test "returns 401 for missing scopes", %{conn: conn} do
627 user = insert(:user)
628 app = insert(:oauth_app)
629 redirect_uri = OAuthController.default_redirect_uri(app)
630
631 result =
632 conn
633 |> post("/oauth/authorize", %{
634 "authorization" => %{
635 "name" => user.nickname,
636 "password" => "test",
637 "client_id" => app.client_id,
638 "redirect_uri" => redirect_uri,
639 "state" => "statepassed",
640 "scope" => ""
641 }
642 })
643 |> html_response(:unauthorized)
644
645 # Keep the details
646 assert result =~ app.client_id
647 assert result =~ redirect_uri
648
649 # Error message
650 assert result =~ "This action is outside the authorized scopes"
651 end
652
653 test "returns 401 for scopes beyond app scopes hierarchy", %{conn: conn} do
654 user = insert(:user)
655 app = insert(:oauth_app, scopes: ["read", "write"])
656 redirect_uri = OAuthController.default_redirect_uri(app)
657
658 result =
659 conn
660 |> post("/oauth/authorize", %{
661 "authorization" => %{
662 "name" => user.nickname,
663 "password" => "test",
664 "client_id" => app.client_id,
665 "redirect_uri" => redirect_uri,
666 "state" => "statepassed",
667 "scope" => "read write follow"
668 }
669 })
670 |> html_response(:unauthorized)
671
672 # Keep the details
673 assert result =~ app.client_id
674 assert result =~ redirect_uri
675
676 # Error message
677 assert result =~ "This action is outside the authorized scopes"
678 end
679 end
680
681 describe "POST /oauth/token" do
682 test "issues a token for an all-body request" do
683 user = insert(:user)
684 app = insert(:oauth_app, scopes: ["read", "write"])
685
686 {:ok, auth} = Authorization.create_authorization(app, user, ["write"])
687
688 conn =
689 build_conn()
690 |> post("/oauth/token", %{
691 "grant_type" => "authorization_code",
692 "code" => auth.token,
693 "redirect_uri" => OAuthController.default_redirect_uri(app),
694 "client_id" => app.client_id,
695 "client_secret" => app.client_secret
696 })
697
698 assert %{"access_token" => token, "me" => ap_id} = json_response(conn, 200)
699
700 token = Repo.get_by(Token, token: token)
701 assert token
702 assert token.scopes == auth.scopes
703 assert user.ap_id == ap_id
704 end
705
706 test "issues a token for `password` grant_type with valid credentials, with full permissions by default" do
707 password = "testpassword"
708 user = insert(:user, password_hash: Comeonin.Pbkdf2.hashpwsalt(password))
709
710 app = insert(:oauth_app, scopes: ["read", "write"])
711
712 # Note: "scope" param is intentionally omitted
713 conn =
714 build_conn()
715 |> post("/oauth/token", %{
716 "grant_type" => "password",
717 "username" => user.nickname,
718 "password" => password,
719 "client_id" => app.client_id,
720 "client_secret" => app.client_secret
721 })
722
723 assert %{"access_token" => token} = json_response(conn, 200)
724
725 token = Repo.get_by(Token, token: token)
726 assert token
727 assert token.scopes == app.scopes
728 end
729
730 test "issues a token for request with HTTP basic auth client credentials" do
731 user = insert(:user)
732 app = insert(:oauth_app, scopes: ["scope1", "scope2", "scope3"])
733
734 {:ok, auth} = Authorization.create_authorization(app, user, ["scope1", "scope2"])
735 assert auth.scopes == ["scope1", "scope2"]
736
737 app_encoded =
738 (URI.encode_www_form(app.client_id) <> ":" <> URI.encode_www_form(app.client_secret))
739 |> Base.encode64()
740
741 conn =
742 build_conn()
743 |> put_req_header("authorization", "Basic " <> app_encoded)
744 |> post("/oauth/token", %{
745 "grant_type" => "authorization_code",
746 "code" => auth.token,
747 "redirect_uri" => OAuthController.default_redirect_uri(app)
748 })
749
750 assert %{"access_token" => token, "scope" => scope} = json_response(conn, 200)
751
752 assert scope == "scope1 scope2"
753
754 token = Repo.get_by(Token, token: token)
755 assert token
756 assert token.scopes == ["scope1", "scope2"]
757 end
758
759 test "issue a token for client_credentials grant type" do
760 app = insert(:oauth_app, scopes: ["read", "write"])
761
762 conn =
763 build_conn()
764 |> post("/oauth/token", %{
765 "grant_type" => "client_credentials",
766 "client_id" => app.client_id,
767 "client_secret" => app.client_secret
768 })
769
770 assert %{"access_token" => token, "refresh_token" => refresh, "scope" => scope} =
771 json_response(conn, 200)
772
773 assert token
774 token_from_db = Repo.get_by(Token, token: token)
775 assert token_from_db
776 assert refresh
777 assert scope == "read write"
778 end
779
780 test "rejects token exchange with invalid client credentials" do
781 user = insert(:user)
782 app = insert(:oauth_app)
783
784 {:ok, auth} = Authorization.create_authorization(app, user)
785
786 conn =
787 build_conn()
788 |> put_req_header("authorization", "Basic JTIxOiVGMCU5RiVBNCVCNwo=")
789 |> post("/oauth/token", %{
790 "grant_type" => "authorization_code",
791 "code" => auth.token,
792 "redirect_uri" => OAuthController.default_redirect_uri(app)
793 })
794
795 assert resp = json_response(conn, 400)
796 assert %{"error" => _} = resp
797 refute Map.has_key?(resp, "access_token")
798 end
799
800 test "rejects token exchange for valid credentials belonging to unconfirmed user and confirmation is required" do
801 Pleroma.Config.put([:instance, :account_activation_required], true)
802 password = "testpassword"
803
804 {:ok, user} =
805 insert(:user, password_hash: Comeonin.Pbkdf2.hashpwsalt(password))
806 |> User.confirmation_changeset(need_confirmation: true)
807 |> User.update_and_set_cache()
808
809 refute Pleroma.User.auth_active?(user)
810
811 app = insert(:oauth_app)
812
813 conn =
814 build_conn()
815 |> post("/oauth/token", %{
816 "grant_type" => "password",
817 "username" => user.nickname,
818 "password" => password,
819 "client_id" => app.client_id,
820 "client_secret" => app.client_secret
821 })
822
823 assert resp = json_response(conn, 403)
824 assert %{"error" => _} = resp
825 refute Map.has_key?(resp, "access_token")
826 end
827
828 test "rejects token exchange for valid credentials belonging to deactivated user" do
829 password = "testpassword"
830
831 user =
832 insert(:user,
833 password_hash: Comeonin.Pbkdf2.hashpwsalt(password),
834 deactivated: true
835 )
836
837 app = insert(:oauth_app)
838
839 conn =
840 build_conn()
841 |> post("/oauth/token", %{
842 "grant_type" => "password",
843 "username" => user.nickname,
844 "password" => password,
845 "client_id" => app.client_id,
846 "client_secret" => app.client_secret
847 })
848
849 assert resp = json_response(conn, 403)
850 assert %{"error" => _} = resp
851 refute Map.has_key?(resp, "access_token")
852 end
853
854 test "rejects token exchange for user with password_reset_pending set to true" do
855 password = "testpassword"
856
857 user =
858 insert(:user,
859 password_hash: Comeonin.Pbkdf2.hashpwsalt(password),
860 password_reset_pending: true
861 )
862
863 app = insert(:oauth_app, scopes: ["read", "write"])
864
865 conn =
866 build_conn()
867 |> post("/oauth/token", %{
868 "grant_type" => "password",
869 "username" => user.nickname,
870 "password" => password,
871 "client_id" => app.client_id,
872 "client_secret" => app.client_secret
873 })
874
875 assert resp = json_response(conn, 403)
876
877 assert resp["error"] == "Password reset is required"
878 assert resp["identifier"] == "password_reset_required"
879 refute Map.has_key?(resp, "access_token")
880 end
881
882 test "rejects an invalid authorization code" do
883 app = insert(:oauth_app)
884
885 conn =
886 build_conn()
887 |> post("/oauth/token", %{
888 "grant_type" => "authorization_code",
889 "code" => "Imobviouslyinvalid",
890 "redirect_uri" => OAuthController.default_redirect_uri(app),
891 "client_id" => app.client_id,
892 "client_secret" => app.client_secret
893 })
894
895 assert resp = json_response(conn, 400)
896 assert %{"error" => _} = json_response(conn, 400)
897 refute Map.has_key?(resp, "access_token")
898 end
899 end
900
901 describe "POST /oauth/token - refresh token" do
902 clear_config([:oauth2, :issue_new_refresh_token])
903
904 test "issues a new access token with keep fresh token" do
905 Pleroma.Config.put([:oauth2, :issue_new_refresh_token], true)
906 user = insert(:user)
907 app = insert(:oauth_app, scopes: ["read", "write"])
908
909 {:ok, auth} = Authorization.create_authorization(app, user, ["write"])
910 {:ok, token} = Token.exchange_token(app, auth)
911
912 response =
913 build_conn()
914 |> post("/oauth/token", %{
915 "grant_type" => "refresh_token",
916 "refresh_token" => token.refresh_token,
917 "client_id" => app.client_id,
918 "client_secret" => app.client_secret
919 })
920 |> json_response(200)
921
922 ap_id = user.ap_id
923
924 assert match?(
925 %{
926 "scope" => "write",
927 "token_type" => "Bearer",
928 "expires_in" => 600,
929 "access_token" => _,
930 "refresh_token" => _,
931 "me" => ^ap_id
932 },
933 response
934 )
935
936 refute Repo.get_by(Token, token: token.token)
937 new_token = Repo.get_by(Token, token: response["access_token"])
938 assert new_token.refresh_token == token.refresh_token
939 assert new_token.scopes == auth.scopes
940 assert new_token.user_id == user.id
941 assert new_token.app_id == app.id
942 end
943
944 test "issues a new access token with new fresh token" do
945 Pleroma.Config.put([:oauth2, :issue_new_refresh_token], false)
946 user = insert(:user)
947 app = insert(:oauth_app, scopes: ["read", "write"])
948
949 {:ok, auth} = Authorization.create_authorization(app, user, ["write"])
950 {:ok, token} = Token.exchange_token(app, auth)
951
952 response =
953 build_conn()
954 |> post("/oauth/token", %{
955 "grant_type" => "refresh_token",
956 "refresh_token" => token.refresh_token,
957 "client_id" => app.client_id,
958 "client_secret" => app.client_secret
959 })
960 |> json_response(200)
961
962 ap_id = user.ap_id
963
964 assert match?(
965 %{
966 "scope" => "write",
967 "token_type" => "Bearer",
968 "expires_in" => 600,
969 "access_token" => _,
970 "refresh_token" => _,
971 "me" => ^ap_id
972 },
973 response
974 )
975
976 refute Repo.get_by(Token, token: token.token)
977 new_token = Repo.get_by(Token, token: response["access_token"])
978 refute new_token.refresh_token == token.refresh_token
979 assert new_token.scopes == auth.scopes
980 assert new_token.user_id == user.id
981 assert new_token.app_id == app.id
982 end
983
984 test "returns 400 if we try use access token" do
985 user = insert(:user)
986 app = insert(:oauth_app, scopes: ["read", "write"])
987
988 {:ok, auth} = Authorization.create_authorization(app, user, ["write"])
989 {:ok, token} = Token.exchange_token(app, auth)
990
991 response =
992 build_conn()
993 |> post("/oauth/token", %{
994 "grant_type" => "refresh_token",
995 "refresh_token" => token.token,
996 "client_id" => app.client_id,
997 "client_secret" => app.client_secret
998 })
999 |> json_response(400)
1000
1001 assert %{"error" => "Invalid credentials"} == response
1002 end
1003
1004 test "returns 400 if refresh_token invalid" do
1005 app = insert(:oauth_app, scopes: ["read", "write"])
1006
1007 response =
1008 build_conn()
1009 |> post("/oauth/token", %{
1010 "grant_type" => "refresh_token",
1011 "refresh_token" => "token.refresh_token",
1012 "client_id" => app.client_id,
1013 "client_secret" => app.client_secret
1014 })
1015 |> json_response(400)
1016
1017 assert %{"error" => "Invalid credentials"} == response
1018 end
1019
1020 test "issues a new token if token expired" do
1021 user = insert(:user)
1022 app = insert(:oauth_app, scopes: ["read", "write"])
1023
1024 {:ok, auth} = Authorization.create_authorization(app, user, ["write"])
1025 {:ok, token} = Token.exchange_token(app, auth)
1026
1027 change =
1028 Ecto.Changeset.change(
1029 token,
1030 %{valid_until: NaiveDateTime.add(NaiveDateTime.utc_now(), -86_400 * 30)}
1031 )
1032
1033 {:ok, access_token} = Repo.update(change)
1034
1035 response =
1036 build_conn()
1037 |> post("/oauth/token", %{
1038 "grant_type" => "refresh_token",
1039 "refresh_token" => access_token.refresh_token,
1040 "client_id" => app.client_id,
1041 "client_secret" => app.client_secret
1042 })
1043 |> json_response(200)
1044
1045 ap_id = user.ap_id
1046
1047 assert match?(
1048 %{
1049 "scope" => "write",
1050 "token_type" => "Bearer",
1051 "expires_in" => 600,
1052 "access_token" => _,
1053 "refresh_token" => _,
1054 "me" => ^ap_id
1055 },
1056 response
1057 )
1058
1059 refute Repo.get_by(Token, token: token.token)
1060 token = Repo.get_by(Token, token: response["access_token"])
1061 assert token
1062 assert token.scopes == auth.scopes
1063 assert token.user_id == user.id
1064 assert token.app_id == app.id
1065 end
1066 end
1067
1068 describe "POST /oauth/token - bad request" do
1069 test "returns 500" do
1070 response =
1071 build_conn()
1072 |> post("/oauth/token", %{})
1073 |> json_response(500)
1074
1075 assert %{"error" => "Bad request"} == response
1076 end
1077 end
1078
1079 describe "POST /oauth/revoke - bad request" do
1080 test "returns 500" do
1081 response =
1082 build_conn()
1083 |> post("/oauth/revoke", %{})
1084 |> json_response(500)
1085
1086 assert %{"error" => "Bad request"} == response
1087 end
1088 end
1089 end