summaryrefslogtreecommitdiffstats
path: root/testapi/opnfv_testapi/common/message.py
diff options
context:
space:
mode:
authorSerenaFeng <feng.xiaowei@zte.com.cn>2017-10-20 15:21:59 +0800
committerSerenaFeng <feng.xiaowei@zte.com.cn>2017-10-20 15:21:59 +0800
commit5b2b99e43eba2e7dfd2694ce165c1945642c3838 (patch)
tree4857fab1ebc90e96be984b5bf41b6f5181955370 /testapi/opnfv_testapi/common/message.py
parentac50de317715d09a2b6583ecbecc212338df6df7 (diff)
criteria field must be 'PASS/FAIL'
criteria must be fix with 'PASS/FAIL', case insensitive or else, BADREQUEST exception will be raises JIRA: RELENG-327 Change-Id: Ic648b9d38937fc63924e42cfdf5345cdaa32e1ed Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'testapi/opnfv_testapi/common/message.py')
-rw-r--r--testapi/opnfv_testapi/common/message.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/testapi/opnfv_testapi/common/message.py b/testapi/opnfv_testapi/common/message.py
index 8b5c3fb..3e14f72 100644
--- a/testapi/opnfv_testapi/common/message.py
+++ b/testapi/opnfv_testapi/common/message.py
@@ -26,6 +26,10 @@ def missing(name):
return '{} Missing'.format(name)
+def invalid_value(name, options):
+ return '{} must be in {}'.format(name, options)
+
+
def exist(key, value):
return '{} [{}] {}'.format(key, value, exist_base)