diff options
author | 2017-12-27 12:55:12 +0000 | |
---|---|---|
committer | 2017-12-27 12:55:12 +0000 | |
commit | 1ae589007f72d648f03745983633b5453cae0592 (patch) | |
tree | 9949f60696db589b9ef1ac480cd2eb196d9d5299 /tests/functional/scenario_tests/mls.py | |
parent | a7d5b9a4b29e3b3d18b3a63bd32b28c1008ec48e (diff) | |
parent | 30dfb6af2e2cd2cbc1632031202f48c1ef6a876f (diff) |
Merge "moon_forming for policy templates"
Diffstat (limited to 'tests/functional/scenario_tests/mls.py')
-rw-r--r-- | tests/functional/scenario_tests/mls.py | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/tests/functional/scenario_tests/mls.py b/tests/functional/scenario_tests/mls.py new file mode 100644 index 00000000..0e6285c9 --- /dev/null +++ b/tests/functional/scenario_tests/mls.py @@ -0,0 +1,59 @@ + +pdp_name = "pdp_mls" +policy_name = "MLS Policy example" +model_name = "MLS" +policy_genre = "authz" + +subjects = {"adminuser": "", "user1": "", "user2": "", } +objects = {"vm0": "", "vm1": "", } +actions = {"start": "", "stop": ""} + +subject_categories = {"subject-security-level": "", } +object_categories = {"object-security-level": "", } +action_categories = {"action-type": "", } + +subject_data = { + "subject-security-level": {"low": "", "medium": "", "high": ""}, +} +object_data = { + "object-security-level": {"low": "", "medium": "", "high": ""}, +} +action_data = {"action-type": {"vm-action": "", "storage-action": "", }} + +subject_assignments = { + "adminuser": {"subject-security-level": "high"}, + "user1": {"subject-security-level": "medium"}, +} +object_assignments = { + "vm0": {"object-security-level": "medium"}, + "vm1": {"object-security-level": "low"}, +} +action_assignments = { + "start": {"action-type": "vm-action"}, + "stop": {"action-type": "vm-action"} +} + +meta_rule = { + "mls": { + "id": "", + "value": ("subject-security-level", + "object-security-level", + "action-type")}, +} + +rules = { + "mls": ( + { + "rule": ("high", "medium", "vm-action"), + "instructions": ({"decision": "grant"}) + }, + { + "rule": ("high", "low", "vm-action"), + "instructions": ({"decision": "grant"}) + }, + { + "rule": ("medium", "low", "vm-action"), + "instructions": ({"decision": "grant"}) + }, + ) +} |