2020-09-28 15:22:35 +00:00
|
|
|
"""test OAuth2 OpenID Provider flow"""
|
|
|
|
from sys import platform
|
|
|
|
from time import sleep
|
|
|
|
from typing import Any, Dict, Optional
|
|
|
|
from unittest.case import skipUnless
|
|
|
|
|
|
|
|
from docker.types import Healthcheck
|
|
|
|
from selenium.webdriver.common.by import By
|
|
|
|
from selenium.webdriver.common.keys import Keys
|
|
|
|
from selenium.webdriver.support import expected_conditions as ec
|
|
|
|
from structlog import get_logger
|
|
|
|
|
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
|
|
|
|
from authentik.policies.expression.models import ExpressionPolicy
|
|
|
|
from authentik.policies.models import PolicyBinding
|
|
|
|
from authentik.providers.oauth2.constants import (
|
2020-09-28 15:22:35 +00:00
|
|
|
SCOPE_OPENID,
|
|
|
|
SCOPE_OPENID_EMAIL,
|
|
|
|
SCOPE_OPENID_PROFILE,
|
|
|
|
)
|
2020-12-05 21:08:42 +00:00
|
|
|
from authentik.providers.oauth2.generators import (
|
2020-09-28 15:22:35 +00:00
|
|
|
generate_client_id,
|
|
|
|
generate_client_secret,
|
|
|
|
)
|
2020-12-05 21:08:42 +00:00
|
|
|
from authentik.providers.oauth2.models import (
|
2020-09-28 15:22:35 +00:00
|
|
|
ClientTypes,
|
|
|
|
OAuth2Provider,
|
|
|
|
ResponseTypes,
|
|
|
|
ScopeMapping,
|
|
|
|
)
|
2020-11-19 13:25:53 +00:00
|
|
|
from tests.e2e.utils import USER, SeleniumTestCase, retry
|
2020-09-28 15:22:35 +00:00
|
|
|
|
|
|
|
LOGGER = get_logger()
|
|
|
|
APPLICATION_SLUG = "grafana"
|
|
|
|
|
|
|
|
|
|
|
|
@skipUnless(platform.startswith("linux"), "requires local docker")
|
|
|
|
class TestProviderOAuth2OAuth(SeleniumTestCase):
|
|
|
|
"""test OAuth with OAuth Provider flow"""
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.client_id = generate_client_id()
|
|
|
|
self.client_secret = generate_client_secret()
|
|
|
|
super().setUp()
|
|
|
|
|
|
|
|
def get_container_specs(self) -> Optional[Dict[str, Any]]:
|
|
|
|
return {
|
2020-10-26 23:34:30 +00:00
|
|
|
"image": "docker.beryju.org/proxy/grafana/grafana:7.1.0",
|
2020-09-28 15:22:35 +00:00
|
|
|
"detach": True,
|
|
|
|
"network_mode": "host",
|
|
|
|
"auto_remove": True,
|
|
|
|
"healthcheck": Healthcheck(
|
|
|
|
test=["CMD", "wget", "--spider", "http://localhost:3000"],
|
|
|
|
interval=5 * 100 * 1000000,
|
|
|
|
start_period=1 * 100 * 1000000,
|
|
|
|
),
|
|
|
|
"environment": {
|
|
|
|
"GF_AUTH_GENERIC_OAUTH_ENABLED": "true",
|
|
|
|
"GF_AUTH_GENERIC_OAUTH_CLIENT_ID": self.client_id,
|
|
|
|
"GF_AUTH_GENERIC_OAUTH_CLIENT_SECRET": self.client_secret,
|
|
|
|
"GF_AUTH_GENERIC_OAUTH_SCOPES": "openid email profile",
|
|
|
|
"GF_AUTH_GENERIC_OAUTH_AUTH_URL": (
|
2020-12-05 21:08:42 +00:00
|
|
|
self.url("authentik_providers_oauth2:authorize")
|
2020-09-28 15:22:35 +00:00
|
|
|
),
|
|
|
|
"GF_AUTH_GENERIC_OAUTH_TOKEN_URL": (
|
2020-12-05 21:08:42 +00:00
|
|
|
self.url("authentik_providers_oauth2:token")
|
2020-09-28 15:22:35 +00:00
|
|
|
),
|
|
|
|
"GF_AUTH_GENERIC_OAUTH_API_URL": (
|
2020-12-05 21:08:42 +00:00
|
|
|
self.url("authentik_providers_oauth2:userinfo")
|
2020-09-28 15:22:35 +00:00
|
|
|
),
|
|
|
|
"GF_AUTH_SIGNOUT_REDIRECT_URL": (
|
|
|
|
self.url(
|
2020-12-05 21:08:42 +00:00
|
|
|
"authentik_providers_oauth2:end-session",
|
2020-09-28 15:22:35 +00:00
|
|
|
application_slug=APPLICATION_SLUG,
|
|
|
|
)
|
|
|
|
),
|
|
|
|
"GF_LOG_LEVEL": "debug",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2020-09-28 15:22:35 +00:00
|
|
|
def test_redirect_uri_error(self):
|
|
|
|
"""test OpenID Provider flow (invalid redirect URI, check error message)"""
|
|
|
|
sleep(1)
|
|
|
|
# Bootstrap all needed objects
|
|
|
|
authorization_flow = Flow.objects.get(
|
|
|
|
slug="default-provider-authorization-implicit-consent"
|
|
|
|
)
|
|
|
|
provider = OAuth2Provider.objects.create(
|
|
|
|
name="grafana",
|
|
|
|
client_type=ClientTypes.CONFIDENTIAL,
|
|
|
|
client_id=self.client_id,
|
|
|
|
client_secret=self.client_secret,
|
|
|
|
rsa_key=CertificateKeyPair.objects.first(),
|
|
|
|
redirect_uris="http://localhost:3000/",
|
|
|
|
authorization_flow=authorization_flow,
|
|
|
|
response_type=ResponseTypes.CODE,
|
|
|
|
)
|
|
|
|
provider.property_mappings.set(
|
|
|
|
ScopeMapping.objects.filter(
|
|
|
|
scope_name__in=[SCOPE_OPENID, SCOPE_OPENID_EMAIL, SCOPE_OPENID_PROFILE]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
provider.save()
|
|
|
|
Application.objects.create(
|
2020-09-30 17:34:22 +00:00
|
|
|
name="Grafana",
|
|
|
|
slug=APPLICATION_SLUG,
|
|
|
|
provider=provider,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
self.driver.get("http://localhost:3000")
|
|
|
|
self.driver.find_element(By.CLASS_NAME, "btn-service--oauth").click()
|
|
|
|
self.driver.find_element(By.ID, "id_uid_field").click()
|
|
|
|
self.driver.find_element(By.ID, "id_uid_field").send_keys(USER().username)
|
|
|
|
self.driver.find_element(By.ID, "id_uid_field").send_keys(Keys.ENTER)
|
|
|
|
self.driver.find_element(By.ID, "id_password").send_keys(USER().username)
|
|
|
|
self.driver.find_element(By.ID, "id_password").send_keys(Keys.ENTER)
|
|
|
|
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()
|
2020-09-28 15:22:35 +00:00
|
|
|
def test_authorization_consent_implied(self):
|
|
|
|
"""test OpenID Provider flow (default authorization flow with implied consent)"""
|
|
|
|
sleep(1)
|
|
|
|
# Bootstrap all needed objects
|
|
|
|
authorization_flow = Flow.objects.get(
|
|
|
|
slug="default-provider-authorization-implicit-consent"
|
|
|
|
)
|
|
|
|
provider = OAuth2Provider.objects.create(
|
|
|
|
name="grafana",
|
|
|
|
client_type=ClientTypes.CONFIDENTIAL,
|
|
|
|
client_id=self.client_id,
|
|
|
|
client_secret=self.client_secret,
|
|
|
|
rsa_key=CertificateKeyPair.objects.first(),
|
|
|
|
redirect_uris="http://localhost:3000/login/generic_oauth",
|
|
|
|
authorization_flow=authorization_flow,
|
|
|
|
response_type=ResponseTypes.CODE,
|
|
|
|
)
|
|
|
|
provider.property_mappings.set(
|
|
|
|
ScopeMapping.objects.filter(
|
|
|
|
scope_name__in=[SCOPE_OPENID, SCOPE_OPENID_EMAIL, SCOPE_OPENID_PROFILE]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
provider.save()
|
|
|
|
Application.objects.create(
|
2020-09-30 17:34:22 +00:00
|
|
|
name="Grafana",
|
|
|
|
slug=APPLICATION_SLUG,
|
|
|
|
provider=provider,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
self.driver.get("http://localhost:3000")
|
|
|
|
self.driver.find_element(By.CLASS_NAME, "btn-service--oauth").click()
|
|
|
|
self.driver.find_element(By.ID, "id_uid_field").click()
|
|
|
|
self.driver.find_element(By.ID, "id_uid_field").send_keys(USER().username)
|
|
|
|
self.driver.find_element(By.ID, "id_uid_field").send_keys(Keys.ENTER)
|
|
|
|
self.driver.find_element(By.ID, "id_password").send_keys(USER().username)
|
|
|
|
self.driver.find_element(By.ID, "id_password").send_keys(Keys.ENTER)
|
2020-09-28 16:17:07 +00:00
|
|
|
self.wait_for_url("http://localhost:3000/?orgId=1")
|
|
|
|
self.driver.get("http://localhost:3000/profile")
|
2020-09-28 15:22:35 +00:00
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(By.CLASS_NAME, "page-header__title").text,
|
|
|
|
USER().name,
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(By.CSS_SELECTOR, "input[name=name]").get_attribute(
|
|
|
|
"value"
|
|
|
|
),
|
|
|
|
USER().name,
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(
|
|
|
|
By.CSS_SELECTOR, "input[name=email]"
|
|
|
|
).get_attribute("value"),
|
|
|
|
USER().email,
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(
|
|
|
|
By.CSS_SELECTOR, "input[name=login]"
|
|
|
|
).get_attribute("value"),
|
|
|
|
USER().email,
|
|
|
|
)
|
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2020-09-28 15:22:35 +00:00
|
|
|
def test_authorization_logout(self):
|
|
|
|
"""test OpenID Provider flow with logout"""
|
|
|
|
sleep(1)
|
|
|
|
# Bootstrap all needed objects
|
|
|
|
authorization_flow = Flow.objects.get(
|
|
|
|
slug="default-provider-authorization-implicit-consent"
|
|
|
|
)
|
|
|
|
provider = OAuth2Provider.objects.create(
|
|
|
|
name="grafana",
|
|
|
|
client_type=ClientTypes.CONFIDENTIAL,
|
|
|
|
client_id=self.client_id,
|
|
|
|
client_secret=self.client_secret,
|
|
|
|
rsa_key=CertificateKeyPair.objects.first(),
|
|
|
|
redirect_uris="http://localhost:3000/login/generic_oauth",
|
|
|
|
authorization_flow=authorization_flow,
|
|
|
|
response_type=ResponseTypes.CODE,
|
|
|
|
)
|
|
|
|
provider.property_mappings.set(
|
|
|
|
ScopeMapping.objects.filter(
|
|
|
|
scope_name__in=[SCOPE_OPENID, SCOPE_OPENID_EMAIL, SCOPE_OPENID_PROFILE]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
provider.save()
|
|
|
|
Application.objects.create(
|
2020-09-30 17:34:22 +00:00
|
|
|
name="Grafana",
|
|
|
|
slug=APPLICATION_SLUG,
|
|
|
|
provider=provider,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
self.driver.get("http://localhost:3000")
|
|
|
|
self.driver.find_element(By.CLASS_NAME, "btn-service--oauth").click()
|
|
|
|
self.driver.find_element(By.ID, "id_uid_field").click()
|
|
|
|
self.driver.find_element(By.ID, "id_uid_field").send_keys(USER().username)
|
|
|
|
self.driver.find_element(By.ID, "id_uid_field").send_keys(Keys.ENTER)
|
|
|
|
self.driver.find_element(By.ID, "id_password").send_keys(USER().username)
|
|
|
|
self.driver.find_element(By.ID, "id_password").send_keys(Keys.ENTER)
|
2020-09-28 16:17:07 +00:00
|
|
|
self.wait_for_url("http://localhost:3000/?orgId=1")
|
|
|
|
self.driver.get("http://localhost:3000/profile")
|
2020-09-28 15:22:35 +00:00
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(By.CLASS_NAME, "page-header__title").text,
|
|
|
|
USER().name,
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(By.CSS_SELECTOR, "input[name=name]").get_attribute(
|
|
|
|
"value"
|
|
|
|
),
|
|
|
|
USER().name,
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(
|
|
|
|
By.CSS_SELECTOR, "input[name=email]"
|
|
|
|
).get_attribute("value"),
|
|
|
|
USER().email,
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(
|
|
|
|
By.CSS_SELECTOR, "input[name=login]"
|
|
|
|
).get_attribute("value"),
|
|
|
|
USER().email,
|
|
|
|
)
|
2020-09-28 16:17:07 +00:00
|
|
|
self.driver.get("http://localhost:3000/logout")
|
2020-09-28 15:22:35 +00:00
|
|
|
self.wait_for_url(
|
|
|
|
self.url(
|
2020-12-05 21:08:42 +00:00
|
|
|
"authentik_providers_oauth2:end-session",
|
2020-09-28 15:22:35 +00:00
|
|
|
application_slug=APPLICATION_SLUG,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
self.driver.find_element(By.ID, "logout").click()
|
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2020-09-28 15:22:35 +00:00
|
|
|
def test_authorization_consent_explicit(self):
|
|
|
|
"""test OpenID Provider flow (default authorization flow with explicit consent)"""
|
|
|
|
sleep(1)
|
|
|
|
# Bootstrap all needed objects
|
|
|
|
authorization_flow = Flow.objects.get(
|
|
|
|
slug="default-provider-authorization-explicit-consent"
|
|
|
|
)
|
|
|
|
provider = OAuth2Provider.objects.create(
|
|
|
|
name="grafana",
|
|
|
|
authorization_flow=authorization_flow,
|
|
|
|
response_type=ResponseTypes.CODE,
|
|
|
|
client_type=ClientTypes.CONFIDENTIAL,
|
|
|
|
client_id=self.client_id,
|
|
|
|
client_secret=self.client_secret,
|
|
|
|
rsa_key=CertificateKeyPair.objects.first(),
|
|
|
|
redirect_uris="http://localhost:3000/login/generic_oauth",
|
|
|
|
)
|
|
|
|
provider.property_mappings.set(
|
|
|
|
ScopeMapping.objects.filter(
|
|
|
|
scope_name__in=[SCOPE_OPENID, SCOPE_OPENID_EMAIL, SCOPE_OPENID_PROFILE]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
provider.save()
|
|
|
|
app = Application.objects.create(
|
2020-09-30 17:34:22 +00:00
|
|
|
name="Grafana",
|
|
|
|
slug=APPLICATION_SLUG,
|
|
|
|
provider=provider,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
self.driver.get("http://localhost:3000")
|
|
|
|
self.driver.find_element(By.CLASS_NAME, "btn-service--oauth").click()
|
|
|
|
self.driver.find_element(By.ID, "id_uid_field").click()
|
|
|
|
self.driver.find_element(By.ID, "id_uid_field").send_keys(USER().username)
|
|
|
|
self.driver.find_element(By.ID, "id_uid_field").send_keys(Keys.ENTER)
|
|
|
|
self.driver.find_element(By.ID, "id_password").send_keys(USER().username)
|
|
|
|
self.driver.find_element(By.ID, "id_password").send_keys(Keys.ENTER)
|
|
|
|
|
2020-09-28 16:17:07 +00:00
|
|
|
self.assertEqual(
|
2020-09-30 17:34:22 +00:00
|
|
|
app.name,
|
|
|
|
self.driver.find_element(By.ID, "application-name").text,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
self.wait.until(
|
|
|
|
ec.presence_of_element_located((By.CSS_SELECTOR, "[type=submit]"))
|
|
|
|
)
|
|
|
|
sleep(1)
|
|
|
|
self.driver.find_element(By.CSS_SELECTOR, "[type=submit]").click()
|
|
|
|
|
2020-09-28 16:17:07 +00:00
|
|
|
self.wait_for_url("http://localhost:3000/?orgId=1")
|
|
|
|
self.driver.get("http://localhost:3000/profile")
|
|
|
|
|
2020-09-28 15:22:35 +00:00
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(By.CLASS_NAME, "page-header__title").text,
|
|
|
|
USER().name,
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(By.CSS_SELECTOR, "input[name=name]").get_attribute(
|
|
|
|
"value"
|
|
|
|
),
|
|
|
|
USER().name,
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(
|
|
|
|
By.CSS_SELECTOR, "input[name=email]"
|
|
|
|
).get_attribute("value"),
|
|
|
|
USER().email,
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(
|
|
|
|
By.CSS_SELECTOR, "input[name=login]"
|
|
|
|
).get_attribute("value"),
|
|
|
|
USER().email,
|
|
|
|
)
|
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2020-09-28 15:22:35 +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"
|
|
|
|
)
|
|
|
|
provider = OAuth2Provider.objects.create(
|
|
|
|
name="grafana",
|
|
|
|
authorization_flow=authorization_flow,
|
|
|
|
response_type=ResponseTypes.CODE,
|
|
|
|
client_type=ClientTypes.CONFIDENTIAL,
|
|
|
|
client_id=self.client_id,
|
|
|
|
client_secret=self.client_secret,
|
|
|
|
rsa_key=CertificateKeyPair.objects.first(),
|
|
|
|
redirect_uris="http://localhost:3000/login/generic_oauth",
|
|
|
|
)
|
|
|
|
provider.property_mappings.set(
|
|
|
|
ScopeMapping.objects.filter(
|
|
|
|
scope_name__in=[SCOPE_OPENID, SCOPE_OPENID_EMAIL, SCOPE_OPENID_PROFILE]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
provider.save()
|
|
|
|
app = Application.objects.create(
|
2020-09-30 17:34:22 +00:00
|
|
|
name="Grafana",
|
|
|
|
slug=APPLICATION_SLUG,
|
|
|
|
provider=provider,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
negative_policy = ExpressionPolicy.objects.create(
|
|
|
|
name="negative-static", expression="return False"
|
|
|
|
)
|
|
|
|
PolicyBinding.objects.create(target=app, policy=negative_policy, order=0)
|
|
|
|
self.driver.get("http://localhost:3000")
|
|
|
|
self.driver.find_element(By.CLASS_NAME, "btn-service--oauth").click()
|
|
|
|
self.driver.find_element(By.ID, "id_uid_field").click()
|
|
|
|
self.driver.find_element(By.ID, "id_uid_field").send_keys(USER().username)
|
|
|
|
self.driver.find_element(By.ID, "id_uid_field").send_keys(Keys.ENTER)
|
|
|
|
self.driver.find_element(By.ID, "id_password").send_keys(USER().username)
|
|
|
|
self.driver.find_element(By.ID, "id_password").send_keys(Keys.ENTER)
|
|
|
|
|
|
|
|
self.wait.until(
|
|
|
|
ec.presence_of_element_located((By.CSS_SELECTOR, "header > h1"))
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(By.CSS_SELECTOR, "header > h1").text,
|
|
|
|
"Permission denied",
|
|
|
|
)
|