2020-06-29 19:39:04 +00:00
|
|
|
"""Test Enroll flow"""
|
2021-03-24 19:19:10 +00:00
|
|
|
from time import sleep
|
2020-06-29 19:39:04 +00:00
|
|
|
|
|
|
|
from selenium.webdriver.common.by import By
|
|
|
|
from selenium.webdriver.support import expected_conditions as ec
|
2021-02-21 22:30:31 +00:00
|
|
|
from selenium.webdriver.support.wait import WebDriverWait
|
2020-06-29 19:39:04 +00:00
|
|
|
|
2022-08-02 22:05:49 +00:00
|
|
|
from authentik.blueprints.tests import apply_blueprint
|
2020-12-05 21:08:42 +00:00
|
|
|
from authentik.core.models import User
|
2023-02-27 21:42:36 +00:00
|
|
|
from authentik.flows.models import Flow
|
2023-07-19 21:13:22 +00:00
|
|
|
from authentik.lib.config import CONFIG
|
2020-12-05 21:08:42 +00:00
|
|
|
from authentik.stages.identification.models import IdentificationStage
|
2022-08-01 21:05:58 +00:00
|
|
|
from tests.e2e.utils import SeleniumTestCase, retry
|
2020-06-29 19:39:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestFlowsEnroll(SeleniumTestCase):
|
|
|
|
"""Test Enroll flow"""
|
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2022-08-01 21:05:58 +00:00
|
|
|
@apply_blueprint(
|
2023-01-24 11:23:22 +00:00
|
|
|
"default/flow-default-authentication-flow.yaml",
|
|
|
|
"default/flow-default-invalidation-flow.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
2023-02-27 21:42:36 +00:00
|
|
|
@apply_blueprint(
|
|
|
|
"example/flows-enrollment-2-stage.yaml",
|
|
|
|
)
|
2020-06-29 19:39:04 +00:00
|
|
|
def test_enroll_2_step(self):
|
|
|
|
"""Test 2-step enroll flow"""
|
|
|
|
# Attach enrollment flow to identification stage
|
2023-02-27 21:42:36 +00:00
|
|
|
ident_stage: IdentificationStage = IdentificationStage.objects.get(
|
|
|
|
name="default-authentication-identification"
|
|
|
|
)
|
|
|
|
ident_stage.enrollment_flow = Flow.objects.get(slug="default-enrollment-flow")
|
2020-06-29 19:39:04 +00:00
|
|
|
ident_stage.save()
|
|
|
|
|
|
|
|
self.driver.get(self.live_server_url)
|
2021-02-21 22:30:31 +00:00
|
|
|
|
2021-02-27 21:09:40 +00:00
|
|
|
self.initial_stages()
|
2020-06-29 19:39:04 +00:00
|
|
|
|
2021-09-16 15:30:16 +00:00
|
|
|
interface_user = self.get_shadow_root("ak-interface-user")
|
|
|
|
wait = WebDriverWait(interface_user, self.wait_timeout)
|
2021-03-16 17:24:31 +00:00
|
|
|
|
2021-09-16 20:48:34 +00:00
|
|
|
wait.until(ec.presence_of_element_located((By.CSS_SELECTOR, ".pf-c-page__header")))
|
|
|
|
self.driver.get(self.if_user_url("/settings"))
|
2020-06-29 19:39:04 +00:00
|
|
|
|
2020-11-23 13:24:42 +00:00
|
|
|
user = User.objects.get(username="foo")
|
|
|
|
self.assertEqual(user.username, "foo")
|
|
|
|
self.assertEqual(user.name, "some name")
|
|
|
|
self.assertEqual(user.email, "foo@bar.baz")
|
2020-06-29 19:39:04 +00:00
|
|
|
|
2020-10-20 16:42:26 +00:00
|
|
|
@retry()
|
2022-08-01 21:05:58 +00:00
|
|
|
@apply_blueprint(
|
2023-01-24 11:23:22 +00:00
|
|
|
"default/flow-default-authentication-flow.yaml",
|
|
|
|
"default/flow-default-invalidation-flow.yaml",
|
2022-08-01 21:05:58 +00:00
|
|
|
)
|
2023-02-27 21:42:36 +00:00
|
|
|
@apply_blueprint(
|
|
|
|
"example/flows-enrollment-email-verification.yaml",
|
|
|
|
)
|
2023-07-19 21:13:22 +00:00
|
|
|
@CONFIG.patch("email.port", 1025)
|
2020-06-29 19:39:04 +00:00
|
|
|
def test_enroll_email(self):
|
|
|
|
"""Test enroll with Email verification"""
|
|
|
|
# Attach enrollment flow to identification stage
|
2023-02-27 21:42:36 +00:00
|
|
|
ident_stage: IdentificationStage = IdentificationStage.objects.get(
|
|
|
|
name="default-authentication-identification"
|
|
|
|
)
|
|
|
|
ident_stage.enrollment_flow = Flow.objects.get(slug="default-enrollment-flow")
|
2020-06-29 19:39:04 +00:00
|
|
|
ident_stage.save()
|
|
|
|
|
|
|
|
self.driver.get(self.live_server_url)
|
2021-02-27 21:09:40 +00:00
|
|
|
self.initial_stages()
|
|
|
|
|
|
|
|
# Email stage
|
|
|
|
flow_executor = self.get_shadow_root("ak-flow-executor")
|
|
|
|
email_stage = self.get_shadow_root("ak-stage-email", flow_executor)
|
|
|
|
|
|
|
|
wait = WebDriverWait(email_stage, self.wait_timeout)
|
|
|
|
|
2020-09-11 21:21:11 +00:00
|
|
|
# Wait for the success message so we know the email is sent
|
2021-02-27 21:09:40 +00:00
|
|
|
wait.until(ec.presence_of_element_located((By.CSS_SELECTOR, ".pf-c-form p")))
|
2020-06-29 19:39:04 +00:00
|
|
|
|
2023-05-03 14:18:03 +00:00
|
|
|
# Open Mailpit
|
2020-06-29 19:39:04 +00:00
|
|
|
self.driver.get("http://localhost:8025")
|
|
|
|
|
|
|
|
# Click on first message
|
2023-05-03 14:18:03 +00:00
|
|
|
self.wait.until(ec.presence_of_element_located((By.CLASS_NAME, "message")))
|
|
|
|
self.driver.find_element(By.CLASS_NAME, "message").click()
|
|
|
|
self.driver.switch_to.frame(self.driver.find_element(By.ID, "preview-html"))
|
2020-06-29 19:39:04 +00:00
|
|
|
self.driver.find_element(By.ID, "confirm").click()
|
|
|
|
self.driver.close()
|
|
|
|
self.driver.switch_to.window(self.driver.window_handles[0])
|
|
|
|
|
2021-03-24 19:19:10 +00:00
|
|
|
sleep(2)
|
2020-06-29 19:39:04 +00:00
|
|
|
# We're now logged in
|
2021-09-16 15:30:16 +00:00
|
|
|
wait = WebDriverWait(self.get_shadow_root("ak-interface-user"), self.wait_timeout)
|
2021-03-16 17:24:31 +00:00
|
|
|
|
2021-09-16 20:48:34 +00:00
|
|
|
wait.until(ec.presence_of_element_located((By.CSS_SELECTOR, ".pf-c-page__header")))
|
|
|
|
self.driver.get(self.if_user_url("/settings"))
|
2020-06-29 19:39:04 +00:00
|
|
|
|
2020-11-23 13:24:42 +00:00
|
|
|
self.assert_user(User.objects.get(username="foo"))
|
2021-02-27 21:09:40 +00:00
|
|
|
|
|
|
|
def initial_stages(self):
|
|
|
|
"""Fill out initial stages"""
|
|
|
|
# Identification stage, click enroll
|
|
|
|
flow_executor = self.get_shadow_root("ak-flow-executor")
|
2021-08-03 15:45:16 +00:00
|
|
|
identification_stage = self.get_shadow_root("ak-stage-identification", flow_executor)
|
2021-02-27 21:09:40 +00:00
|
|
|
wait = WebDriverWait(identification_stage, self.wait_timeout)
|
|
|
|
|
|
|
|
wait.until(ec.presence_of_element_located((By.CSS_SELECTOR, "#enroll")))
|
|
|
|
identification_stage.find_element(By.CSS_SELECTOR, "#enroll").click()
|
|
|
|
|
|
|
|
# First prompt stage
|
|
|
|
flow_executor = self.get_shadow_root("ak-flow-executor")
|
|
|
|
prompt_stage = self.get_shadow_root("ak-stage-prompt", flow_executor)
|
|
|
|
wait = WebDriverWait(prompt_stage, self.wait_timeout)
|
|
|
|
|
2021-08-03 15:45:16 +00:00
|
|
|
wait.until(ec.presence_of_element_located((By.CSS_SELECTOR, "input[name=username]")))
|
|
|
|
prompt_stage.find_element(By.CSS_SELECTOR, "input[name=username]").send_keys("foo")
|
2021-02-27 21:09:40 +00:00
|
|
|
prompt_stage.find_element(By.CSS_SELECTOR, "input[name=password]").send_keys(
|
2021-11-23 20:30:02 +00:00
|
|
|
self.user.username
|
2021-02-27 21:09:40 +00:00
|
|
|
)
|
2021-08-03 15:45:16 +00:00
|
|
|
prompt_stage.find_element(By.CSS_SELECTOR, "input[name=password_repeat]").send_keys(
|
2021-11-23 20:30:02 +00:00
|
|
|
self.user.username
|
2021-08-03 15:45:16 +00:00
|
|
|
)
|
2021-02-27 21:09:40 +00:00
|
|
|
prompt_stage.find_element(By.CSS_SELECTOR, ".pf-c-button").click()
|
|
|
|
|
|
|
|
# Second prompt stage
|
|
|
|
flow_executor = self.get_shadow_root("ak-flow-executor")
|
|
|
|
prompt_stage = self.get_shadow_root("ak-stage-prompt", flow_executor)
|
2021-02-27 22:33:15 +00:00
|
|
|
wait = WebDriverWait(prompt_stage, self.wait_timeout)
|
2021-02-27 21:09:40 +00:00
|
|
|
|
2021-08-03 15:45:16 +00:00
|
|
|
wait.until(ec.presence_of_element_located((By.CSS_SELECTOR, "input[name=name]")))
|
|
|
|
prompt_stage.find_element(By.CSS_SELECTOR, "input[name=name]").send_keys("some name")
|
|
|
|
prompt_stage.find_element(By.CSS_SELECTOR, "input[name=email]").send_keys("foo@bar.baz")
|
2021-02-27 21:09:40 +00:00
|
|
|
prompt_stage.find_element(By.CSS_SELECTOR, ".pf-c-button").click()
|