aboutsummaryrefslogtreecommitdiffstats
path: root/python_moonclient/tests/unit_python/conf/conf_meta_rules.py
diff options
context:
space:
mode:
authorAsteroide <thomas.duval@orange.com>2018-02-19 15:34:21 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-02-19 15:34:21 +0000
commitde90a15a11b5a9e9a9784ab6043e1c956d21ea0f (patch)
tree676f8748d54541623cb7dc07098e9c7170796085 /python_moonclient/tests/unit_python/conf/conf_meta_rules.py
parente36a301b551e454ea8c28aa2beefd8f535d8f6fe (diff)
parent4bf344a003f550369511e5c3600b2600101cc8b7 (diff)
Merge "Use cliff for the moonclient cli"
Diffstat (limited to 'python_moonclient/tests/unit_python/conf/conf_meta_rules.py')
-rw-r--r--python_moonclient/tests/unit_python/conf/conf_meta_rules.py44
1 files changed, 44 insertions, 0 deletions
diff --git a/python_moonclient/tests/unit_python/conf/conf_meta_rules.py b/python_moonclient/tests/unit_python/conf/conf_meta_rules.py
new file mode 100644
index 00000000..67c14ddf
--- /dev/null
+++ b/python_moonclient/tests/unit_python/conf/conf_meta_rules.py
@@ -0,0 +1,44 @@
+from .conf_all import *
+
+
+META_RULES = {
+ "meta_rules": {
+ "1": {
+ "name": "test_meta_rule",
+ "algorithm": "name of the meta rule algorithm",
+ "subject_categories": ["1"],
+ "object_categories": ["1"],
+ "action_categories": ["1"]
+ }
+ }
+}
+
+POST_META_RULES = {
+ "meta_rules": {
+ "1": {
+ "name": "test_meta_rule",
+ "algorithm": "name of the meta rule algorithm",
+ "subject_categories": ["1"],
+ "object_categories": ["1"],
+ "action_categories": ["1"]
+ }
+ }
+}
+
+
+def conf_meta_rules(m):
+ m.register_uri(
+ 'GET', 'http://manager:30001/meta_rules',
+ headers={'X-Subject-Token': "111111111"},
+ json=META_RULES
+ )
+ m.register_uri(
+ 'POST', 'http://manager:30001/meta_rules',
+ headers={'X-Subject-Token': "111111111"},
+ json=POST_META_RULES
+ )
+ m.register_uri(
+ 'DELETE', 'http://manager:30001/meta_rules/1',
+ headers={'X-Subject-Token': "111111111"},
+ json=RESULT_OK
+ )