2020-06-20 21:53:05 +00:00
|
|
|
"""test OAuth Provider flow"""
|
2020-09-11 21:21:11 +00:00
|
|
|
from sys import platform
|
2020-09-25 17:39:49 +00:00
|
|
|
from time import sleep
|
2021-02-18 12:41:03 +00:00
|
|
|
from typing import Any, Optional
|
2020-09-11 21:21:11 +00:00
|
|
|
from unittest.case import skipUnless
|
2020-06-20 21:53:05 +00:00
|
|
|
|
2020-09-09 22:14:59 +00:00
|
|
|
from docker.types import Healthcheck
|
2020-06-20 21:53:05 +00:00
|
|
|
from selenium.webdriver.common.by import By
|
2020-09-15 08:29:59 +00:00
|
|
|
from selenium.webdriver.support import expected_conditions as ec
|
2020-06-20 21:53:05 +00:00
|
|
|
|
2020-12-05 21:08:42 +00:00
|
|
|
from authentik.core.models import Application
|
|
|
|
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
|
2020-12-27 16:33:54 +00:00
|
|
|
from authentik.providers.oauth2.models import ClientTypes, OAuth2Provider
|
2021-11-23 20:30:02 +00:00
|
|
|
from tests.e2e.utils import SeleniumTestCase, apply_migration, retry
|
2020-06-20 21:53:05 +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 TestProviderOAuth2Github(SeleniumTestCase):
|
2020-06-20 21:53:05 +00:00
|
|
|
"""test OAuth Provider flow"""
|
|
|
|
|
|
|
|
def setUp(self):
|
2021-08-23 18:27:38 +00:00
|
|
|
self.client_id = generate_id()
|
|
|
|
self.client_secret = generate_key()
|
2020-07-10 14:49:25 +00:00
|
|
|
super().setUp()
|
2020-06-20 21:53:05 +00:00
|
|
|
|
2021-02-18 12:41:03 +00:00
|
|
|
def get_container_specs(self) -> Optional[dict[str, Any]]:
|
2020-06-20 21:53:05 +00:00
|
|
|
"""Setup client grafana container which we test OAuth against"""
|
2020-09-11 21:21:11 +00:00
|
|
|
return {
|
2021-02-03 20:18:31 +00:00
|
|
|
"image": "grafana/grafana:7.1.0",
|
2020-09-11 21:21:11 +00:00
|
|
|
"detach": True,
|
|
|
|
"network_mode": "host",
|
|
|
|
"auto_remove": True,
|
|
|
|
"healthcheck": Healthcheck(
|
2020-06-20 21:53:05 +00:00
|
|
|
test=["CMD", "wget", "--spider", "http://localhost:3000"],
|
|
|
|
interval=5 * 100 * 1000000,
|
|
|
|
start_period=1 * 100 * 1000000,
|
|
|
|
),
|
2020-09-11 21:21:11 +00:00
|
|
|
"environment": {
|
2020-06-20 21:53:05 +00:00
|
|
|
"GF_AUTH_GITHUB_ENABLED": "true",
|
2020-08-19 08:32:44 +00:00
|
|
|
"GF_AUTH_GITHUB_ALLOW_SIGN_UP": "true",
|
2020-06-20 21:53:05 +00:00
|
|
|
"GF_AUTH_GITHUB_CLIENT_ID": self.client_id,
|
|
|
|
"GF_AUTH_GITHUB_CLIENT_SECRET": self.client_secret,
|
|
|
|
"GF_AUTH_GITHUB_SCOPES": "user:email,read:org",
|
2020-06-20 21:56:35 +00:00
|
|
|
"GF_AUTH_GITHUB_AUTH_URL": self.url(
|
2020-12-05 21:08:42 +00:00
|
|
|
"authentik_providers_oauth2_github:github-authorize"
|
2020-06-20 21:53:05 +00:00
|
|
|
),
|
2020-06-20 21:56:35 +00:00
|
|
|
"GF_AUTH_GITHUB_TOKEN_URL": self.url(
|
2020-12-05 21:08:42 +00:00
|
|
|
"authentik_providers_oauth2_github:github-access-token"
|
2020-06-20 21:53:05 +00:00
|
|
|
),
|
2021-08-03 15:45:16 +00:00
|
|
|
"GF_AUTH_GITHUB_API_URL": self.url("authentik_providers_oauth2_github:github-user"),
|
2020-06-20 21:53:05 +00:00
|
|
|
"GF_LOG_LEVEL": "debug",
|
|
|
|
},
|
2020-09-11 21:21:11 +00:00
|
|
|
}
|
2020-06-20 21:53:05 +00:00
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2021-02-27 21:57:15 +00:00
|
|
|
@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-20 21:53:05 +00:00
|
|
|
def test_authorization_consent_implied(self):
|
|
|
|
"""test OAuth Provider flow (default authorization flow with implied consent)"""
|
|
|
|
# Bootstrap all needed objects
|
|
|
|
authorization_flow = Flow.objects.get(
|
|
|
|
slug="default-provider-authorization-implicit-consent"
|
|
|
|
)
|
|
|
|
provider = OAuth2Provider.objects.create(
|
|
|
|
name="grafana",
|
|
|
|
client_id=self.client_id,
|
|
|
|
client_secret=self.client_secret,
|
2020-08-19 08:32:44 +00:00
|
|
|
client_type=ClientTypes.CONFIDENTIAL,
|
2020-06-20 21:53:05 +00:00
|
|
|
redirect_uris="http://localhost:3000/login/github",
|
|
|
|
authorization_flow=authorization_flow,
|
|
|
|
)
|
|
|
|
Application.objects.create(
|
2020-09-30 17:34:22 +00:00
|
|
|
name="Grafana",
|
|
|
|
slug="grafana",
|
|
|
|
provider=provider,
|
2020-06-20 21:53:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
self.driver.get("http://localhost:3000")
|
|
|
|
self.driver.find_element(By.CLASS_NAME, "btn-service--github").click()
|
2021-02-26 15:46:01 +00:00
|
|
|
self.login()
|
2020-06-29 21:04:05 +00:00
|
|
|
|
|
|
|
self.wait_for_url("http://localhost:3000/?orgId=1")
|
2020-09-28 16:17:07 +00:00
|
|
|
self.driver.get("http://localhost:3000/profile")
|
2020-06-20 21:53:05 +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.username,
|
2020-06-20 21:53:05 +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.username,
|
2020-06-20 21:53:05 +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-06-20 21:53:05 +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.username,
|
2020-06-20 21:53:05 +00:00
|
|
|
)
|
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2021-02-27 21:57:15 +00:00
|
|
|
@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-20 21:53:05 +00:00
|
|
|
def test_authorization_consent_explicit(self):
|
|
|
|
"""test OAuth Provider flow (default authorization flow with explicit consent)"""
|
|
|
|
# Bootstrap all needed objects
|
|
|
|
authorization_flow = Flow.objects.get(
|
|
|
|
slug="default-provider-authorization-explicit-consent"
|
|
|
|
)
|
|
|
|
provider = OAuth2Provider.objects.create(
|
|
|
|
name="grafana",
|
|
|
|
client_id=self.client_id,
|
|
|
|
client_secret=self.client_secret,
|
2020-08-19 08:32:44 +00:00
|
|
|
client_type=ClientTypes.CONFIDENTIAL,
|
2020-06-20 21:53:05 +00:00
|
|
|
redirect_uris="http://localhost:3000/login/github",
|
|
|
|
authorization_flow=authorization_flow,
|
|
|
|
)
|
|
|
|
app = Application.objects.create(
|
2020-09-30 17:34:22 +00:00
|
|
|
name="Grafana",
|
|
|
|
slug="grafana",
|
|
|
|
provider=provider,
|
2020-06-20 21:53:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
self.driver.get("http://localhost:3000")
|
|
|
|
self.driver.find_element(By.CLASS_NAME, "btn-service--github").click()
|
2021-02-26 15:46:01 +00:00
|
|
|
self.login()
|
2020-06-20 21:53:05 +00:00
|
|
|
|
2021-02-27 21:57:15 +00:00
|
|
|
sleep(3)
|
2021-08-03 15:45:16 +00:00
|
|
|
self.wait.until(ec.presence_of_element_located((By.CSS_SELECTOR, "ak-flow-executor")))
|
2020-09-25 20:17:04 +00:00
|
|
|
|
2021-02-27 21:57: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 21:57:15 +00:00
|
|
|
consent_stage.find_element(By.CSS_SELECTOR, "#header-text").text,
|
2020-06-20 21:53:05 +00:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
2020-08-19 08:32:44 +00:00
|
|
|
"GitHub Compatibility: Access you Email addresses",
|
2021-08-03 15:45:16 +00:00
|
|
|
consent_stage.find_element(By.CSS_SELECTOR, "[data-permission-code='user:email']").text,
|
2020-06-20 21:53:05 +00:00
|
|
|
)
|
2021-02-27 21:57:15 +00:00
|
|
|
consent_stage.find_element(
|
2020-09-30 17:34:22 +00:00
|
|
|
By.CSS_SELECTOR,
|
|
|
|
("[type=submit]"),
|
|
|
|
).click()
|
2020-06-20 21:53:05 +00:00
|
|
|
|
2020-06-29 21:04:05 +00:00
|
|
|
self.wait_for_url("http://localhost:3000/?orgId=1")
|
2020-09-28 16:17:07 +00:00
|
|
|
self.driver.get("http://localhost:3000/profile")
|
2020-06-20 21:53:05 +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.username,
|
2020-06-20 21:53:05 +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.username,
|
2020-06-20 21:53:05 +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-06-20 21:53:05 +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.username,
|
2020-06-20 21:53:05 +00:00
|
|
|
)
|
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_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_denied(self):
|
|
|
|
"""test OAuth Provider flow (default authorization flow, denied)"""
|
|
|
|
# Bootstrap all needed objects
|
|
|
|
authorization_flow = Flow.objects.get(
|
|
|
|
slug="default-provider-authorization-explicit-consent"
|
|
|
|
)
|
|
|
|
provider = OAuth2Provider.objects.create(
|
|
|
|
name="grafana",
|
|
|
|
client_id=self.client_id,
|
|
|
|
client_secret=self.client_secret,
|
2020-08-19 08:32:44 +00:00
|
|
|
client_type=ClientTypes.CONFIDENTIAL,
|
2020-07-02 19:55:02 +00:00
|
|
|
redirect_uris="http://localhost:3000/login/github",
|
|
|
|
authorization_flow=authorization_flow,
|
|
|
|
)
|
|
|
|
app = Application.objects.create(
|
2020-09-30 17:34:22 +00:00
|
|
|
name="Grafana",
|
|
|
|
slug="grafana",
|
|
|
|
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)
|
|
|
|
|
|
|
|
self.driver.get("http://localhost:3000")
|
|
|
|
self.driver.find_element(By.CLASS_NAME, "btn-service--github").click()
|
2021-02-26 15:46:01 +00:00
|
|
|
self.login()
|
2020-09-15 08:29:59 +00:00
|
|
|
|
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",
|
|
|
|
)
|