mirror of
https://github.com/goauthentik/authentik
synced 2026-05-14 10:56:52 +02:00
* providers/oauth: make rp init logout oidc certification changes * update test * slight rework Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix tests Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add oidc certification tests * test * fix backchannel url * make urls uniform * update to main * remove env bind * cleanup patch Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fixup Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add traefik healthcheck Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix healthcheck Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io> Co-authored-by: Jens Langhammer <jens@goauthentik.io>
17 lines
475 B
Python
17 lines
475 B
Python
from tests.decorators import retry
|
|
from tests.openid_conformance.base import TestOpenIDConformance
|
|
|
|
|
|
class TestOpenIDConformanceBasic(TestOpenIDConformance):
|
|
|
|
@retry()
|
|
def test_oidcc_basic_certification_test(self):
|
|
self.run_test(
|
|
"oidcc-basic-certification-test-plan",
|
|
self.test_plan_config,
|
|
{
|
|
"server_metadata": "discovery",
|
|
"client_registration": "static_client",
|
|
},
|
|
)
|