1f7d52c5ce
* Added support for nested tags to !Find and !Format * Added tests * Fix variable names * Added docs * Fixed small mistake in tests * Fixed variable names * Broke example into multiple lines
165 lines
6.3 KiB
Python
165 lines
6.3 KiB
Python
"""Test blueprints v1"""
|
|
from django.test import TransactionTestCase
|
|
|
|
from authentik.blueprints.tests import load_yaml_fixture
|
|
from authentik.blueprints.v1.exporter import FlowExporter
|
|
from authentik.blueprints.v1.importer import Importer, transaction_rollback
|
|
from authentik.core.models import Group
|
|
from authentik.flows.models import Flow, FlowDesignation, FlowStageBinding
|
|
from authentik.lib.generators import generate_id
|
|
from authentik.policies.expression.models import ExpressionPolicy
|
|
from authentik.policies.models import PolicyBinding
|
|
from authentik.stages.prompt.models import FieldTypes, Prompt, PromptStage
|
|
from authentik.stages.user_login.models import UserLoginStage
|
|
|
|
|
|
class TestBlueprintsV1(TransactionTestCase):
|
|
"""Test Blueprints"""
|
|
|
|
def test_blueprint_invalid_format(self):
|
|
"""Test blueprint with invalid format"""
|
|
importer = Importer('{"version": 3}')
|
|
self.assertFalse(importer.validate()[0])
|
|
importer = Importer(
|
|
(
|
|
'{"version": 1,"entries":[{"identifiers":{},"attrs":{},'
|
|
'"model": "authentik_core.User"}]}'
|
|
)
|
|
)
|
|
self.assertFalse(importer.validate()[0])
|
|
|
|
def test_export_validate_import(self):
|
|
"""Test export and validate it"""
|
|
flow_slug = generate_id()
|
|
with transaction_rollback():
|
|
login_stage = UserLoginStage.objects.create(name=generate_id())
|
|
|
|
flow = Flow.objects.create(
|
|
slug=flow_slug,
|
|
designation=FlowDesignation.AUTHENTICATION,
|
|
name=generate_id(),
|
|
title=generate_id(),
|
|
)
|
|
FlowStageBinding.objects.update_or_create(
|
|
target=flow,
|
|
stage=login_stage,
|
|
order=0,
|
|
)
|
|
|
|
exporter = FlowExporter(flow)
|
|
export = exporter.export()
|
|
self.assertEqual(len(export.entries), 3)
|
|
export_yaml = exporter.export_to_string()
|
|
|
|
importer = Importer(export_yaml)
|
|
self.assertTrue(importer.validate()[0])
|
|
self.assertTrue(importer.apply())
|
|
|
|
self.assertTrue(Flow.objects.filter(slug=flow_slug).exists())
|
|
|
|
def test_export_validate_import_re_import(self):
|
|
"""Test export and import it twice"""
|
|
count_initial = Prompt.objects.filter(field_key="username").count()
|
|
|
|
importer = Importer(load_yaml_fixture("fixtures/static_prompt_export.yaml"))
|
|
self.assertTrue(importer.validate()[0])
|
|
self.assertTrue(importer.apply())
|
|
|
|
count_before = Prompt.objects.filter(field_key="username").count()
|
|
self.assertEqual(count_initial + 1, count_before)
|
|
|
|
importer = Importer(load_yaml_fixture("fixtures/static_prompt_export.yaml"))
|
|
self.assertTrue(importer.apply())
|
|
|
|
self.assertEqual(Prompt.objects.filter(field_key="username").count(), count_before)
|
|
|
|
def test_import_yaml_tags(self):
|
|
"""Test some yaml tags"""
|
|
ExpressionPolicy.objects.filter(name="foo-bar-baz-qux").delete()
|
|
Group.objects.filter(name="test").delete()
|
|
importer = Importer(load_yaml_fixture("fixtures/tags.yaml"), {"bar": "baz"})
|
|
self.assertTrue(importer.validate()[0])
|
|
self.assertTrue(importer.apply())
|
|
policy = ExpressionPolicy.objects.filter(name="foo-bar-baz-qux").first()
|
|
self.assertTrue(policy)
|
|
self.assertTrue(
|
|
Group.objects.filter(
|
|
attributes__contains={
|
|
"policy_pk1": str(policy.pk) + "-suffix",
|
|
"policy_pk2": str(policy.pk) + "-suffix",
|
|
}
|
|
)
|
|
)
|
|
|
|
def test_export_validate_import_policies(self):
|
|
"""Test export and validate it"""
|
|
flow_slug = generate_id()
|
|
stage_name = generate_id()
|
|
with transaction_rollback():
|
|
flow_policy = ExpressionPolicy.objects.create(
|
|
name=generate_id(),
|
|
expression="return True",
|
|
)
|
|
flow = Flow.objects.create(
|
|
slug=flow_slug,
|
|
designation=FlowDesignation.AUTHENTICATION,
|
|
name=generate_id(),
|
|
title=generate_id(),
|
|
)
|
|
PolicyBinding.objects.create(policy=flow_policy, target=flow, order=0)
|
|
|
|
user_login = UserLoginStage.objects.create(name=stage_name)
|
|
fsb = FlowStageBinding.objects.create(target=flow, stage=user_login, order=0)
|
|
PolicyBinding.objects.create(policy=flow_policy, target=fsb, order=0)
|
|
|
|
exporter = FlowExporter(flow)
|
|
export_yaml = exporter.export_to_string()
|
|
|
|
importer = Importer(export_yaml)
|
|
self.assertTrue(importer.validate()[0])
|
|
self.assertTrue(importer.apply())
|
|
self.assertTrue(UserLoginStage.objects.filter(name=stage_name).exists())
|
|
self.assertTrue(Flow.objects.filter(slug=flow_slug).exists())
|
|
|
|
def test_export_validate_import_prompt(self):
|
|
"""Test export and validate it"""
|
|
with transaction_rollback():
|
|
# First stage fields
|
|
username_prompt = Prompt.objects.create(
|
|
field_key="username", label="Username", order=0, type=FieldTypes.TEXT
|
|
)
|
|
password = Prompt.objects.create(
|
|
field_key="password",
|
|
label="Password",
|
|
order=1,
|
|
type=FieldTypes.PASSWORD,
|
|
)
|
|
password_repeat = Prompt.objects.create(
|
|
field_key="password_repeat",
|
|
label="Password (repeat)",
|
|
order=2,
|
|
type=FieldTypes.PASSWORD,
|
|
)
|
|
|
|
# Stages
|
|
first_stage = PromptStage.objects.create(name=generate_id())
|
|
first_stage.fields.set([username_prompt, password, password_repeat])
|
|
first_stage.save()
|
|
|
|
flow = Flow.objects.create(
|
|
name=generate_id(),
|
|
slug=generate_id(),
|
|
designation=FlowDesignation.ENROLLMENT,
|
|
title=generate_id(),
|
|
)
|
|
|
|
FlowStageBinding.objects.create(target=flow, stage=first_stage, order=0)
|
|
|
|
exporter = FlowExporter(flow)
|
|
export_yaml = exporter.export_to_string()
|
|
|
|
importer = Importer(export_yaml)
|
|
|
|
self.assertTrue(importer.validate()[0])
|
|
self.assertTrue(importer.apply())
|