aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vpp/perf/srv6/regenerate_testcases.py
diff options
context:
space:
mode:
authorVratko Polak <vrpolak@cisco.com>2018-07-16 12:33:10 +0200
committerPeter Mikus <pmikus@cisco.com>2018-07-17 10:57:56 +0000
commit7dda8f57f750c253d3c96ac1b02a84c58e36a6d8 (patch)
tree3563731eb2926f2c73dc71a9f98e910941889f7c /tests/vpp/perf/srv6/regenerate_testcases.py
parentcbdbfe44b7e028706b0286f91df7752781c60d92 (diff)
CSIT-1186: Add srv6 NDRPDR suites
Delete the corresponding ndrpdrdisc suites. MRR suites are also edited, to make them less different from NDRPDR suites. Now, there is a script to re-generate testcases of selected suites. For that, resources/libraries/python/autogen is created, with Regenerator holding the most of script logic. The script looks at files matching a glob expression, reuses a "prolog", but overwites test cases with the default template and hardcoded set of testcase arguments. Also, handling of overhead size has been simplified, using new keyword Get Max Rate And Jumbo And Handle Multi Seg. Default value for search timeout is increased to 12 minutes to make timeout failures less frequent. Change-Id: I394ad61f262b3078e5ca719034b15ada48987ee0 Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'tests/vpp/perf/srv6/regenerate_testcases.py')
-rwxr-xr-xtests/vpp/perf/srv6/regenerate_testcases.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/vpp/perf/srv6/regenerate_testcases.py b/tests/vpp/perf/srv6/regenerate_testcases.py
new file mode 100755
index 0000000000..b63f55bbd9
--- /dev/null
+++ b/tests/vpp/perf/srv6/regenerate_testcases.py
@@ -0,0 +1,18 @@
+#!/usr/bin/env python
+
+# Copyright (c) 2018 Cisco and/or its affiliates.
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at:
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+from resources.libraries.python.autogen.Regenerator import Regenerator
+
+Regenerator().regenerate_glob("*.robot", is_ip6=True)