summaryrefslogtreecommitdiffstats
path: root/testsuites/vstf/vstf_scripts/vstf/common/check.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/vstf/vstf_scripts/vstf/common/check.py')
-rw-r--r--testsuites/vstf/vstf_scripts/vstf/common/check.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/testsuites/vstf/vstf_scripts/vstf/common/check.py b/testsuites/vstf/vstf_scripts/vstf/common/check.py
new file mode 100644
index 00000000..2ceddc04
--- /dev/null
+++ b/testsuites/vstf/vstf_scripts/vstf/common/check.py
@@ -0,0 +1,26 @@
+##############################################################################
+# Copyright (c) 2015 Huawei Technologies Co.,Ltd and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+
+import logging
+import vstf.common.constants as cst
+
+LOG = logging.getLogger(__name__)
+
+
+def check_case_params(protocol, typ, tool):
+ if "throughput" == typ:
+ return False, "Not support 'throughput' at this version"
+ if "tcp" == protocol:
+ if tool in ["pktgen", "netmap"]:
+ return False, "%s cant support tcp test" % tool
+ if "qperf" == tool and "latency" != typ:
+ return False, "qperf support latency test only, cant support %s" % typ
+ if "latency" == typ and tool not in ["netperf", "qperf"]:
+ return False, "%s cant support latency test" % tool
+ return True, "support successfully"