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
|
2020-09-09 22:14:59 +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
|
2021-01-01 14:39:43 +00:00
|
|
|
from structlog.stdlib import get_logger
|
2020-06-19 17:34:27 +00:00
|
|
|
|
2020-12-05 21:08:42 +00:00
|
|
|
from authentik.core.models import Application
|
|
|
|
from authentik.crypto.models import CertificateKeyPair
|
|
|
|
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
|
2021-08-03 15:45:16 +00:00
|
|
|
from tests.e2e.utils import USER, SeleniumTestCase, apply_migration, object_manager, retry
|
2020-06-19 17:34:27 +00:00
|
|
|
|
2020-08-14 16:09:49 +00:00
|
|
|
LOGGER = get_logger()
|
|
|
|
|
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(
|
2021-06-08 13:32:23 +00:00
|
|
|
image="ghcr.io/beryju/oidc-test-client:latest",
|
2020-09-28 15:22:35 +00:00
|
|
|
detach=True,
|
|
|
|
network_mode="host",
|
|
|
|
auto_remove=True,
|
|
|
|
healthcheck=Healthcheck(
|
|
|
|
test=["CMD", "wget", "--spider", "http://localhost:9009/health"],
|
2020-06-19 17:34:27 +00:00
|
|
|
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
|
|
|
|
LOGGER.info("Container failed healthcheck")
|
|
|
|
sleep(1)
|
2020-06-19 17:34:27 +00:00
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2021-02-27 21:57:15 +00:00
|
|
|
@apply_migration("authentik_core", "0003_default_user")
|
|
|
|
@apply_migration("authentik_flows", "0008_default_flows")
|
2021-05-25 07:48:45 +00:00
|
|
|
@apply_migration("authentik_flows", "0011_flow_title")
|
2021-02-27 21:57:15 +00:00
|
|
|
@apply_migration("authentik_flows", "0010_provider_flows")
|
2021-02-27 22:33:15 +00:00
|
|
|
@apply_migration("authentik_crypto", "0002_create_self_signed_kp")
|
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,
|
2020-08-19 08:32:44 +00:00
|
|
|
rsa_key=CertificateKeyPair.objects.first(),
|
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()
|
2021-02-27 21:57:15 +00:00
|
|
|
@apply_migration("authentik_core", "0003_default_user")
|
|
|
|
@apply_migration("authentik_flows", "0008_default_flows")
|
2021-05-25 07:48:45 +00:00
|
|
|
@apply_migration("authentik_flows", "0011_flow_title")
|
2021-02-27 21:57:15 +00:00
|
|
|
@apply_migration("authentik_flows", "0010_provider_flows")
|
2021-02-27 22:33:15 +00:00
|
|
|
@apply_migration("authentik_crypto", "0002_create_self_signed_kp")
|
|
|
|
@object_manager
|
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,
|
2020-08-19 08:32:44 +00:00
|
|
|
rsa_key=CertificateKeyPair.objects.first(),
|
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")))
|
|
|
|
body = loads(self.driver.find_element(By.CSS_SELECTOR, "pre").text)
|
2020-06-19 17:34:27 +00:00
|
|
|
|
2020-09-28 15:22:35 +00:00
|
|
|
self.assertEqual(body["IDTokenClaims"]["nickname"], USER().username)
|
|
|
|
self.assertEqual(body["UserInfo"]["nickname"], USER().username)
|
|
|
|
|
|
|
|
self.assertEqual(body["IDTokenClaims"]["name"], USER().name)
|
|
|
|
self.assertEqual(body["UserInfo"]["name"], USER().name)
|
|
|
|
|
|
|
|
self.assertEqual(body["IDTokenClaims"]["email"], USER().email)
|
|
|
|
self.assertEqual(body["UserInfo"]["email"], USER().email)
|
2020-06-19 18:26:04 +00:00
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2021-02-27 21:57:15 +00:00
|
|
|
@apply_migration("authentik_core", "0003_default_user")
|
|
|
|
@apply_migration("authentik_flows", "0008_default_flows")
|
2021-05-25 07:48:45 +00:00
|
|
|
@apply_migration("authentik_flows", "0011_flow_title")
|
2021-02-27 21:57:15 +00:00
|
|
|
@apply_migration("authentik_flows", "0010_provider_flows")
|
2021-02-27 22:33:15 +00:00
|
|
|
@apply_migration("authentik_crypto", "0002_create_self_signed_kp")
|
|
|
|
@object_manager
|
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,
|
2020-08-19 08:32:44 +00:00
|
|
|
rsa_key=CertificateKeyPair.objects.first(),
|
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,
|
|
|
|
("[type=submit]"),
|
|
|
|
).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")))
|
|
|
|
body = loads(self.driver.find_element(By.CSS_SELECTOR, "pre").text)
|
|
|
|
|
|
|
|
self.assertEqual(body["IDTokenClaims"]["nickname"], USER().username)
|
|
|
|
self.assertEqual(body["UserInfo"]["nickname"], USER().username)
|
|
|
|
|
|
|
|
self.assertEqual(body["IDTokenClaims"]["name"], USER().name)
|
|
|
|
self.assertEqual(body["UserInfo"]["name"], USER().name)
|
|
|
|
|
|
|
|
self.assertEqual(body["IDTokenClaims"]["email"], USER().email)
|
|
|
|
self.assertEqual(body["UserInfo"]["email"], USER().email)
|
2020-07-02 19:55:02 +00:00
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2021-02-27 21:57:15 +00:00
|
|
|
@apply_migration("authentik_core", "0003_default_user")
|
|
|
|
@apply_migration("authentik_flows", "0008_default_flows")
|
2021-05-25 07:48:45 +00:00
|
|
|
@apply_migration("authentik_flows", "0011_flow_title")
|
2021-02-27 21:57:15 +00:00
|
|
|
@apply_migration("authentik_flows", "0010_provider_flows")
|
2021-02-27 22:33:15 +00:00
|
|
|
@apply_migration("authentik_crypto", "0002_create_self_signed_kp")
|
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,
|
2020-08-19 08:32:44 +00:00
|
|
|
rsa_key=CertificateKeyPair.objects.first(),
|
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",
|
|
|
|
)
|