2020-09-28 15:22:35 +00:00
|
|
|
"""test OAuth2 OpenID Provider flow"""
|
|
|
|
from sys import platform
|
|
|
|
from time import sleep
|
2021-02-18 12:41:03 +00:00
|
|
|
from typing import Any, Optional
|
2020-09-28 15:22:35 +00:00
|
|
|
from unittest.case import skipUnless
|
|
|
|
|
|
|
|
from docker.types import Healthcheck
|
|
|
|
from selenium.webdriver.common.by import By
|
|
|
|
from selenium.webdriver.support import expected_conditions as ec
|
|
|
|
|
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-09-28 15:22:35 +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-09-28 15:22:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
@skipUnless(platform.startswith("linux"), "requires local docker")
|
|
|
|
class TestProviderOAuth2OAuth(SeleniumTestCase):
|
|
|
|
"""test OAuth with OAuth Provider flow"""
|
|
|
|
|
|
|
|
def setUp(self):
|
2021-08-23 18:27:38 +00:00
|
|
|
self.client_id = generate_id()
|
|
|
|
self.client_secret = generate_key()
|
2021-11-23 18:19:13 +00:00
|
|
|
self.app_slug = generate_id(20)
|
2020-09-28 15:22:35 +00:00
|
|
|
super().setUp()
|
|
|
|
|
2021-02-18 12:41:03 +00:00
|
|
|
def get_container_specs(self) -> Optional[dict[str, Any]]:
|
2020-09-28 15:22:35 +00:00
|
|
|
return {
|
2022-09-04 15:58:30 +00:00
|
|
|
"image": "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
|
|
|
),
|
2021-08-03 15:45:16 +00:00
|
|
|
"GF_AUTH_GENERIC_OAUTH_TOKEN_URL": (self.url("authentik_providers_oauth2:token")),
|
|
|
|
"GF_AUTH_GENERIC_OAUTH_API_URL": (self.url("authentik_providers_oauth2:userinfo")),
|
2020-09-28 15:22:35 +00:00
|
|
|
"GF_AUTH_SIGNOUT_REDIRECT_URL": (
|
|
|
|
self.url(
|
2021-06-06 11:24:27 +00:00
|
|
|
"authentik_core:if-session-end",
|
2021-11-23 18:19:13 +00:00
|
|
|
application_slug=self.app_slug,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
),
|
|
|
|
"GF_LOG_LEVEL": "debug",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2022-08-01 21:05:58 +00:00
|
|
|
@apply_blueprint(
|
2022-08-16 14:12:21 +00:00
|
|
|
"default/10-flow-default-authentication-flow.yaml",
|
|
|
|
"default/10-flow-default-invalidation-flow.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@apply_blueprint(
|
2022-08-16 14:12:21 +00:00
|
|
|
"default/20-flow-default-provider-authorization-explicit-consent.yaml",
|
|
|
|
"default/20-flow-default-provider-authorization-implicit-consent.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@apply_blueprint(
|
2022-08-16 14:12:21 +00:00
|
|
|
"system/providers-oauth2.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@reconcile_app("authentik_crypto")
|
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,
|
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:3000/",
|
|
|
|
authorization_flow=authorization_flow,
|
|
|
|
)
|
|
|
|
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",
|
2021-11-23 18:19:13 +00:00
|
|
|
slug=self.app_slug,
|
2020-09-30 17:34:22 +00:00
|
|
|
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()
|
|
|
|
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(
|
2022-08-16 14:12:21 +00:00
|
|
|
"default/10-flow-default-authentication-flow.yaml",
|
|
|
|
"default/10-flow-default-invalidation-flow.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@apply_blueprint(
|
2022-08-16 14:12:21 +00:00
|
|
|
"default/20-flow-default-provider-authorization-explicit-consent.yaml",
|
|
|
|
"default/20-flow-default-provider-authorization-implicit-consent.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@apply_blueprint(
|
2022-08-16 14:12:21 +00:00
|
|
|
"system/providers-oauth2.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@reconcile_app("authentik_crypto")
|
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,
|
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:3000/login/generic_oauth",
|
|
|
|
authorization_flow=authorization_flow,
|
|
|
|
)
|
|
|
|
provider.property_mappings.set(
|
|
|
|
ScopeMapping.objects.filter(
|
|
|
|
scope_name__in=[SCOPE_OPENID, SCOPE_OPENID_EMAIL, SCOPE_OPENID_PROFILE]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
Application.objects.create(
|
2020-09-30 17:34:22 +00:00
|
|
|
name="Grafana",
|
2021-11-23 18:19:13 +00:00
|
|
|
slug=self.app_slug,
|
2020-09-30 17:34:22 +00:00
|
|
|
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()
|
2021-02-26 15:46:01 +00:00
|
|
|
self.login()
|
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,
|
2021-11-23 20:30:02 +00:00
|
|
|
self.user.name,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
2021-08-03 15:45:16 +00:00
|
|
|
self.driver.find_element(By.CSS_SELECTOR, "input[name=name]").get_attribute("value"),
|
2021-11-23 20:30:02 +00:00
|
|
|
self.user.name,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
2021-08-03 15:45:16 +00:00
|
|
|
self.driver.find_element(By.CSS_SELECTOR, "input[name=email]").get_attribute("value"),
|
2021-11-23 20:30:02 +00:00
|
|
|
self.user.email,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
2021-08-03 15:45:16 +00:00
|
|
|
self.driver.find_element(By.CSS_SELECTOR, "input[name=login]").get_attribute("value"),
|
2021-11-23 20:30:02 +00:00
|
|
|
self.user.email,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2022-08-01 21:05:58 +00:00
|
|
|
@apply_blueprint(
|
2022-08-16 14:12:21 +00:00
|
|
|
"default/10-flow-default-authentication-flow.yaml",
|
|
|
|
"default/10-flow-default-invalidation-flow.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@apply_blueprint(
|
2022-08-16 14:12:21 +00:00
|
|
|
"default/20-flow-default-provider-authorization-explicit-consent.yaml",
|
|
|
|
"default/20-flow-default-provider-authorization-implicit-consent.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@apply_blueprint(
|
2022-08-16 14:12:21 +00:00
|
|
|
"system/providers-oauth2.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@reconcile_app("authentik_crypto")
|
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,
|
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:3000/login/generic_oauth",
|
|
|
|
authorization_flow=authorization_flow,
|
|
|
|
)
|
|
|
|
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",
|
2021-11-23 18:19:13 +00:00
|
|
|
slug=self.app_slug,
|
2020-09-30 17:34:22 +00:00
|
|
|
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()
|
2021-02-26 15:46:01 +00:00
|
|
|
self.login()
|
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,
|
2021-11-23 20:30:02 +00:00
|
|
|
self.user.name,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
2021-08-03 15:45:16 +00:00
|
|
|
self.driver.find_element(By.CSS_SELECTOR, "input[name=name]").get_attribute("value"),
|
2021-11-23 20:30:02 +00:00
|
|
|
self.user.name,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
2021-08-03 15:45:16 +00:00
|
|
|
self.driver.find_element(By.CSS_SELECTOR, "input[name=email]").get_attribute("value"),
|
2021-11-23 20:30:02 +00:00
|
|
|
self.user.email,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
2021-08-03 15:45:16 +00:00
|
|
|
self.driver.find_element(By.CSS_SELECTOR, "input[name=login]").get_attribute("value"),
|
2021-11-23 20:30:02 +00:00
|
|
|
self.user.email,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
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(
|
2021-06-06 11:24:27 +00:00
|
|
|
"authentik_core:if-session-end",
|
2021-11-23 18:19:13 +00:00
|
|
|
application_slug=self.app_slug,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
self.driver.find_element(By.ID, "logout").click()
|
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2022-08-01 21:05:58 +00:00
|
|
|
@apply_blueprint(
|
2022-08-16 14:12:21 +00:00
|
|
|
"default/10-flow-default-authentication-flow.yaml",
|
|
|
|
"default/10-flow-default-invalidation-flow.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@apply_blueprint(
|
2022-08-16 14:12:21 +00:00
|
|
|
"default/20-flow-default-provider-authorization-explicit-consent.yaml",
|
|
|
|
"default/20-flow-default-provider-authorization-implicit-consent.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@apply_blueprint(
|
2022-08-16 14:12:21 +00:00
|
|
|
"system/providers-oauth2.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@reconcile_app("authentik_crypto")
|
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,
|
|
|
|
client_type=ClientTypes.CONFIDENTIAL,
|
|
|
|
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: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",
|
2021-11-23 18:19:13 +00:00
|
|
|
slug=self.app_slug,
|
2020-09-30 17:34:22 +00:00
|
|
|
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()
|
2021-02-26 15:46:01 +00:00
|
|
|
self.login()
|
2020-09-28 15:22:35 +00:00
|
|
|
|
2021-08-03 15:45:16 +00:00
|
|
|
self.wait.until(ec.presence_of_element_located((By.CSS_SELECTOR, "ak-flow-executor")))
|
2020-09-28 15:22:35 +00:00
|
|
|
sleep(1)
|
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(
|
|
|
|
app.name,
|
|
|
|
consent_stage.find_element(By.CSS_SELECTOR, "#header-text").text,
|
|
|
|
)
|
|
|
|
consent_stage.find_element(
|
|
|
|
By.CSS_SELECTOR,
|
|
|
|
("[type=submit]"),
|
|
|
|
).click()
|
2020-09-28 15:22:35 +00:00
|
|
|
|
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,
|
2021-11-23 20:30:02 +00:00
|
|
|
self.user.name,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
2021-08-03 15:45:16 +00:00
|
|
|
self.driver.find_element(By.CSS_SELECTOR, "input[name=name]").get_attribute("value"),
|
2021-11-23 20:30:02 +00:00
|
|
|
self.user.name,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
2021-08-03 15:45:16 +00:00
|
|
|
self.driver.find_element(By.CSS_SELECTOR, "input[name=email]").get_attribute("value"),
|
2021-11-23 20:30:02 +00:00
|
|
|
self.user.email,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
2021-08-03 15:45:16 +00:00
|
|
|
self.driver.find_element(By.CSS_SELECTOR, "input[name=login]").get_attribute("value"),
|
2021-11-23 20:30:02 +00:00
|
|
|
self.user.email,
|
2020-09-28 15:22:35 +00:00
|
|
|
)
|
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2022-08-01 21:05:58 +00:00
|
|
|
@apply_blueprint(
|
2022-08-16 14:12:21 +00:00
|
|
|
"default/10-flow-default-authentication-flow.yaml",
|
|
|
|
"default/10-flow-default-invalidation-flow.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@apply_blueprint(
|
2022-08-16 14:12:21 +00:00
|
|
|
"default/20-flow-default-provider-authorization-explicit-consent.yaml",
|
|
|
|
"default/20-flow-default-provider-authorization-implicit-consent.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@apply_blueprint(
|
2022-08-16 14:12:21 +00:00
|
|
|
"system/providers-oauth2.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
|
|
|
@reconcile_app("authentik_crypto")
|
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,
|
|
|
|
client_type=ClientTypes.CONFIDENTIAL,
|
|
|
|
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: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",
|
2021-11-23 18:19:13 +00:00
|
|
|
slug=self.app_slug,
|
2020-09-30 17:34:22 +00:00
|
|
|
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()
|
2021-02-26 15:46:01 +00:00
|
|
|
self.login()
|
2020-09-28 15:22:35 +00:00
|
|
|
|
2021-08-03 15:45:16 +00:00
|
|
|
self.wait.until(ec.presence_of_element_located((By.CSS_SELECTOR, "header > h1")))
|
2020-09-28 15:22:35 +00:00
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(By.CSS_SELECTOR, "header > h1").text,
|
|
|
|
"Permission denied",
|
|
|
|
)
|