2020-06-19 17:34:27 +00:00
|
|
|
"""test OpenID Provider flow"""
|
|
|
|
from time import sleep
|
|
|
|
|
2020-06-20 15:06:15 +00:00
|
|
|
from django.shortcuts import reverse
|
2020-06-19 17:34:27 +00:00
|
|
|
from oauth2_provider.generators import generate_client_id, generate_client_secret
|
|
|
|
from oidc_provider.models import Client, ResponseType
|
|
|
|
from selenium.webdriver.common.by import By
|
|
|
|
from selenium.webdriver.common.keys import Keys
|
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
|
|
|
|
|
|
|
from docker import DockerClient, from_env
|
|
|
|
from docker.models.containers import Container
|
|
|
|
from docker.types import Healthcheck
|
2020-06-20 21:52:06 +00:00
|
|
|
from e2e.utils import USER, SeleniumTestCase, ensure_rsa_key
|
2020-06-19 17:34:27 +00:00
|
|
|
from passbook.core.models import Application
|
|
|
|
from passbook.flows.models import Flow
|
2020-07-02 19:55:02 +00:00
|
|
|
from passbook.policies.expression.models import ExpressionPolicy
|
|
|
|
from passbook.policies.models import PolicyBinding
|
2020-06-19 17:34:27 +00:00
|
|
|
from passbook.providers.oidc.models import OpenIDProvider
|
|
|
|
|
|
|
|
|
2020-06-20 15:06:00 +00:00
|
|
|
class TestProviderOIDC(SeleniumTestCase):
|
2020-06-19 17:34:27 +00:00
|
|
|
"""test OpenID Provider flow"""
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.client_id = generate_client_id()
|
|
|
|
self.client_secret = generate_client_secret()
|
|
|
|
self.container = self.setup_client()
|
2020-07-10 14:49:25 +00:00
|
|
|
super().setUp()
|
2020-06-19 17:34:27 +00:00
|
|
|
|
|
|
|
def setup_client(self) -> Container:
|
|
|
|
"""Setup client grafana container which we test OIDC against"""
|
|
|
|
client: DockerClient = from_env()
|
|
|
|
container = client.containers.run(
|
|
|
|
image="grafana/grafana:latest",
|
|
|
|
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-06-20 15:06:15 +00:00
|
|
|
self.live_server_url + reverse("passbook_providers_oidc:authorize")
|
2020-06-19 17:34:27 +00:00
|
|
|
),
|
|
|
|
"GF_AUTH_GENERIC_OAUTH_TOKEN_URL": (
|
2020-06-20 15:06:15 +00:00
|
|
|
self.live_server_url + reverse("oidc_provider:token")
|
2020-06-19 17:34:27 +00:00
|
|
|
),
|
|
|
|
"GF_AUTH_GENERIC_OAUTH_API_URL": (
|
2020-06-20 15:06:15 +00:00
|
|
|
self.live_server_url + reverse("oidc_provider:userinfo")
|
2020-06-19 17:34:27 +00:00
|
|
|
),
|
|
|
|
"GF_LOG_LEVEL": "debug",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
while True:
|
|
|
|
container.reload()
|
|
|
|
status = container.attrs.get("State", {}).get("Health", {}).get("Status")
|
|
|
|
if status == "healthy":
|
|
|
|
return container
|
|
|
|
sleep(1)
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
self.container.kill()
|
2020-06-20 15:06:15 +00:00
|
|
|
super().tearDown()
|
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-06-19 17:34:27 +00:00
|
|
|
client = Client.objects.create(
|
|
|
|
name="grafana",
|
|
|
|
client_type="confidential",
|
|
|
|
client_id=self.client_id,
|
|
|
|
client_secret=self.client_secret,
|
|
|
|
_redirect_uris="http://localhost:3000/",
|
|
|
|
_scope="openid userinfo",
|
|
|
|
)
|
|
|
|
# At least one of these objects must exist
|
|
|
|
ensure_rsa_key()
|
|
|
|
# This response_code object might exist or not, depending on the order the tests are run
|
|
|
|
rp_type, _ = ResponseType.objects.get_or_create(value="code")
|
|
|
|
client.response_types.set([rp_type])
|
|
|
|
client.save()
|
|
|
|
provider = OpenIDProvider.objects.create(
|
|
|
|
oidc_client=client, authorization_flow=authorization_flow,
|
|
|
|
)
|
|
|
|
Application.objects.create(
|
|
|
|
name="Grafana", slug="grafana", provider=provider,
|
|
|
|
)
|
|
|
|
|
2020-06-19 18:26:04 +00:00
|
|
|
self.driver.get("http://localhost:3000")
|
2020-06-19 17:34:27 +00:00
|
|
|
self.driver.find_element(By.CLASS_NAME, "btn-service--oauth").click()
|
|
|
|
self.driver.find_element(By.ID, "id_uid_field").click()
|
2020-06-20 21:52:06 +00:00
|
|
|
self.driver.find_element(By.ID, "id_uid_field").send_keys(USER().username)
|
2020-06-19 17:34:27 +00:00
|
|
|
self.driver.find_element(By.ID, "id_uid_field").send_keys(Keys.ENTER)
|
2020-06-20 21:52:06 +00:00
|
|
|
self.driver.find_element(By.ID, "id_password").send_keys(USER().username)
|
2020-06-19 17:34:27 +00:00
|
|
|
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-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-06-19 17:34:27 +00:00
|
|
|
client = Client.objects.create(
|
|
|
|
name="grafana",
|
|
|
|
client_type="confidential",
|
|
|
|
client_id=self.client_id,
|
|
|
|
client_secret=self.client_secret,
|
|
|
|
_redirect_uris="http://localhost:3000/login/generic_oauth",
|
|
|
|
_scope="openid profile email",
|
|
|
|
reuse_consent=False,
|
|
|
|
require_consent=False,
|
|
|
|
)
|
|
|
|
# At least one of these objects must exist
|
|
|
|
ensure_rsa_key()
|
|
|
|
# This response_code object might exist or not, depending on the order the tests are run
|
|
|
|
rp_type, _ = ResponseType.objects.get_or_create(value="code")
|
|
|
|
client.response_types.set([rp_type])
|
|
|
|
client.save()
|
|
|
|
provider = OpenIDProvider.objects.create(
|
|
|
|
oidc_client=client, authorization_flow=authorization_flow,
|
|
|
|
)
|
|
|
|
Application.objects.create(
|
|
|
|
name="Grafana", slug="grafana", provider=provider,
|
|
|
|
)
|
|
|
|
|
|
|
|
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()
|
2020-06-20 21:52:06 +00:00
|
|
|
self.driver.find_element(By.ID, "id_uid_field").send_keys(USER().username)
|
2020-06-19 17:34:27 +00:00
|
|
|
self.driver.find_element(By.ID, "id_uid_field").send_keys(Keys.ENTER)
|
2020-06-20 21:52:06 +00:00
|
|
|
self.driver.find_element(By.ID, "id_password").send_keys(USER().username)
|
2020-06-19 17:34:27 +00:00
|
|
|
self.driver.find_element(By.ID, "id_password").send_keys(Keys.ENTER)
|
|
|
|
self.driver.find_element(By.XPATH, "//a[contains(@href, '/profile')]").click()
|
2020-06-19 18:26:04 +00:00
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(By.CLASS_NAME, "page-header__title").text,
|
2020-06-20 21:52:06 +00:00
|
|
|
USER().name,
|
2020-06-19 18:26:04 +00:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(
|
|
|
|
By.XPATH,
|
|
|
|
"/html/body/grafana-app/div/div/div/react-profile-wrapper/form[1]/div[1]/div/input",
|
|
|
|
).get_attribute("value"),
|
2020-06-20 21:52:06 +00:00
|
|
|
USER().name,
|
2020-06-19 18:26:04 +00:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(
|
|
|
|
By.XPATH,
|
|
|
|
"/html/body/grafana-app/div/div/div/react-profile-wrapper/form[1]/div[2]/div/input",
|
|
|
|
).get_attribute("value"),
|
2020-06-20 21:52:06 +00:00
|
|
|
USER().email,
|
2020-06-19 18:26:04 +00:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(
|
|
|
|
By.XPATH,
|
|
|
|
"/html/body/grafana-app/div/div/div/react-profile-wrapper/form[1]/div[3]/div/input",
|
|
|
|
).get_attribute("value"),
|
2020-06-20 21:52:06 +00:00
|
|
|
USER().email,
|
2020-06-19 18:26:04 +00:00
|
|
|
)
|
|
|
|
|
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
|
|
|
)
|
|
|
|
client = Client.objects.create(
|
|
|
|
name="grafana",
|
|
|
|
client_type="confidential",
|
|
|
|
client_id=self.client_id,
|
|
|
|
client_secret=self.client_secret,
|
|
|
|
_redirect_uris="http://localhost:3000/login/generic_oauth",
|
|
|
|
_scope="openid profile email",
|
|
|
|
reuse_consent=False,
|
|
|
|
require_consent=False,
|
|
|
|
)
|
|
|
|
# At least one of these objects must exist
|
|
|
|
ensure_rsa_key()
|
|
|
|
# This response_code object might exist or not, depending on the order the tests are run
|
|
|
|
rp_type, _ = ResponseType.objects.get_or_create(value="code")
|
|
|
|
client.response_types.set([rp_type])
|
|
|
|
client.save()
|
|
|
|
provider = OpenIDProvider.objects.create(
|
|
|
|
oidc_client=client, authorization_flow=authorization_flow,
|
|
|
|
)
|
|
|
|
app = Application.objects.create(
|
|
|
|
name="Grafana", slug="grafana", provider=provider,
|
|
|
|
)
|
|
|
|
|
|
|
|
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()
|
2020-06-20 21:52:06 +00:00
|
|
|
self.driver.find_element(By.ID, "id_uid_field").send_keys(USER().username)
|
2020-06-19 18:26:04 +00:00
|
|
|
self.driver.find_element(By.ID, "id_uid_field").send_keys(Keys.ENTER)
|
2020-06-20 21:52:06 +00:00
|
|
|
self.driver.find_element(By.ID, "id_password").send_keys(USER().username)
|
2020-06-19 18:26:04 +00:00
|
|
|
self.driver.find_element(By.ID, "id_password").send_keys(Keys.ENTER)
|
|
|
|
|
|
|
|
self.assertIn(
|
|
|
|
app.name,
|
|
|
|
self.driver.find_element(
|
|
|
|
By.XPATH, "/html/body/div[2]/div/main/div/form/div[2]/p[1]"
|
|
|
|
).text,
|
|
|
|
)
|
2020-06-21 17:03:13 +00:00
|
|
|
self.wait.until(
|
|
|
|
ec.presence_of_element_located((By.CSS_SELECTOR, "[type=submit]"))
|
|
|
|
)
|
2020-07-12 15:22:26 +00:00
|
|
|
sleep(1)
|
2020-06-19 18:26:04 +00:00
|
|
|
self.driver.find_element(By.CSS_SELECTOR, "[type=submit]").click()
|
|
|
|
|
2020-06-21 16:36:43 +00:00
|
|
|
self.wait.until(
|
2020-06-21 18:46:38 +00:00
|
|
|
ec.presence_of_element_located(
|
|
|
|
(By.XPATH, "//a[contains(@href, '/profile')]")
|
|
|
|
)
|
2020-06-21 16:36:43 +00:00
|
|
|
)
|
2020-06-19 18:26:04 +00:00
|
|
|
self.driver.find_element(By.XPATH, "//a[contains(@href, '/profile')]").click()
|
2020-06-19 17:34:27 +00:00
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(By.CLASS_NAME, "page-header__title").text,
|
2020-06-20 21:52:06 +00:00
|
|
|
USER().name,
|
2020-06-19 17:34:27 +00:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(
|
|
|
|
By.XPATH,
|
|
|
|
"/html/body/grafana-app/div/div/div/react-profile-wrapper/form[1]/div[1]/div/input",
|
|
|
|
).get_attribute("value"),
|
2020-06-20 21:52:06 +00:00
|
|
|
USER().name,
|
2020-06-19 17:34:27 +00:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(
|
|
|
|
By.XPATH,
|
|
|
|
"/html/body/grafana-app/div/div/div/react-profile-wrapper/form[1]/div[2]/div/input",
|
|
|
|
).get_attribute("value"),
|
2020-06-20 21:52:06 +00:00
|
|
|
USER().email,
|
2020-06-19 17:34:27 +00:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
self.driver.find_element(
|
|
|
|
By.XPATH,
|
|
|
|
"/html/body/grafana-app/div/div/div/react-profile-wrapper/form[1]/div[3]/div/input",
|
|
|
|
).get_attribute("value"),
|
2020-06-20 21:52:06 +00:00
|
|
|
USER().email,
|
2020-06-19 17:34:27 +00:00
|
|
|
)
|
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"
|
|
|
|
)
|
|
|
|
client = Client.objects.create(
|
|
|
|
name="grafana",
|
|
|
|
client_type="confidential",
|
|
|
|
client_id=self.client_id,
|
|
|
|
client_secret=self.client_secret,
|
|
|
|
_redirect_uris="http://localhost:3000/login/generic_oauth",
|
|
|
|
_scope="openid profile email",
|
|
|
|
reuse_consent=False,
|
|
|
|
require_consent=False,
|
|
|
|
)
|
|
|
|
# At least one of these objects must exist
|
|
|
|
ensure_rsa_key()
|
|
|
|
# This response_code object might exist or not, depending on the order the tests are run
|
|
|
|
rp_type, _ = ResponseType.objects.get_or_create(value="code")
|
|
|
|
client.response_types.set([rp_type])
|
|
|
|
client.save()
|
|
|
|
provider = OpenIDProvider.objects.create(
|
|
|
|
oidc_client=client, authorization_flow=authorization_flow,
|
|
|
|
)
|
|
|
|
app = Application.objects.create(
|
|
|
|
name="Grafana", slug="grafana", provider=provider,
|
|
|
|
)
|
|
|
|
|
|
|
|
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_for_url(self.url("passbook_flows:denied"))
|
|
|
|
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",
|
|
|
|
)
|