aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/autogen
diff options
context:
space:
mode:
authorVratko Polak <vrpolak@cisco.com>2018-07-20 19:06:49 +0200
committerVratko Polak <vrpolak@cisco.com>2018-07-24 20:16:01 +0200
commit5d6479beed22bb3d14a39e9c130946959c13f03e (patch)
treee5e38fc1a040d6f5d48c1055451e27005194c8b2 /resources/libraries/python/autogen
parentc557187e2bcb86e610382726c5c7c00bf7a0217c (diff)
CSIT-1097: Migrate L2 to NDRPDR and edit MRR
Change-Id: I738d1794f795e1225bc9709ea2ed2cf9b06d1cf4 Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'resources/libraries/python/autogen')
-rw-r--r--resources/libraries/python/autogen/DefaultTestcase.py1
-rw-r--r--resources/libraries/python/autogen/Regenerator.py23
2 files changed, 13 insertions, 11 deletions
diff --git a/resources/libraries/python/autogen/DefaultTestcase.py b/resources/libraries/python/autogen/DefaultTestcase.py
index 3c11cb073e..0aaf40d7ca 100644
--- a/resources/libraries/python/autogen/DefaultTestcase.py
+++ b/resources/libraries/python/autogen/DefaultTestcase.py
@@ -26,6 +26,7 @@ class DefaultTestcase(Testcase):
Example: ethip6srhip6-ip6base-srv6enc2sids-nodecaps-ndrpdr
:type suite_id: str
"""
+ self.suite_id = suite_id
template_string = r'''
| ${tc_num}-${frame_str}-${cores_str}c-''' + suite_id + r'''
| | [Tags] | ${frame_str} | ${cores_str}C
diff --git a/resources/libraries/python/autogen/Regenerator.py b/resources/libraries/python/autogen/Regenerator.py
index 4ed123ae7c..e7e0370325 100644
--- a/resources/libraries/python/autogen/Regenerator.py
+++ b/resources/libraries/python/autogen/Regenerator.py
@@ -59,24 +59,26 @@ class Regenerator(object):
protocol_to_min_framesize = {
"ip4": 64,
"ip6": 78,
- "vxlan+ip4": 114
+ "vxlan+ip4": 114 # What is the real minimum for latency stream?
}
- def get_suite_id(filename):
+ def get_iface_and_suite_id(filename):
dash_split = filename.split("-", 1)
if len(dash_split[0]) <= 4:
# It was something like "2n1l", we need one more split.
dash_split = dash_split[1].split("-", 1)
- return dash_split[1].split(".", 1)[0]
+ return dash_split[0], dash_split[1].split(".", 1)[0]
- def add_testcase(file_out, num, **kwargs):
- file_out.write(testcase.generate(num=num, **kwargs))
+ def add_testcase(testcase, iface, file_out, num, **kwargs):
+ # TODO: Is there a better way to disable some combinations?
+ if kwargs["framesize"] != 9000 or "vic1227" not in iface:
+ file_out.write(testcase.generate(num=num, **kwargs))
return num + 1
- def add_testcases(file_out, tc_kwargs_list):
+ def add_testcases(testcase, iface, file_out, tc_kwargs_list):
num = 1
for tc_kwargs in tc_kwargs_list:
- num = add_testcase(file_out, num, **tc_kwargs)
+ num = add_testcase(testcase, iface, file_out, num, **tc_kwargs)
print "Regenerator starts at {cwd}".format(cwd=getcwd())
min_framesize = protocol_to_min_framesize[protocol]
@@ -95,15 +97,14 @@ class Regenerator(object):
{"framesize": "IMIX_v4_1", "phy_cores": 4}
]
for filename in glob(pattern):
+ print "Regenerating filename:", filename
with open(filename, "r") as file_in:
text = file_in.read()
text_prolog = "".join(text.partition("*** Test Cases ***")[:-1])
- # TODO: Make the following work for 2n suites.
- suite_id = get_suite_id(filename)
- print "Regenerating suite_id:", suite_id
+ iface, suite_id = get_iface_and_suite_id(filename)
testcase = self.testcase_class(suite_id)
with open(filename, "w") as file_out:
file_out.write(text_prolog)
- add_testcases(file_out, kwargs_list)
+ add_testcases(testcase, iface, file_out, kwargs_list)
print "Regenerator ends."
print # To make autogen check output more readable.