2020-08-19 08:32:44 +00:00
|
|
|
"""test OAuth2 OpenID Provider flow"""
|
2020-09-28 15:22:35 +00:00
|
|
|
from json import loads
|
2020-09-11 21:21:11 +00:00
|
|
|
from sys import platform
|
2020-06-19 17:34:27 +00:00
|
|
|
from time import sleep
|
2020-09-11 21:21:11 +00:00
|
|
|
from unittest.case import skipUnless
|
2020-06-19 17:34:27 +00:00
|
|
|
|
2020-09-28 15:22:35 +00:00
|
|
|
from docker import DockerClient, from_env
|
|
|
|
from docker.models.containers import Container
|
2022-09-04 15:58:30 +00:00
|
|
|
from docker.types import Healthcheck
|
2020-06-19 17:34:27 +00:00
|
|
|
from selenium.webdriver.common.by import By
|
2020-06-21 16:36:43 +00:00
|
|
|
from selenium.webdriver.support import expected_conditions as ec
|
2020-06-19 17:34:27 +00:00
|
|
|
|
2022-08-02 22:05:49 +00:00
|
|
|
from authentik.blueprints.tests import apply_blueprint, reconcile_app
|
2020-12-05 21:08:42 +00:00
|
|
|
from authentik.core.models import Application
|
2021-11-22 21:56:02 +00:00
|
|
|
from authentik.core.tests.utils import create_test_cert
|
2020-12-05 21:08:42 +00:00
|
|
|
from authentik.flows.models import Flow
|
2021-08-23 18:27:38 +00:00
|
|
|
from authentik.lib.generators import generate_id, generate_key
|
2020-12-05 21:08:42 +00:00
|
|
|
from authentik.policies.expression.models import ExpressionPolicy
|
|
|
|
from authentik.policies.models import PolicyBinding
|
|
|
|
from authentik.providers.oauth2.constants import (
|
2020-08-19 08:32:44 +00:00
|
|
|
SCOPE_OPENID,
|
|
|
|
SCOPE_OPENID_EMAIL,
|
|
|
|
SCOPE_OPENID_PROFILE,
|
|
|
|
)
|
2020-12-27 16:33:54 +00:00
|
|
|
from authentik.providers.oauth2.models import ClientTypes, OAuth2Provider, ScopeMapping
|
2022-08-02 22:05:49 +00:00
|
|
|
from tests.e2e.utils import SeleniumTestCase, retry
|
2020-06-19 17:34:27 +00:00
|
|
|
|
|
|
|
|
2020-09-11 21:21:11 +00:00
|
|
|
@skipUnless(platform.startswith("linux"), "requires local docker")
|
2020-08-19 08:32:44 +00:00
|
|
|
class TestProviderOAuth2OIDC(SeleniumTestCase):
|
|
|
|
"""test OAuth with OpenID Provider flow"""
|
2020-06-19 17:34:27 +00:00
|
|
|
|
|
|
|
def setUp(self):
|
2021-08-23 18:27:38 +00:00
|
|
|
self.client_id = generate_id()
|
|
|
|
self.client_secret = generate_key()
|
2020-09-28 15:22:35 +00:00
|
|
|
self.application_slug = "test"
|
2020-07-10 14:49:25 +00:00
|
|
|
super().setUp()
|
2020-06-19 17:34:27 +00:00
|
|
|
|
2020-09-28 15:22:35 +00:00
|
|
|
def setup_client(self) -> Container:
|
|
|
|
"""Setup client saml-sp container which we test SAML against"""
|
|
|
|
sleep(1)
|
|
|
|
client: DockerClient = from_env()
|
|
|
|
container = client.containers.run(
|
2022-10-07 13:56:45 +00:00
|
|
|
image="ghcr.io/beryju/oidc-test-client:v1",
|
2020-09-28 15:22:35 +00:00
|
|
|
detach=True,
|
|
|
|
network_mode="host",
|
2022-09-04 15:58:30 +00:00
|
|
|
healthcheck=Healthcheck(
|
|
|
|
test=["CMD", "wget", "--spider", "http://localhost:9009/health"],
|
|
|
|
interval=5 * 100 * 1000000,
|
|
|
|
start_period=1 * 100 * 1000000,
|
|
|
|
),
|
2020-09-28 15:22:35 +00:00
|
|
|
environment={
|
|
|
|
"OIDC_CLIENT_ID": self.client_id,
|
|
|
|
"OIDC_CLIENT_SECRET": self.client_secret,
|
|
|
|
"OIDC_PROVIDER": f"{self.live_server_url}/application/o/{self.application_slug}/",
|
2020-06-19 17:34:27 +00:00
|
|
|
},
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
while True:
|
|
|
|
container.reload()
|
|
|
|
status = container.attrs.get("State", {}).get("Health", {}).get("Status")
|
|
|
|
if status == "healthy":
|
|
|
|
return container
|
2021-11-23 18:25:31 +00:00
|
|
|
self.logger.info("Container failed healthcheck")
|
2020-09-28 15:22:35 +00:00
|
|
|
sleep(1)
|
2020-06-19 17:34:27 +00:00
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2022-08-01 21:05:58 +00:00
|
|
|
@apply_blueprint(
|
2023-01-24 11:23:22 +00:00
|
|
|
"default/flow-default-authentication-flow.yaml",
|
|
|
|
"default/flow-default-invalidation-flow.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@apply_blueprint(
|
2023-01-24 11:23:22 +00:00
|
|
|
"default/flow-default-provider-authorization-explicit-consent.yaml",
|
|
|
|
"default/flow-default-provider-authorization-implicit-consent.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@reconcile_app("authentik_crypto")
|
2020-06-19 17:34:27 +00:00
|
|
|
def test_redirect_uri_error(self):
|
|
|
|
"""test OpenID Provider flow (invalid redirect URI, check error message)"""
|
2020-06-19 18:33:35 +00:00
|
|
|
sleep(1)
|
2020-06-19 17:34:27 +00:00
|
|
|
# Bootstrap all needed objects
|
2020-06-19 18:35:38 +00:00
|
|
|
authorization_flow = Flow.objects.get(
|
|
|
|
slug="default-provider-authorization-implicit-consent"
|
|
|
|
)
|
2020-08-19 08:32:44 +00:00
|
|
|
provider = OAuth2Provider.objects.create(
|
2020-09-28 15:22:35 +00:00
|
|
|
name=self.application_slug,
|
2020-08-19 08:32:44 +00:00
|
|
|
client_type=ClientTypes.CONFIDENTIAL,
|
2020-06-19 17:34:27 +00:00
|
|
|
client_id=self.client_id,
|
|
|
|
client_secret=self.client_secret,
|
2021-12-22 21:09:49 +00:00
|
|
|
signing_key=create_test_cert(),
|
2020-09-28 15:22:35 +00:00
|
|
|
redirect_uris="http://localhost:9009/",
|
2020-08-19 08:32:44 +00:00
|
|
|
authorization_flow=authorization_flow,
|
2020-06-19 17:34:27 +00:00
|
|
|
)
|
2020-08-19 08:32:44 +00:00
|
|
|
provider.property_mappings.set(
|
|
|
|
ScopeMapping.objects.filter(
|
|
|
|
scope_name__in=[SCOPE_OPENID, SCOPE_OPENID_EMAIL, SCOPE_OPENID_PROFILE]
|
|
|
|
)
|
2020-06-19 17:34:27 +00:00
|
|
|
)
|
2020-08-19 08:32:44 +00:00
|
|
|
provider.save()
|
2020-06-19 17:34:27 +00:00
|
|
|
Application.objects.create(
|
2020-09-30 17:34:22 +00:00
|
|
|
name=self.application_slug,
|
|
|
|
slug=self.application_slug,
|
|
|
|
provider=provider,
|
2020-06-19 17:34:27 +00:00
|
|
|
)
|
2020-09-28 15:22:35 +00:00
|
|
|
self.container = self.setup_client()
|
|
|
|
|
|
|
|
self.driver.get("http://localhost:9009")
|
2020-06-19 17:34:27 +00:00
|
|
|
sleep(2)
|
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(By.CLASS_NAME, "pf-c-title").text,
|
|
|
|
"Redirect URI Error",
|
|
|
|
)
|
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2022-08-01 21:05:58 +00:00
|
|
|
@apply_blueprint(
|
2023-01-24 11:23:22 +00:00
|
|
|
"default/flow-default-authentication-flow.yaml",
|
|
|
|
"default/flow-default-invalidation-flow.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@apply_blueprint(
|
2023-01-24 11:23:22 +00:00
|
|
|
"default/flow-default-provider-authorization-explicit-consent.yaml",
|
|
|
|
"default/flow-default-provider-authorization-implicit-consent.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@reconcile_app("authentik_crypto")
|
2022-08-16 12:20:45 +00:00
|
|
|
@apply_blueprint("system/providers-oauth2.yaml")
|
2020-06-19 18:33:35 +00:00
|
|
|
def test_authorization_consent_implied(self):
|
|
|
|
"""test OpenID Provider flow (default authorization flow with implied consent)"""
|
|
|
|
sleep(1)
|
2020-06-19 17:34:27 +00:00
|
|
|
# Bootstrap all needed objects
|
2020-06-19 18:33:35 +00:00
|
|
|
authorization_flow = Flow.objects.get(
|
|
|
|
slug="default-provider-authorization-implicit-consent"
|
|
|
|
)
|
2020-08-19 08:32:44 +00:00
|
|
|
provider = OAuth2Provider.objects.create(
|
2020-09-28 15:22:35 +00:00
|
|
|
name=self.application_slug,
|
2020-08-19 08:32:44 +00:00
|
|
|
client_type=ClientTypes.CONFIDENTIAL,
|
2020-06-19 17:34:27 +00:00
|
|
|
client_id=self.client_id,
|
|
|
|
client_secret=self.client_secret,
|
2021-12-22 21:09:49 +00:00
|
|
|
signing_key=create_test_cert(),
|
2020-09-28 15:22:35 +00:00
|
|
|
redirect_uris="http://localhost:9009/auth/callback",
|
2020-08-19 08:32:44 +00:00
|
|
|
authorization_flow=authorization_flow,
|
2020-06-19 17:34:27 +00:00
|
|
|
)
|
2020-08-19 08:32:44 +00:00
|
|
|
provider.property_mappings.set(
|
|
|
|
ScopeMapping.objects.filter(
|
|
|
|
scope_name__in=[SCOPE_OPENID, SCOPE_OPENID_EMAIL, SCOPE_OPENID_PROFILE]
|
|
|
|
)
|
2020-06-19 17:34:27 +00:00
|
|
|
)
|
2020-08-19 08:32:44 +00:00
|
|
|
provider.save()
|
2020-06-19 17:34:27 +00:00
|
|
|
Application.objects.create(
|
2020-09-30 17:34:22 +00:00
|
|
|
name=self.application_slug,
|
|
|
|
slug=self.application_slug,
|
|
|
|
provider=provider,
|
2020-09-17 19:55:01 +00:00
|
|
|
)
|
2020-09-28 15:22:35 +00:00
|
|
|
self.container = self.setup_client()
|
|
|
|
|
|
|
|
self.driver.get("http://localhost:9009")
|
2021-02-26 15:46:01 +00:00
|
|
|
self.login()
|
2020-09-28 15:22:35 +00:00
|
|
|
self.wait.until(ec.presence_of_element_located((By.CSS_SELECTOR, "pre")))
|
2022-06-11 16:49:16 +00:00
|
|
|
self.wait.until(ec.text_to_be_present_in_element((By.CSS_SELECTOR, "pre"), "{"))
|
2020-09-28 15:22:35 +00:00
|
|
|
body = loads(self.driver.find_element(By.CSS_SELECTOR, "pre").text)
|
2020-06-19 17:34:27 +00:00
|
|
|
|
2021-11-23 20:30:02 +00:00
|
|
|
self.assertEqual(body["IDTokenClaims"]["nickname"], self.user.username)
|
|
|
|
self.assertEqual(body["UserInfo"]["nickname"], self.user.username)
|
2020-09-28 15:22:35 +00:00
|
|
|
|
2021-11-23 20:30:02 +00:00
|
|
|
self.assertEqual(body["IDTokenClaims"]["name"], self.user.name)
|
|
|
|
self.assertEqual(body["UserInfo"]["name"], self.user.name)
|
2020-09-28 15:22:35 +00:00
|
|
|
|
2021-11-23 20:30:02 +00:00
|
|
|
self.assertEqual(body["IDTokenClaims"]["email"], self.user.email)
|
|
|
|
self.assertEqual(body["UserInfo"]["email"], self.user.email)
|
2020-06-19 18:26:04 +00:00
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2022-08-01 21:05:58 +00:00
|
|
|
@apply_blueprint(
|
2023-01-24 11:23:22 +00:00
|
|
|
"default/flow-default-authentication-flow.yaml",
|
|
|
|
"default/flow-default-invalidation-flow.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@apply_blueprint(
|
2023-01-24 11:23:22 +00:00
|
|
|
"default/flow-default-provider-authorization-explicit-consent.yaml",
|
|
|
|
"default/flow-default-provider-authorization-implicit-consent.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@reconcile_app("authentik_crypto")
|
2022-08-16 12:20:45 +00:00
|
|
|
@apply_blueprint("system/providers-oauth2.yaml")
|
2020-06-19 18:33:35 +00:00
|
|
|
def test_authorization_consent_explicit(self):
|
|
|
|
"""test OpenID Provider flow (default authorization flow with explicit consent)"""
|
|
|
|
sleep(1)
|
2020-06-19 18:26:04 +00:00
|
|
|
# Bootstrap all needed objects
|
|
|
|
authorization_flow = Flow.objects.get(
|
2020-06-19 18:33:35 +00:00
|
|
|
slug="default-provider-authorization-explicit-consent"
|
2020-06-19 18:26:04 +00:00
|
|
|
)
|
2020-08-19 08:32:44 +00:00
|
|
|
provider = OAuth2Provider.objects.create(
|
2020-09-28 15:22:35 +00:00
|
|
|
name=self.application_slug,
|
2020-08-19 08:32:44 +00:00
|
|
|
authorization_flow=authorization_flow,
|
|
|
|
client_type=ClientTypes.CONFIDENTIAL,
|
2020-06-19 18:26:04 +00:00
|
|
|
client_id=self.client_id,
|
|
|
|
client_secret=self.client_secret,
|
2021-12-22 21:09:49 +00:00
|
|
|
signing_key=create_test_cert(),
|
2020-09-28 15:22:35 +00:00
|
|
|
redirect_uris="http://localhost:9009/auth/callback",
|
2020-06-19 18:26:04 +00:00
|
|
|
)
|
2020-08-19 08:32:44 +00:00
|
|
|
provider.property_mappings.set(
|
|
|
|
ScopeMapping.objects.filter(
|
|
|
|
scope_name__in=[SCOPE_OPENID, SCOPE_OPENID_EMAIL, SCOPE_OPENID_PROFILE]
|
|
|
|
)
|
2020-06-19 18:26:04 +00:00
|
|
|
)
|
2020-08-19 08:32:44 +00:00
|
|
|
provider.save()
|
2020-06-19 18:26:04 +00:00
|
|
|
app = Application.objects.create(
|
2020-09-30 17:34:22 +00:00
|
|
|
name=self.application_slug,
|
|
|
|
slug=self.application_slug,
|
|
|
|
provider=provider,
|
2020-06-19 18:26:04 +00:00
|
|
|
)
|
2020-09-28 15:22:35 +00:00
|
|
|
self.container = self.setup_client()
|
|
|
|
|
|
|
|
self.driver.get("http://localhost:9009")
|
2021-02-26 15:46:01 +00:00
|
|
|
self.login()
|
2021-02-27 21:57:15 +00:00
|
|
|
|
2021-08-03 15:45:16 +00:00
|
|
|
self.wait.until(ec.presence_of_element_located((By.CSS_SELECTOR, "ak-flow-executor")))
|
2021-02-27 21:57:15 +00:00
|
|
|
|
2021-02-27 22:33:15 +00:00
|
|
|
flow_executor = self.get_shadow_root("ak-flow-executor")
|
|
|
|
consent_stage = self.get_shadow_root("ak-stage-consent", flow_executor)
|
|
|
|
|
|
|
|
self.assertIn(
|
2020-09-30 17:34:22 +00:00
|
|
|
app.name,
|
2021-02-27 22:33:15 +00:00
|
|
|
consent_stage.find_element(By.CSS_SELECTOR, "#header-text").text,
|
2020-06-21 17:03:13 +00:00
|
|
|
)
|
2021-02-27 22:33:15 +00:00
|
|
|
consent_stage.find_element(
|
|
|
|
By.CSS_SELECTOR,
|
2023-02-01 10:31:32 +00:00
|
|
|
"[type=submit]",
|
2021-02-27 22:33:15 +00:00
|
|
|
).click()
|
2020-06-19 18:26:04 +00:00
|
|
|
|
2020-09-28 15:22:35 +00:00
|
|
|
self.wait.until(ec.presence_of_element_located((By.CSS_SELECTOR, "pre")))
|
2022-06-11 16:49:16 +00:00
|
|
|
self.wait.until(ec.text_to_be_present_in_element((By.CSS_SELECTOR, "pre"), "{"))
|
2020-09-28 15:22:35 +00:00
|
|
|
body = loads(self.driver.find_element(By.CSS_SELECTOR, "pre").text)
|
|
|
|
|
2021-11-23 20:30:02 +00:00
|
|
|
self.assertEqual(body["IDTokenClaims"]["nickname"], self.user.username)
|
|
|
|
self.assertEqual(body["UserInfo"]["nickname"], self.user.username)
|
2020-09-28 15:22:35 +00:00
|
|
|
|
2021-11-23 20:30:02 +00:00
|
|
|
self.assertEqual(body["IDTokenClaims"]["name"], self.user.name)
|
|
|
|
self.assertEqual(body["UserInfo"]["name"], self.user.name)
|
2020-09-28 15:22:35 +00:00
|
|
|
|
2021-11-23 20:30:02 +00:00
|
|
|
self.assertEqual(body["IDTokenClaims"]["email"], self.user.email)
|
|
|
|
self.assertEqual(body["UserInfo"]["email"], self.user.email)
|
2020-07-02 19:55:02 +00:00
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2022-08-01 21:05:58 +00:00
|
|
|
@apply_blueprint(
|
2023-01-24 11:23:22 +00:00
|
|
|
"default/flow-default-authentication-flow.yaml",
|
|
|
|
"default/flow-default-invalidation-flow.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@apply_blueprint(
|
2023-01-24 11:23:22 +00:00
|
|
|
"default/flow-default-provider-authorization-explicit-consent.yaml",
|
|
|
|
"default/flow-default-provider-authorization-implicit-consent.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@reconcile_app("authentik_crypto")
|
2020-07-02 19:55:02 +00:00
|
|
|
def test_authorization_denied(self):
|
|
|
|
"""test OpenID Provider flow (default authorization with access deny)"""
|
|
|
|
sleep(1)
|
|
|
|
# Bootstrap all needed objects
|
|
|
|
authorization_flow = Flow.objects.get(
|
|
|
|
slug="default-provider-authorization-explicit-consent"
|
|
|
|
)
|
2020-08-19 08:32:44 +00:00
|
|
|
provider = OAuth2Provider.objects.create(
|
2020-09-28 15:22:35 +00:00
|
|
|
name=self.application_slug,
|
2020-08-19 08:32:44 +00:00
|
|
|
authorization_flow=authorization_flow,
|
|
|
|
client_type=ClientTypes.CONFIDENTIAL,
|
2020-07-02 19:55:02 +00:00
|
|
|
client_id=self.client_id,
|
|
|
|
client_secret=self.client_secret,
|
2021-12-22 21:09:49 +00:00
|
|
|
signing_key=create_test_cert(),
|
2020-09-28 15:22:35 +00:00
|
|
|
redirect_uris="http://localhost:9009/auth/callback",
|
2020-07-02 19:55:02 +00:00
|
|
|
)
|
2020-08-19 08:32:44 +00:00
|
|
|
provider.property_mappings.set(
|
|
|
|
ScopeMapping.objects.filter(
|
|
|
|
scope_name__in=[SCOPE_OPENID, SCOPE_OPENID_EMAIL, SCOPE_OPENID_PROFILE]
|
|
|
|
)
|
2020-07-02 19:55:02 +00:00
|
|
|
)
|
2020-08-19 08:32:44 +00:00
|
|
|
provider.save()
|
2020-07-02 19:55:02 +00:00
|
|
|
app = Application.objects.create(
|
2020-09-30 17:34:22 +00:00
|
|
|
name=self.application_slug,
|
|
|
|
slug=self.application_slug,
|
|
|
|
provider=provider,
|
2020-07-02 19:55:02 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
negative_policy = ExpressionPolicy.objects.create(
|
|
|
|
name="negative-static", expression="return False"
|
|
|
|
)
|
|
|
|
PolicyBinding.objects.create(target=app, policy=negative_policy, order=0)
|
2020-09-28 15:22:35 +00:00
|
|
|
|
|
|
|
self.container = self.setup_client()
|
|
|
|
self.driver.get("http://localhost:9009")
|
2021-02-26 15:46:01 +00:00
|
|
|
self.login()
|
2021-08-03 15:45:16 +00:00
|
|
|
self.wait.until(ec.presence_of_element_located((By.CSS_SELECTOR, "header > h1")))
|
2020-07-02 19:55:02 +00:00
|
|
|
self.assertEqual(
|
2020-07-08 22:41:14 +00:00
|
|
|
self.driver.find_element(By.CSS_SELECTOR, "header > h1").text,
|
2020-07-02 19:55:02 +00:00
|
|
|
"Permission denied",
|
|
|
|
)
|