From 179640af30cf1f8d87001446fd165963afc7fb0f Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Wed, 5 Apr 2023 20:47:12 +0200 Subject: [PATCH] todos --- packages/backend/test/e2e/oauth.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/backend/test/e2e/oauth.ts b/packages/backend/test/e2e/oauth.ts index 28fe8cb95a..ab85e2910b 100644 --- a/packages/backend/test/e2e/oauth.ts +++ b/packages/backend/test/e2e/oauth.ts @@ -161,4 +161,14 @@ describe('OAuth', () => { assert.ok(!location.searchParams.has('code')); assert.ok(location.searchParams.has('error')); }); + + // TODO: .well-known/oauth-authorization-server + + // TODO: scopes (totally missing / empty / exists but all invalid / exists but partially invalid / all valid) + + // TODO: PKCE verification failure + + // TODO: authorizing two users concurrently + + // TODO: invalid redirect_uri (at authorize / at token) });