From 00bfa61e3a3cd0fef6038ba297b92f6bc3f6b6c7 Mon Sep 17 00:00:00 2001 From: asteroide Date: Wed, 26 Jul 2017 08:55:58 +0200 Subject: Delete test data from repository. Change-Id: Ie3da4f813a50df34b64e2d2a7d26e737720c98a6 --- .../11_user_scalability/scenario/session_1500.py | 69 ---------------------- 1 file changed, 69 deletions(-) delete mode 100644 moonv4/tests/11_user_scalability/scenario/session_1500.py (limited to 'moonv4/tests/11_user_scalability/scenario/session_1500.py') diff --git a/moonv4/tests/11_user_scalability/scenario/session_1500.py b/moonv4/tests/11_user_scalability/scenario/session_1500.py deleted file mode 100644 index 8282d9f3..00000000 --- a/moonv4/tests/11_user_scalability/scenario/session_1500.py +++ /dev/null @@ -1,69 +0,0 @@ -import random - -pdp_name = "pdp1" -policy_name = "Session policy example" -model_name = "Session" -policy_genre = "session" - -SUBJECT_NUMBER = 1500 -OBJECT_NUMBER = 1500 -ROLE_NUMBER = 1000 - -subjects = {} -for _id in range(SUBJECT_NUMBER): - subjects["user{}".format(_id)] = "" -objects = {"admin": "", } -for _id in range(ROLE_NUMBER): - objects["role{}".format(_id)] = "" -actions = {"activate": "", "deactivate": ""} - -subject_categories = {"subjectid": "", } -object_categories = {"role": "", } -action_categories = {"session-action": "", } - -subject_data = {"subjectid": {}} -for _id in range(SUBJECT_NUMBER): - subject_data["subjectid"]["user{}".format(_id)] = "" - -object_data = {"role": { - "admin": "", - "*": "" -}} -for _id in range(ROLE_NUMBER): - object_data["role"]["role{}".format(_id)] = "" -action_data = {"session-action": {"activate": "", "deactivate": "", "*": ""}} - -subject_assignments = {} -for _id in range(SUBJECT_NUMBER): - subject_assignments["user{}".format(_id)] = ({"subjectid": "user{}".format(_id)}, ) -object_assignments = {"admin": ({"role": "admin"}, {"role": "*"})} -for _id in range(ROLE_NUMBER): - _role = "role{}".format(_id) - object_assignments[_role] = ({"role": _role}, {"role": "*"}) -action_assignments = {"activate": ({"session-action": "activate"}, {"session-action": "*"}, ), - "deactivate": ({"session-action": "deactivate"}, {"session-action": "*"}, ) - } - -meta_rule = { - "session": {"id": "", "value": ("subjectid", "role", "session-action")}, -} - -rules = { - "session": [] -} - -for _id in range(SUBJECT_NUMBER): - _subject = "user{}".format(_id) - _object = "role{}".format(random.choice(range(ROLE_NUMBER))) - rules["session"].append({ - "rule": (_subject, _object, "*"), - "instructions": ( - { - "update": { - "operation": "add", - "target": "rbac:role:admin" # add the role admin to the current user - } - }, - {"chain": {"name": "rbac"}} # chain with the meta_rule named rbac - ) - }) -- cgit 1.2.3-korg