diff options
author | WuKong <rebirthmonkey@gmail.com> | 2017-04-22 13:25:07 +0200 |
---|---|---|
committer | WuKong <rebirthmonkey@gmail.com> | 2017-04-22 13:25:07 +0200 |
commit | d182202fc6001983541504ed323d68479086317e (patch) | |
tree | 11d4c10cdd3e995f519c3e0e324968fdaf175114 /moonv4/moon_interface/tests/apitests/scenario/rbac.py | |
parent | 83c1c966baf73329fab8ddcfad19ad7fe0c41c2a (diff) |
add moonv4
Change-Id: I247af788d0b0fb961fbc85416486b241eb1d807c
Signed-off-by: WuKong <rebirthmonkey@gmail.com>
Diffstat (limited to 'moonv4/moon_interface/tests/apitests/scenario/rbac.py')
-rw-r--r-- | moonv4/moon_interface/tests/apitests/scenario/rbac.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/moonv4/moon_interface/tests/apitests/scenario/rbac.py b/moonv4/moon_interface/tests/apitests/scenario/rbac.py new file mode 100644 index 00000000..073f1d65 --- /dev/null +++ b/moonv4/moon_interface/tests/apitests/scenario/rbac.py @@ -0,0 +1,32 @@ + +pdp_name = "pdp1" +policy_name = "RBAC policy example" +model_name = "RBAC" + +subjects = {"user0": "", "user1": "", } +objects = {"vm0": "", } +actions = {"start": "", "stop": ""} + +subject_categories = {"role": "", } +object_categories = {"id": "", } +action_categories = {"action-type": "", } + +subject_data = {"role": {"admin": "", "employee": ""}} +object_data = {"id": {"vm1": "", "vm2": ""}} +action_data = {"action-type": {"vm-action": "", }} + +subject_assignments = {"user0": {"role": "admin"}, "user1": {"role": "employee"}, } +object_assignments = {"vm0": {"id": "vm1"}} +action_assignments = {"start": {"action-type": "vm-action"}, "stop": {"action-type": "vm-action"}} + +meta_rule = { + "rbac": {"id": "", "value": ("role", "id", "action-type")}, +} + +rules = { + "rbac": ( + ("admin", "vm1", "vm-action"), + ) +} + + |