blob: eaca105d6a3a66aaab940cc3dc6c83a0e0750ba4 [file] [log] [blame]
Renato Botelho do Coutoead1e532019-10-31 13:31:07 -05001#!/usr/bin/env python3
Dave Wallacecfcf2f42018-02-16 18:31:56 -05002""" Vpp VCL tests """
3
4import unittest
5import os
Dave Wallace816833f2018-03-14 20:01:28 -04006import subprocess
Dave Wallacecfcf2f42018-02-16 18:31:56 -05007import signal
Damjan Marion5546e432021-09-30 20:04:14 +02008import glob
Klement Sekerab23ffd72021-05-31 16:08:53 +02009from config import config
Pratikshya Prasai657bdf72022-08-18 11:09:38 -040010from asfframework import VppTestCase, VppTestRunner, Worker
Neale Ranns097fa662018-05-01 05:17:55 -070011from vpp_ip_route import VppIpTable, VppIpRoute, VppRoutePath, FibPathProto
Dave Wallacecfcf2f42018-02-16 18:31:56 -050012
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020013iperf3 = "/usr/bin/iperf3"
Paul Vinciguerra063366e2019-06-30 15:38:55 -040014
15
16def have_app(app):
17 try:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020018 subprocess.check_output([app, "-v"])
Paul Vinciguerra063366e2019-06-30 15:38:55 -040019 except (subprocess.CalledProcessError, OSError):
20 return False
21 return True
22
23
24_have_iperf3 = have_app(iperf3)
Paul Vinciguerra063366e2019-06-30 15:38:55 -040025
Dave Wallacecfcf2f42018-02-16 18:31:56 -050026
Dave Wallace816833f2018-03-14 20:01:28 -040027class VCLAppWorker(Worker):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020028 """VCL Test Application Worker"""
Dave Wallace42996c02018-02-26 14:40:13 -050029
Damjan Marion5546e432021-09-30 20:04:14 +020030 libname = "libvcl_ldpreload.so"
31
32 class LibraryNotFound(Exception):
33 pass
34
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020035 def __init__(
36 self, appname, executable_args, logger, env=None, role=None, *args, **kwargs
37 ):
Dave Wallace4ee17d82021-05-20 14:01:51 -040038 self.role = role
Klement Sekerab23ffd72021-05-31 16:08:53 +020039 vcl_ldpreload_glob = f"{config.vpp_install_dir}/**/{self.libname}"
Damjan Marion5546e432021-09-30 20:04:14 +020040 vcl_ldpreload_so = glob.glob(vcl_ldpreload_glob, recursive=True)
41
42 if len(vcl_ldpreload_so) < 1:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020043 raise LibraryNotFound("cannot locate library: {}".format(self.libname))
Damjan Marion5546e432021-09-30 20:04:14 +020044
45 vcl_ldpreload_so = vcl_ldpreload_so[0]
46
Paul Vinciguerra48bdbcd2019-12-04 19:43:53 -050047 if env is None:
48 env = {}
Dave Wallace816833f2018-03-14 20:01:28 -040049 if "iperf" in appname:
50 app = appname
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020051 env.update({"LD_PRELOAD": vcl_ldpreload_so})
Florin Corasab2f6db2018-08-31 14:31:41 -070052 elif "sock" in appname:
Klement Sekerab23ffd72021-05-31 16:08:53 +020053 app = f"{config.vpp_build_dir}/vpp/bin/{appname}"
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020054 env.update({"LD_PRELOAD": vcl_ldpreload_so})
Dave Wallace816833f2018-03-14 20:01:28 -040055 else:
Klement Sekerab23ffd72021-05-31 16:08:53 +020056 app = f"{config.vpp_build_dir}/vpp/bin/{appname}"
Paul Vinciguerra48bdbcd2019-12-04 19:43:53 -050057 self.args = [app] + executable_args
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020058 super(VCLAppWorker, self).__init__(self.args, logger, env, *args, **kwargs)
Dave Wallace42996c02018-02-26 14:40:13 -050059
60
Dave Wallace816833f2018-03-14 20:01:28 -040061class VCLTestCase(VppTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020062 """VCL Test Class"""
63
Florin Coras4c45d6f2021-08-12 08:38:02 -070064 session_startup = ["poll-main"]
Dave Wallace42996c02018-02-26 14:40:13 -050065
Paul Vinciguerra8d991d92019-01-25 14:05:48 -080066 @classmethod
67 def setUpClass(cls):
Florin Coras4c45d6f2021-08-12 08:38:02 -070068 if cls.session_startup:
69 conf = "session {" + " ".join(cls.session_startup) + "}"
70 cls.extra_vpp_punt_config = [conf]
Paul Vinciguerra8d991d92019-01-25 14:05:48 -080071 super(VCLTestCase, cls).setUpClass()
72
73 @classmethod
74 def tearDownClass(cls):
75 super(VCLTestCase, cls).tearDownClass()
76
77 def setUp(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020078 self.vppDebug = "vpp_debug" in config.vpp_install_dir
Dave Wallace9f11c012018-02-28 17:55:23 -050079 self.server_addr = "127.0.0.1"
80 self.server_port = "22000"
Dave Wallace816833f2018-03-14 20:01:28 -040081 self.server_args = [self.server_port]
Dave Wallacede910062018-03-20 09:22:13 -040082 self.server_ipv6_addr = "::1"
83 self.server_ipv6_args = ["-6", self.server_port]
Florin Corasdc2e2512018-12-03 17:47:26 -080084 self.timeout = 20
Dave Wallace9f11c012018-02-28 17:55:23 -050085 self.echo_phrase = "Hello, world! Jenny is a friend of mine."
Florin Corasdc2e2512018-12-03 17:47:26 -080086 self.pre_test_sleep = 0.3
87 self.post_test_sleep = 0.2
Florin Coras4c45d6f2021-08-12 08:38:02 -070088 self.sapi_client_sock = ""
89 self.sapi_server_sock = ""
Florin Corasdc2e2512018-12-03 17:47:26 -080090
91 if os.path.isfile("/tmp/ldp_server_af_unix_socket"):
92 os.remove("/tmp/ldp_server_af_unix_socket")
Dave Wallace42996c02018-02-26 14:40:13 -050093
Paul Vinciguerra8d991d92019-01-25 14:05:48 -080094 super(VCLTestCase, self).setUp()
Dave Wallace42996c02018-02-26 14:40:13 -050095
Florin Coras4c45d6f2021-08-12 08:38:02 -070096 def update_vcl_app_env(self, ns_id, ns_secret, attach_sock):
97 if not ns_id:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020098 if "VCL_APP_NAMESPACE_ID" in self.vcl_app_env:
99 del self.vcl_app_env["VCL_APP_NAMESPACE_ID"]
Florin Coras4c45d6f2021-08-12 08:38:02 -0700100 else:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200101 self.vcl_app_env["VCL_APP_NAMESPACE_ID"] = ns_id
Florin Coras4c45d6f2021-08-12 08:38:02 -0700102
103 if not ns_secret:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200104 if "VCL_APP_NAMESPACE_SECRET" in self.vcl_app_env:
105 del self.vcl_app_env["VCL_APP_NAMESPACE_SECRET"]
Florin Coras4c45d6f2021-08-12 08:38:02 -0700106 else:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200107 self.vcl_app_env["VCL_APP_NAMESPACE_SECRET"] = ns_secret
Florin Coras4c45d6f2021-08-12 08:38:02 -0700108
109 if not attach_sock:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200110 self.vcl_app_env["VCL_VPP_API_SOCKET"] = self.get_api_sock_path()
111 if "VCL_VPP_SAPI_SOCKET" in self.vcl_app_env:
112 del self.vcl_app_env["VCL_VPP_SAPI_SOCKET"]
Florin Coras4c45d6f2021-08-12 08:38:02 -0700113 else:
114 sapi_sock = "%s/app_ns_sockets/%s" % (self.tempdir, attach_sock)
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200115 self.vcl_app_env["VCL_VPP_SAPI_SOCKET"] = sapi_sock
116 if "VCL_VPP_API_SOCKET" in self.vcl_app_env:
117 del self.vcl_app_env["VCL_VPP_API_SOCKET"]
Florin Coras4c45d6f2021-08-12 08:38:02 -0700118
Dave Wallace9f11c012018-02-28 17:55:23 -0500119 def cut_thru_setup(self):
Jakub Grajciar6a2794e2020-11-24 11:22:01 +0100120 self.vapi.session_enable_disable(is_enable=1)
Dave Wallacea67a03e2018-02-20 12:39:37 -0500121
Dave Wallace9f11c012018-02-28 17:55:23 -0500122 def cut_thru_tear_down(self):
Jakub Grajciar6a2794e2020-11-24 11:22:01 +0100123 self.vapi.session_enable_disable(is_enable=0)
Dave Wallacea67a03e2018-02-20 12:39:37 -0500124
Dave Wallace816833f2018-03-14 20:01:28 -0400125 def cut_thru_test(self, server_app, server_args, client_app, client_args):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200126 self.vcl_app_env = {"VCL_APP_SCOPE_LOCAL": "true"}
Florin Coras4c45d6f2021-08-12 08:38:02 -0700127
128 self.update_vcl_app_env("", "", self.sapi_server_sock)
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200129 worker_server = VCLAppWorker(
130 server_app, server_args, self.logger, self.vcl_app_env, "server"
131 )
Dave Wallacecfcf2f42018-02-16 18:31:56 -0500132 worker_server.start()
Florin Corasdc2e2512018-12-03 17:47:26 -0800133 self.sleep(self.pre_test_sleep)
Florin Coras4c45d6f2021-08-12 08:38:02 -0700134
135 self.update_vcl_app_env("", "", self.sapi_client_sock)
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200136 worker_client = VCLAppWorker(
137 client_app, client_args, self.logger, self.vcl_app_env, "client"
138 )
Dave Wallacecfcf2f42018-02-16 18:31:56 -0500139 worker_client.start()
Dave Wallace42996c02018-02-26 14:40:13 -0500140 worker_client.join(self.timeout)
Dave Wallacefef3f7b2018-03-09 12:04:10 -0500141 try:
142 self.validateResults(worker_client, worker_server, self.timeout)
Klement Sekerab9ef2732018-06-24 22:49:33 +0200143 except Exception as error:
Dave Wallacefef3f7b2018-03-09 12:04:10 -0500144 self.fail("Failed with %s" % error)
Florin Corasdc2e2512018-12-03 17:47:26 -0800145 self.sleep(self.post_test_sleep)
Dave Wallacecfcf2f42018-02-16 18:31:56 -0500146
Dave Wallace9f11c012018-02-28 17:55:23 -0500147 def thru_host_stack_setup(self):
Jakub Grajciar6a2794e2020-11-24 11:22:01 +0100148 self.vapi.session_enable_disable(is_enable=1)
Klement Sekerab9ef2732018-06-24 22:49:33 +0200149 self.create_loopback_interfaces(2)
Dave Wallacea67a03e2018-02-20 12:39:37 -0500150
Florin Coras56b39f62018-03-27 17:29:32 -0700151 table_id = 1
Dave Wallacea67a03e2018-02-20 12:39:37 -0500152
153 for i in self.lo_interfaces:
154 i.admin_up()
155
156 if table_id != 0:
157 tbl = VppIpTable(self, table_id)
158 tbl.add_vpp_config()
159
160 i.set_table_ip4(table_id)
161 i.config_ip4()
162 table_id += 1
163
164 # Configure namespaces
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200165 self.vapi.app_namespace_add_del(
166 namespace_id="1", secret=1234, sw_if_index=self.loop0.sw_if_index
167 )
168 self.vapi.app_namespace_add_del(
169 namespace_id="2", secret=5678, sw_if_index=self.loop1.sw_if_index
170 )
Dave Wallacea67a03e2018-02-20 12:39:37 -0500171
Dave Wallacea67a03e2018-02-20 12:39:37 -0500172 # Add inter-table routes
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200173 ip_t01 = VppIpRoute(
174 self,
175 self.loop1.local_ip4,
176 32,
177 [VppRoutePath("0.0.0.0", 0xFFFFFFFF, nh_table_id=2)],
178 table_id=1,
179 )
180 ip_t10 = VppIpRoute(
181 self,
182 self.loop0.local_ip4,
183 32,
184 [VppRoutePath("0.0.0.0", 0xFFFFFFFF, nh_table_id=1)],
185 table_id=2,
186 )
Dave Wallacea67a03e2018-02-20 12:39:37 -0500187 ip_t01.add_vpp_config()
188 ip_t10.add_vpp_config()
Florin Coras56b39f62018-03-27 17:29:32 -0700189 self.logger.debug(self.vapi.cli("show ip fib"))
Dave Wallacea67a03e2018-02-20 12:39:37 -0500190
Dave Wallace9f11c012018-02-28 17:55:23 -0500191 def thru_host_stack_tear_down(self):
192 for i in self.lo_interfaces:
193 i.unconfig_ip4()
194 i.set_table_ip4(0)
195 i.admin_down()
Liangxing Wang22112772022-05-13 04:24:19 +0000196 i.remove_vpp_config()
Dave Wallace9f11c012018-02-28 17:55:23 -0500197
Dave Wallacede910062018-03-20 09:22:13 -0400198 def thru_host_stack_ipv6_setup(self):
Jakub Grajciar6a2794e2020-11-24 11:22:01 +0100199 self.vapi.session_enable_disable(is_enable=1)
Klement Sekerab9ef2732018-06-24 22:49:33 +0200200 self.create_loopback_interfaces(2)
Dave Wallacede910062018-03-20 09:22:13 -0400201
202 table_id = 1
203
204 for i in self.lo_interfaces:
205 i.admin_up()
206
207 tbl = VppIpTable(self, table_id, is_ip6=1)
208 tbl.add_vpp_config()
209
210 i.set_table_ip6(table_id)
211 i.config_ip6()
212 table_id += 1
213
214 # Configure namespaces
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200215 self.vapi.app_namespace_add_del(
216 namespace_id="1", secret=1234, sw_if_index=self.loop0.sw_if_index
217 )
218 self.vapi.app_namespace_add_del(
219 namespace_id="2", secret=5678, sw_if_index=self.loop1.sw_if_index
220 )
Dave Wallacede910062018-03-20 09:22:13 -0400221
222 # Add inter-table routes
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200223 ip_t01 = VppIpRoute(
224 self,
225 self.loop1.local_ip6,
226 128,
227 [VppRoutePath("::0", 0xFFFFFFFF, nh_table_id=2)],
228 table_id=1,
229 )
230 ip_t10 = VppIpRoute(
231 self,
232 self.loop0.local_ip6,
233 128,
234 [VppRoutePath("::0", 0xFFFFFFFF, nh_table_id=1)],
235 table_id=2,
236 )
Dave Wallacede910062018-03-20 09:22:13 -0400237 ip_t01.add_vpp_config()
238 ip_t10.add_vpp_config()
239 self.logger.debug(self.vapi.cli("show interface addr"))
240 self.logger.debug(self.vapi.cli("show ip6 fib"))
241
242 def thru_host_stack_ipv6_tear_down(self):
243 for i in self.lo_interfaces:
244 i.unconfig_ip6()
245 i.set_table_ip6(0)
246 i.admin_down()
247
Jakub Grajciar6a2794e2020-11-24 11:22:01 +0100248 self.vapi.session_enable_disable(is_enable=0)
Dave Wallacede910062018-03-20 09:22:13 -0400249
Paul Vinciguerra063366e2019-06-30 15:38:55 -0400250 @unittest.skipUnless(_have_iperf3, "'%s' not found, Skipping.")
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200251 def thru_host_stack_test(self, server_app, server_args, client_app, client_args):
252 self.vcl_app_env = {"VCL_APP_SCOPE_GLOBAL": "true"}
Dave Wallace9f11c012018-02-28 17:55:23 -0500253
Florin Coras4c45d6f2021-08-12 08:38:02 -0700254 self.update_vcl_app_env("1", "1234", self.sapi_server_sock)
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200255 worker_server = VCLAppWorker(
256 server_app, server_args, self.logger, self.vcl_app_env, "server"
257 )
Dave Wallacea67a03e2018-02-20 12:39:37 -0500258 worker_server.start()
Florin Corasdc2e2512018-12-03 17:47:26 -0800259 self.sleep(self.pre_test_sleep)
Dave Wallace42996c02018-02-26 14:40:13 -0500260
Florin Coras4c45d6f2021-08-12 08:38:02 -0700261 self.update_vcl_app_env("2", "5678", self.sapi_client_sock)
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200262 worker_client = VCLAppWorker(
263 client_app, client_args, self.logger, self.vcl_app_env, "client"
264 )
Dave Wallacea67a03e2018-02-20 12:39:37 -0500265 worker_client.start()
Dave Wallace42996c02018-02-26 14:40:13 -0500266 worker_client.join(self.timeout)
267
Dave Wallacefef3f7b2018-03-09 12:04:10 -0500268 try:
269 self.validateResults(worker_client, worker_server, self.timeout)
Klement Sekerab9ef2732018-06-24 22:49:33 +0200270 except Exception as error:
Dave Wallacefef3f7b2018-03-09 12:04:10 -0500271 self.fail("Failed with %s" % error)
Florin Corasdc2e2512018-12-03 17:47:26 -0800272 self.sleep(self.post_test_sleep)
Dave Wallacea67a03e2018-02-20 12:39:37 -0500273
Dave Wallace9f11c012018-02-28 17:55:23 -0500274 def validateResults(self, worker_client, worker_server, timeout):
Paul Vinciguerra063366e2019-06-30 15:38:55 -0400275 if worker_server.process is None:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200276 raise RuntimeError("worker_server is not running.")
277 if os.path.isdir("/proc/{}".format(worker_server.process.pid)):
278 self.logger.info(
279 "Killing server worker process (pid %d)" % worker_server.process.pid
280 )
Dave Barachad646872019-05-06 10:49:41 -0400281 os.killpg(os.getpgid(worker_server.process.pid), signal.SIGTERM)
Dave Wallaced85075e2018-03-02 13:19:30 -0500282 worker_server.join()
Dave Wallace9f11c012018-02-28 17:55:23 -0500283 self.logger.info("Client worker result is `%s'" % worker_client.result)
284 error = False
285 if worker_client.result is None:
286 try:
287 error = True
288 self.logger.error(
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200289 "Timeout: %ss! Killing client worker process (pid %d)"
290 % (timeout, worker_client.process.pid)
291 )
292 os.killpg(os.getpgid(worker_client.process.pid), signal.SIGKILL)
Dave Wallace9f11c012018-02-28 17:55:23 -0500293 worker_client.join()
Dave Wallace07c0a9d2019-05-13 19:21:24 -0400294 except OSError:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200295 self.logger.debug("Couldn't kill client worker process")
Dave Wallace9f11c012018-02-28 17:55:23 -0500296 raise
297 if error:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200298 raise RuntimeError("Timeout! Client worker did not finish in %ss" % timeout)
Dave Wallace9f11c012018-02-28 17:55:23 -0500299 self.assert_equal(worker_client.result, 0, "Binary test return code")
300
301
Florin Coras0ae445e2018-11-29 18:22:10 -0800302class LDPCutThruTestCase(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200303 """LDP Cut Thru Tests"""
Dave Wallace9f11c012018-02-28 17:55:23 -0500304
Paul Vinciguerra8d991d92019-01-25 14:05:48 -0800305 @classmethod
306 def setUpClass(cls):
Florin Coras4c45d6f2021-08-12 08:38:02 -0700307 cls.session_startup = ["poll-main", "use-app-socket-api"]
Paul Vinciguerra8d991d92019-01-25 14:05:48 -0800308 super(LDPCutThruTestCase, cls).setUpClass()
309
310 @classmethod
311 def tearDownClass(cls):
312 super(LDPCutThruTestCase, cls).tearDownClass()
313
Dave Wallace9f11c012018-02-28 17:55:23 -0500314 def setUp(self):
Florin Coras0ae445e2018-11-29 18:22:10 -0800315 super(LDPCutThruTestCase, self).setUp()
Dave Wallace9f11c012018-02-28 17:55:23 -0500316
317 self.cut_thru_setup()
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200318 self.client_echo_test_args = [
319 "-E",
320 self.echo_phrase,
321 "-X",
322 self.server_addr,
323 self.server_port,
324 ]
Dave Wallace816833f2018-03-14 20:01:28 -0400325 self.client_iperf3_timeout = 20
Florin Coras1d879142021-05-06 00:08:18 -0700326 self.client_iperf3_args = ["-4", "-t 2", "-c", self.server_addr]
327 self.server_iperf3_args = ["-4", "-s"]
Florin Coras2eb42e72018-11-29 00:39:53 -0800328 self.client_uni_dir_nsock_timeout = 20
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200329 self.client_uni_dir_nsock_test_args = [
330 "-N",
331 "1000",
332 "-U",
333 "-X",
334 "-I",
335 "2",
336 self.server_addr,
337 self.server_port,
338 ]
Florin Coras2eb42e72018-11-29 00:39:53 -0800339 self.client_bi_dir_nsock_timeout = 20
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200340 self.client_bi_dir_nsock_test_args = [
341 "-N",
342 "1000",
343 "-B",
344 "-X",
345 "-I",
346 "2",
347 self.server_addr,
348 self.server_port,
349 ]
Florin Coras4c45d6f2021-08-12 08:38:02 -0700350 self.sapi_client_sock = "default"
351 self.sapi_server_sock = "default"
Dave Wallace9f11c012018-02-28 17:55:23 -0500352
353 def tearDown(self):
Florin Coras0ae445e2018-11-29 18:22:10 -0800354 super(LDPCutThruTestCase, self).tearDown()
Paul Vinciguerra9673e3e2019-05-10 20:41:08 -0400355 self.cut_thru_tear_down()
Dave Wallace9f11c012018-02-28 17:55:23 -0500356
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700357 def show_commands_at_teardown(self):
358 self.logger.debug(self.vapi.cli("show session verbose 2"))
Florin Coras41d5f542021-01-15 13:49:33 -0800359 self.logger.debug(self.vapi.cli("show app mq"))
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700360
Klement Sekerab23ffd72021-05-31 16:08:53 +0200361 @unittest.skipUnless(config.extended, "part of extended tests")
Dave Wallace9f11c012018-02-28 17:55:23 -0500362 def test_ldp_cut_thru_echo(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200363 """run LDP cut thru echo test"""
Dave Wallace9f11c012018-02-28 17:55:23 -0500364
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200365 self.cut_thru_test(
366 "sock_test_server",
367 self.server_args,
368 "sock_test_client",
369 self.client_echo_test_args,
370 )
Dave Wallace816833f2018-03-14 20:01:28 -0400371
372 def test_ldp_cut_thru_iperf3(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200373 """run LDP cut thru iperf3 test"""
Dave Wallace816833f2018-03-14 20:01:28 -0400374
Dave Wallace816833f2018-03-14 20:01:28 -0400375 self.timeout = self.client_iperf3_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200376 self.cut_thru_test(
377 iperf3, self.server_iperf3_args, iperf3, self.client_iperf3_args
378 )
Dave Wallace9f11c012018-02-28 17:55:23 -0500379
Klement Sekerab23ffd72021-05-31 16:08:53 +0200380 @unittest.skipUnless(config.extended, "part of extended tests")
Dave Wallaced85075e2018-03-02 13:19:30 -0500381 def test_ldp_cut_thru_uni_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200382 """run LDP cut thru uni-directional (multiple sockets) test"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500383
384 self.timeout = self.client_uni_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200385 self.cut_thru_test(
386 "sock_test_server",
387 self.server_args,
388 "sock_test_client",
389 self.client_uni_dir_nsock_test_args,
390 )
Dave Wallaced85075e2018-03-02 13:19:30 -0500391
Klement Sekerab23ffd72021-05-31 16:08:53 +0200392 @unittest.skipUnless(config.extended, "part of extended tests")
Florin Coras0f46e162019-07-02 19:33:15 -0700393 @unittest.skip("sock test apps need to be improved")
Dave Wallaced85075e2018-03-02 13:19:30 -0500394 def test_ldp_cut_thru_bi_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200395 """run LDP cut thru bi-directional (multiple sockets) test"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500396
397 self.timeout = self.client_bi_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200398 self.cut_thru_test(
399 "sock_test_server",
400 self.server_args,
401 "sock_test_client",
402 self.client_bi_dir_nsock_test_args,
403 )
Dave Wallaced85075e2018-03-02 13:19:30 -0500404
Florin Coras0ae445e2018-11-29 18:22:10 -0800405
406class VCLCutThruTestCase(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200407 """VCL Cut Thru Tests"""
Florin Coras0ae445e2018-11-29 18:22:10 -0800408
Paul Vinciguerra8d991d92019-01-25 14:05:48 -0800409 @classmethod
410 def setUpClass(cls):
411 super(VCLCutThruTestCase, cls).setUpClass()
412
413 @classmethod
414 def tearDownClass(cls):
415 super(VCLCutThruTestCase, cls).tearDownClass()
416
Florin Coras0ae445e2018-11-29 18:22:10 -0800417 def setUp(self):
418 super(VCLCutThruTestCase, self).setUp()
419
420 self.cut_thru_setup()
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200421 self.client_echo_test_args = [
422 "-E",
423 self.echo_phrase,
424 "-X",
425 self.server_addr,
426 self.server_port,
427 ]
Florin Coras0ae445e2018-11-29 18:22:10 -0800428
429 self.client_uni_dir_nsock_timeout = 20
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200430 self.client_uni_dir_nsock_test_args = [
431 "-N",
432 "1000",
433 "-U",
434 "-X",
435 "-I",
436 "2",
437 self.server_addr,
438 self.server_port,
439 ]
Florin Coras0ae445e2018-11-29 18:22:10 -0800440 self.client_bi_dir_nsock_timeout = 20
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200441 self.client_bi_dir_nsock_test_args = [
442 "-N",
443 "1000",
444 "-B",
445 "-X",
446 "-I",
447 "2",
448 self.server_addr,
449 self.server_port,
450 ]
Florin Coras0ae445e2018-11-29 18:22:10 -0800451
452 def tearDown(self):
Florin Coras0ae445e2018-11-29 18:22:10 -0800453 super(VCLCutThruTestCase, self).tearDown()
454
Florin Coras317b8e02019-04-17 09:57:46 -0700455 def show_commands_at_teardown(self):
456 self.logger.debug(self.vapi.cli("show session verbose 2"))
Florin Coras41d5f542021-01-15 13:49:33 -0800457 self.logger.debug(self.vapi.cli("show app mq"))
Florin Coras317b8e02019-04-17 09:57:46 -0700458
Dave Wallace9f11c012018-02-28 17:55:23 -0500459 def test_vcl_cut_thru_echo(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200460 """run VCL cut thru echo test"""
Dave Wallace9f11c012018-02-28 17:55:23 -0500461
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200462 self.cut_thru_test(
463 "vcl_test_server",
464 self.server_args,
465 "vcl_test_client",
466 self.client_echo_test_args,
467 )
Dave Wallace9f11c012018-02-28 17:55:23 -0500468
Dave Wallaced85075e2018-03-02 13:19:30 -0500469 def test_vcl_cut_thru_uni_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200470 """run VCL cut thru uni-directional (multiple sockets) test"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500471
472 self.timeout = self.client_uni_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200473 self.cut_thru_test(
474 "vcl_test_server",
475 self.server_args,
476 "vcl_test_client",
477 self.client_uni_dir_nsock_test_args,
478 )
Dave Wallaced85075e2018-03-02 13:19:30 -0500479
Dave Wallaced85075e2018-03-02 13:19:30 -0500480 def test_vcl_cut_thru_bi_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200481 """run VCL cut thru bi-directional (multiple sockets) test"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500482
483 self.timeout = self.client_bi_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200484 self.cut_thru_test(
485 "vcl_test_server",
486 self.server_args,
487 "vcl_test_client",
488 self.client_bi_dir_nsock_test_args,
489 )
Dave Wallaced85075e2018-03-02 13:19:30 -0500490
Dave Wallace9f11c012018-02-28 17:55:23 -0500491
Florin Corasdc2e2512018-12-03 17:47:26 -0800492class VCLThruHostStackEcho(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200493 """VCL Thru Host Stack Echo"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500494
Paul Vinciguerra8d991d92019-01-25 14:05:48 -0800495 @classmethod
496 def setUpClass(cls):
497 super(VCLThruHostStackEcho, cls).setUpClass()
498
499 @classmethod
500 def tearDownClass(cls):
501 super(VCLThruHostStackEcho, cls).tearDownClass()
502
Dave Wallaced85075e2018-03-02 13:19:30 -0500503 def setUp(self):
Florin Corasdc2e2512018-12-03 17:47:26 -0800504 super(VCLThruHostStackEcho, self).setUp()
Dave Wallaced85075e2018-03-02 13:19:30 -0500505
506 self.thru_host_stack_setup()
Florin Corasdc2e2512018-12-03 17:47:26 -0800507 self.client_bi_dir_nsock_timeout = 20
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200508 self.client_bi_dir_nsock_test_args = [
509 "-N",
510 "1000",
511 "-B",
512 "-X",
513 "-I",
514 "2",
515 self.loop0.local_ip4,
516 self.server_port,
517 ]
518 self.client_echo_test_args = [
519 "-E",
520 self.echo_phrase,
521 "-X",
522 self.loop0.local_ip4,
523 self.server_port,
524 ]
Florin Corasdc2e2512018-12-03 17:47:26 -0800525
526 def tearDown(self):
Florin Corasdc2e2512018-12-03 17:47:26 -0800527 self.thru_host_stack_tear_down()
528 super(VCLThruHostStackEcho, self).tearDown()
529
Filip Tehlar48bdf242022-02-08 09:40:00 +0000530 def test_vcl_thru_host_stack_echo(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200531 """run VCL IPv4 thru host stack echo test"""
Filip Tehlar48bdf242022-02-08 09:40:00 +0000532
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200533 self.thru_host_stack_test(
534 "vcl_test_server",
535 self.server_args,
536 "vcl_test_client",
537 self.client_echo_test_args,
538 )
Filip Tehlar48bdf242022-02-08 09:40:00 +0000539
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700540 def show_commands_at_teardown(self):
541 self.logger.debug(self.vapi.cli("show app server"))
542 self.logger.debug(self.vapi.cli("show session verbose"))
Florin Coras41d5f542021-01-15 13:49:33 -0800543 self.logger.debug(self.vapi.cli("show app mq"))
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700544
Florin Corasdc2e2512018-12-03 17:47:26 -0800545
Florin Coras8a140612019-02-18 22:39:39 -0800546class VCLThruHostStackTLS(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200547 """VCL Thru Host Stack TLS"""
Florin Coras8a140612019-02-18 22:39:39 -0800548
549 @classmethod
550 def setUpClass(cls):
Florin Coras4c45d6f2021-08-12 08:38:02 -0700551 cls.session_startup = ["poll-main", "use-app-socket-api"]
Florin Coras8a140612019-02-18 22:39:39 -0800552 super(VCLThruHostStackTLS, cls).setUpClass()
553
554 @classmethod
555 def tearDownClass(cls):
556 super(VCLThruHostStackTLS, cls).tearDownClass()
557
558 def setUp(self):
559 super(VCLThruHostStackTLS, self).setUp()
560
561 self.thru_host_stack_setup()
562 self.client_uni_dir_tls_timeout = 20
Dave Wallace03dd90a2019-03-25 19:34:50 -0400563 self.server_tls_args = ["-L", self.server_port]
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200564 self.client_uni_dir_tls_test_args = [
565 "-N",
566 "1000",
567 "-U",
568 "-X",
569 "-L",
570 self.loop0.local_ip4,
571 self.server_port,
572 ]
Florin Coras4c45d6f2021-08-12 08:38:02 -0700573 self.sapi_server_sock = "1"
574 self.sapi_client_sock = "2"
Florin Coras8a140612019-02-18 22:39:39 -0800575
576 def test_vcl_thru_host_stack_tls_uni_dir(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200577 """run VCL thru host stack uni-directional TLS test"""
Florin Coras8a140612019-02-18 22:39:39 -0800578
579 self.timeout = self.client_uni_dir_tls_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200580 self.thru_host_stack_test(
581 "vcl_test_server",
582 self.server_tls_args,
583 "vcl_test_client",
584 self.client_uni_dir_tls_test_args,
585 )
Florin Coras8a140612019-02-18 22:39:39 -0800586
587 def tearDown(self):
Florin Coras8a140612019-02-18 22:39:39 -0800588 self.thru_host_stack_tear_down()
589 super(VCLThruHostStackTLS, self).tearDown()
590
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700591 def show_commands_at_teardown(self):
592 self.logger.debug(self.vapi.cli("show app server"))
593 self.logger.debug(self.vapi.cli("show session verbose 2"))
Florin Coras41d5f542021-01-15 13:49:33 -0800594 self.logger.debug(self.vapi.cli("show app mq"))
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700595
Florin Coras8a140612019-02-18 22:39:39 -0800596
Filip Tehlard82c39e2022-02-14 15:39:26 +0000597class VCLThruHostStackTLSInterruptMode(VCLThruHostStackTLS):
598 """VCL Thru Host Stack TLS interrupt mode"""
599
600 @classmethod
601 def setUpClass(cls):
602 cls.session_startup = ["poll-main", "use-app-socket-api", "use-private-rx-mqs"]
603 super(VCLThruHostStackTLS, cls).setUpClass()
604
605
Florin Corascec1b272021-05-06 12:46:04 -0700606class VCLThruHostStackDTLS(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200607 """VCL Thru Host Stack DTLS"""
Florin Corascec1b272021-05-06 12:46:04 -0700608
609 @classmethod
610 def setUpClass(cls):
611 super(VCLThruHostStackDTLS, cls).setUpClass()
612
613 @classmethod
614 def tearDownClass(cls):
615 super(VCLThruHostStackDTLS, cls).tearDownClass()
616
617 def setUp(self):
618 super(VCLThruHostStackDTLS, self).setUp()
619
620 self.thru_host_stack_setup()
621 self.client_uni_dir_dtls_timeout = 20
Florin Corasfb50bc32021-05-18 00:28:59 -0700622 self.server_dtls_args = ["-p", "dtls", self.server_port]
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200623 self.client_uni_dir_dtls_test_args = [
624 "-N",
625 "1000",
626 "-U",
627 "-X",
628 "-p",
629 "dtls",
630 "-T 1400",
631 self.loop0.local_ip4,
632 self.server_port,
633 ]
Florin Corascec1b272021-05-06 12:46:04 -0700634
635 def test_vcl_thru_host_stack_dtls_uni_dir(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200636 """run VCL thru host stack uni-directional DTLS test"""
Florin Corascec1b272021-05-06 12:46:04 -0700637
638 self.timeout = self.client_uni_dir_dtls_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200639 self.thru_host_stack_test(
640 "vcl_test_server",
641 self.server_dtls_args,
642 "vcl_test_client",
643 self.client_uni_dir_dtls_test_args,
644 )
Florin Corascec1b272021-05-06 12:46:04 -0700645
646 def tearDown(self):
647 self.thru_host_stack_tear_down()
648 super(VCLThruHostStackDTLS, self).tearDown()
649
650 def show_commands_at_teardown(self):
651 self.logger.debug(self.vapi.cli("show app server"))
652 self.logger.debug(self.vapi.cli("show session verbose 2"))
653 self.logger.debug(self.vapi.cli("show app mq"))
654
655
Florin Corasdebb3522021-05-18 00:35:50 -0700656class VCLThruHostStackQUIC(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200657 """VCL Thru Host Stack QUIC"""
Florin Corasdebb3522021-05-18 00:35:50 -0700658
659 @classmethod
660 def setUpClass(cls):
661 cls.extra_vpp_plugin_config.append("plugin quic_plugin.so { enable }")
662 super(VCLThruHostStackQUIC, cls).setUpClass()
663
664 @classmethod
665 def tearDownClass(cls):
666 super(VCLThruHostStackQUIC, cls).tearDownClass()
667
668 def setUp(self):
669 super(VCLThruHostStackQUIC, self).setUp()
670
671 self.thru_host_stack_setup()
672 self.client_uni_dir_quic_timeout = 20
673 self.server_quic_args = ["-p", "quic", self.server_port]
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200674 self.client_uni_dir_quic_test_args = [
675 "-N",
676 "1000",
677 "-U",
678 "-X",
679 "-p",
680 "quic",
681 self.loop0.local_ip4,
682 self.server_port,
683 ]
Florin Corasdebb3522021-05-18 00:35:50 -0700684
Klement Sekerab23ffd72021-05-31 16:08:53 +0200685 @unittest.skipUnless(config.extended, "part of extended tests")
Florin Corasdebb3522021-05-18 00:35:50 -0700686 def test_vcl_thru_host_stack_quic_uni_dir(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200687 """run VCL thru host stack uni-directional QUIC test"""
Florin Corasdebb3522021-05-18 00:35:50 -0700688
689 self.timeout = self.client_uni_dir_quic_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200690 self.thru_host_stack_test(
691 "vcl_test_server",
692 self.server_quic_args,
693 "vcl_test_client",
694 self.client_uni_dir_quic_test_args,
695 )
Florin Corasdebb3522021-05-18 00:35:50 -0700696
697 def tearDown(self):
698 self.thru_host_stack_tear_down()
699 super(VCLThruHostStackQUIC, self).tearDown()
700
701 def show_commands_at_teardown(self):
702 self.logger.debug(self.vapi.cli("show app server"))
703 self.logger.debug(self.vapi.cli("show session verbose 2"))
704 self.logger.debug(self.vapi.cli("show app mq"))
705
706
Florin Corasdc2e2512018-12-03 17:47:26 -0800707class VCLThruHostStackBidirNsock(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200708 """VCL Thru Host Stack Bidir Nsock"""
Florin Corasdc2e2512018-12-03 17:47:26 -0800709
Paul Vinciguerra8d991d92019-01-25 14:05:48 -0800710 @classmethod
711 def setUpClass(cls):
712 super(VCLThruHostStackBidirNsock, cls).setUpClass()
713
714 @classmethod
715 def tearDownClass(cls):
716 super(VCLThruHostStackBidirNsock, cls).tearDownClass()
717
Florin Corasdc2e2512018-12-03 17:47:26 -0800718 def setUp(self):
719 super(VCLThruHostStackBidirNsock, self).setUp()
720
721 self.thru_host_stack_setup()
722 self.client_bi_dir_nsock_timeout = 20
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200723 self.client_bi_dir_nsock_test_args = [
724 "-N",
725 "1000",
726 "-B",
727 "-X",
728 "-I",
729 "2",
730 self.loop0.local_ip4,
731 self.server_port,
732 ]
733 self.client_echo_test_args = [
734 "-E",
735 self.echo_phrase,
736 "-X",
737 self.loop0.local_ip4,
738 self.server_port,
739 ]
Dave Wallaced85075e2018-03-02 13:19:30 -0500740
741 def tearDown(self):
742 self.thru_host_stack_tear_down()
Florin Corasdc2e2512018-12-03 17:47:26 -0800743 super(VCLThruHostStackBidirNsock, self).tearDown()
Dave Wallaced85075e2018-03-02 13:19:30 -0500744
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700745 def show_commands_at_teardown(self):
746 self.logger.debug(self.vapi.cli("show session verbose 2"))
Florin Coras41d5f542021-01-15 13:49:33 -0800747 self.logger.debug(self.vapi.cli("show app mq"))
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700748
Dave Wallaced85075e2018-03-02 13:19:30 -0500749 def test_vcl_thru_host_stack_bi_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200750 """run VCL thru host stack bi-directional (multiple sockets) test"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500751
752 self.timeout = self.client_bi_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200753 self.thru_host_stack_test(
754 "vcl_test_server",
755 self.server_args,
756 "vcl_test_client",
757 self.client_bi_dir_nsock_test_args,
758 )
Dave Wallaced85075e2018-03-02 13:19:30 -0500759
760
Florin Corasdc2e2512018-12-03 17:47:26 -0800761class LDPThruHostStackBidirNsock(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200762 """LDP Thru Host Stack Bidir Nsock"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500763
Paul Vinciguerra8d991d92019-01-25 14:05:48 -0800764 @classmethod
765 def setUpClass(cls):
766 super(LDPThruHostStackBidirNsock, cls).setUpClass()
767
768 @classmethod
769 def tearDownClass(cls):
770 super(LDPThruHostStackBidirNsock, cls).tearDownClass()
771
Dave Wallaced85075e2018-03-02 13:19:30 -0500772 def setUp(self):
Florin Corasdc2e2512018-12-03 17:47:26 -0800773 super(LDPThruHostStackBidirNsock, self).setUp()
Dave Wallaced85075e2018-03-02 13:19:30 -0500774
775 self.thru_host_stack_setup()
Dave Wallace3102c382020-04-03 19:48:48 -0400776 self.client_bi_dir_nsock_timeout = 20
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200777 self.client_bi_dir_nsock_test_args = [
778 "-N",
779 "1000",
780 "-B",
781 "-X",
782 # OUCH! Host Stack Bug?
783 # Only fails when running
784 # 'make test TEST_JOBS=auto'
785 # or TEST_JOBS > 1
786 # "-I", "2",
787 self.loop0.local_ip4,
788 self.server_port,
789 ]
Dave Wallaced85075e2018-03-02 13:19:30 -0500790
791 def tearDown(self):
792 self.thru_host_stack_tear_down()
Florin Corasdc2e2512018-12-03 17:47:26 -0800793 super(LDPThruHostStackBidirNsock, self).tearDown()
Dave Wallaced85075e2018-03-02 13:19:30 -0500794
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700795 def show_commands_at_teardown(self):
796 self.logger.debug(self.vapi.cli("show session verbose 2"))
Florin Coras41d5f542021-01-15 13:49:33 -0800797 self.logger.debug(self.vapi.cli("show app mq"))
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700798
Dave Wallaced85075e2018-03-02 13:19:30 -0500799 def test_ldp_thru_host_stack_bi_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200800 """run LDP thru host stack bi-directional (multiple sockets) test"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500801
802 self.timeout = self.client_bi_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200803 self.thru_host_stack_test(
804 "sock_test_server",
805 self.server_args,
806 "sock_test_client",
807 self.client_bi_dir_nsock_test_args,
808 )
Dave Wallaced85075e2018-03-02 13:19:30 -0500809
810
Florin Corasdc2e2512018-12-03 17:47:26 -0800811class LDPThruHostStackNsock(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200812 """LDP Thru Host Stack Nsock"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500813
Paul Vinciguerra8d991d92019-01-25 14:05:48 -0800814 @classmethod
815 def setUpClass(cls):
816 super(LDPThruHostStackNsock, cls).setUpClass()
817
818 @classmethod
819 def tearDownClass(cls):
820 super(LDPThruHostStackNsock, cls).tearDownClass()
821
Dave Wallaced85075e2018-03-02 13:19:30 -0500822 def setUp(self):
Florin Corasdc2e2512018-12-03 17:47:26 -0800823 super(LDPThruHostStackNsock, self).setUp()
Dave Wallaced85075e2018-03-02 13:19:30 -0500824
825 self.thru_host_stack_setup()
826 if self.vppDebug:
Florin Coras2eb42e72018-11-29 00:39:53 -0800827 self.client_uni_dir_nsock_timeout = 20
Dave Wallaced85075e2018-03-02 13:19:30 -0500828 self.numSockets = "2"
829 else:
Florin Coras2eb42e72018-11-29 00:39:53 -0800830 self.client_uni_dir_nsock_timeout = 20
Dave Wallaced85075e2018-03-02 13:19:30 -0500831 self.numSockets = "5"
832
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200833 self.client_uni_dir_nsock_test_args = [
834 "-N",
835 "1000",
836 "-U",
837 "-X",
838 "-I",
839 self.numSockets,
840 self.loop0.local_ip4,
841 self.server_port,
842 ]
Dave Wallaced85075e2018-03-02 13:19:30 -0500843
844 def tearDown(self):
845 self.thru_host_stack_tear_down()
Florin Corasdc2e2512018-12-03 17:47:26 -0800846 super(LDPThruHostStackNsock, self).tearDown()
Dave Wallaced85075e2018-03-02 13:19:30 -0500847
Dave Wallaced85075e2018-03-02 13:19:30 -0500848 def test_ldp_thru_host_stack_uni_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200849 """run LDP thru host stack uni-directional (multiple sockets) test"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500850
851 self.timeout = self.client_uni_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200852 self.thru_host_stack_test(
853 "sock_test_server",
854 self.server_args,
855 "sock_test_client",
856 self.client_uni_dir_nsock_test_args,
857 )
Dave Wallaced85075e2018-03-02 13:19:30 -0500858
859
Florin Corasdc2e2512018-12-03 17:47:26 -0800860class VCLThruHostStackNsock(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200861 """VCL Thru Host Stack Nsock"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500862
Paul Vinciguerra8d991d92019-01-25 14:05:48 -0800863 @classmethod
864 def setUpClass(cls):
865 super(VCLThruHostStackNsock, cls).setUpClass()
866
867 @classmethod
868 def tearDownClass(cls):
869 super(VCLThruHostStackNsock, cls).tearDownClass()
870
Dave Wallaced85075e2018-03-02 13:19:30 -0500871 def setUp(self):
Florin Corasdc2e2512018-12-03 17:47:26 -0800872 super(VCLThruHostStackNsock, self).setUp()
Dave Wallaced85075e2018-03-02 13:19:30 -0500873
874 self.thru_host_stack_setup()
875 if self.vppDebug:
Florin Coras2eb42e72018-11-29 00:39:53 -0800876 self.client_uni_dir_nsock_timeout = 20
Dave Wallaced85075e2018-03-02 13:19:30 -0500877 self.numSockets = "2"
878 else:
Florin Coras2eb42e72018-11-29 00:39:53 -0800879 self.client_uni_dir_nsock_timeout = 20
Dave Wallaced85075e2018-03-02 13:19:30 -0500880 self.numSockets = "5"
881
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200882 self.client_uni_dir_nsock_test_args = [
883 "-N",
884 "1000",
885 "-U",
886 "-X",
887 "-I",
888 self.numSockets,
889 self.loop0.local_ip4,
890 self.server_port,
891 ]
Dave Wallaced85075e2018-03-02 13:19:30 -0500892
893 def tearDown(self):
894 self.thru_host_stack_tear_down()
Florin Corasdc2e2512018-12-03 17:47:26 -0800895 super(VCLThruHostStackNsock, self).tearDown()
Dave Wallaced85075e2018-03-02 13:19:30 -0500896
Dave Wallaced85075e2018-03-02 13:19:30 -0500897 def test_vcl_thru_host_stack_uni_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200898 """run VCL thru host stack uni-directional (multiple sockets) test"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500899
900 self.timeout = self.client_uni_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200901 self.thru_host_stack_test(
902 "vcl_test_server",
903 self.server_args,
904 "vcl_test_client",
905 self.client_uni_dir_nsock_test_args,
906 )
Dave Wallaced85075e2018-03-02 13:19:30 -0500907
908
Florin Corasdc2e2512018-12-03 17:47:26 -0800909class LDPThruHostStackIperf(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200910 """LDP Thru Host Stack Iperf"""
Dave Wallace816833f2018-03-14 20:01:28 -0400911
Paul Vinciguerra8d991d92019-01-25 14:05:48 -0800912 @classmethod
913 def setUpClass(cls):
914 super(LDPThruHostStackIperf, cls).setUpClass()
915
916 @classmethod
917 def tearDownClass(cls):
918 super(LDPThruHostStackIperf, cls).tearDownClass()
919
Dave Wallace816833f2018-03-14 20:01:28 -0400920 def setUp(self):
Florin Corasdc2e2512018-12-03 17:47:26 -0800921 super(LDPThruHostStackIperf, self).setUp()
Dave Wallace816833f2018-03-14 20:01:28 -0400922
923 self.thru_host_stack_setup()
924 self.client_iperf3_timeout = 20
Florin Coras1d879142021-05-06 00:08:18 -0700925 self.client_iperf3_args = ["-4", "-t 2", "-c", self.loop0.local_ip4]
926 self.server_iperf3_args = ["-4", "-s"]
Dave Wallace816833f2018-03-14 20:01:28 -0400927
928 def tearDown(self):
929 self.thru_host_stack_tear_down()
Florin Corasdc2e2512018-12-03 17:47:26 -0800930 super(LDPThruHostStackIperf, self).tearDown()
Dave Wallace816833f2018-03-14 20:01:28 -0400931
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700932 def show_commands_at_teardown(self):
933 self.logger.debug(self.vapi.cli("show session verbose 2"))
Florin Coras41d5f542021-01-15 13:49:33 -0800934 self.logger.debug(self.vapi.cli("show app mq"))
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700935
Paul Vinciguerra063366e2019-06-30 15:38:55 -0400936 @unittest.skipUnless(_have_iperf3, "'%s' not found, Skipping.")
Dave Wallace816833f2018-03-14 20:01:28 -0400937 def test_ldp_thru_host_stack_iperf3(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200938 """run LDP thru host stack iperf3 test"""
Dave Wallace816833f2018-03-14 20:01:28 -0400939
Dave Wallace816833f2018-03-14 20:01:28 -0400940 self.timeout = self.client_iperf3_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200941 self.thru_host_stack_test(
942 iperf3, self.server_iperf3_args, iperf3, self.client_iperf3_args
943 )
Dave Wallace816833f2018-03-14 20:01:28 -0400944
Liangxing Wang22112772022-05-13 04:24:19 +0000945 @unittest.skipUnless(_have_iperf3, "'%s' not found, Skipping.")
946 def test_ldp_thru_host_stack_iperf3_mss(self):
947 """run LDP thru host stack iperf3 test with mss option"""
948
949 self.timeout = self.client_iperf3_timeout
950 self.client_iperf3_args.append("-M 1000")
951 self.thru_host_stack_test(
952 iperf3, self.server_iperf3_args, iperf3, self.client_iperf3_args
953 )
954
Dave Wallace816833f2018-03-14 20:01:28 -0400955
Florin Coras57a5a2d2020-04-01 23:16:11 +0000956class LDPThruHostStackIperfUdp(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200957 """LDP Thru Host Stack Iperf UDP"""
Florin Coras57a5a2d2020-04-01 23:16:11 +0000958
959 @classmethod
960 def setUpClass(cls):
961 super(LDPThruHostStackIperfUdp, cls).setUpClass()
962
963 @classmethod
964 def tearDownClass(cls):
965 super(LDPThruHostStackIperfUdp, cls).tearDownClass()
966
967 def setUp(self):
968 super(LDPThruHostStackIperfUdp, self).setUp()
969
970 self.thru_host_stack_setup()
971 self.client_iperf3_timeout = 20
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200972 self.client_iperf3_args = [
973 "-4",
974 "-t 2",
975 "-u",
976 "-l 1400",
977 "-c",
978 self.loop0.local_ip4,
979 ]
Florin Coras1d879142021-05-06 00:08:18 -0700980 self.server_iperf3_args = ["-4", "-s"]
Florin Coras57a5a2d2020-04-01 23:16:11 +0000981
982 def tearDown(self):
983 self.thru_host_stack_tear_down()
984 super(LDPThruHostStackIperfUdp, self).tearDown()
985
986 def show_commands_at_teardown(self):
987 self.logger.debug(self.vapi.cli("show session verbose 2"))
Florin Coras41d5f542021-01-15 13:49:33 -0800988 self.logger.debug(self.vapi.cli("show app mq"))
Florin Coras57a5a2d2020-04-01 23:16:11 +0000989
990 @unittest.skipUnless(_have_iperf3, "'%s' not found, Skipping.")
991 def test_ldp_thru_host_stack_iperf3_udp(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200992 """run LDP thru host stack iperf3 UDP test"""
Florin Coras57a5a2d2020-04-01 23:16:11 +0000993
994 self.timeout = self.client_iperf3_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200995 self.thru_host_stack_test(
996 iperf3, self.server_iperf3_args, iperf3, self.client_iperf3_args
997 )
Florin Coras57a5a2d2020-04-01 23:16:11 +0000998
999
Florin Coras0ae445e2018-11-29 18:22:10 -08001000class LDPIpv6CutThruTestCase(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001001 """LDP IPv6 Cut Thru Tests"""
Dave Wallacede910062018-03-20 09:22:13 -04001002
Paul Vinciguerra8d991d92019-01-25 14:05:48 -08001003 @classmethod
1004 def setUpClass(cls):
1005 super(LDPIpv6CutThruTestCase, cls).setUpClass()
1006
1007 @classmethod
1008 def tearDownClass(cls):
1009 super(LDPIpv6CutThruTestCase, cls).tearDownClass()
1010
Florin Coras41d5f542021-01-15 13:49:33 -08001011 def show_commands_at_teardown(self):
1012 self.logger.debug(self.vapi.cli("show session verbose 2"))
1013 self.logger.debug(self.vapi.cli("show app mq"))
1014
Dave Wallacede910062018-03-20 09:22:13 -04001015 def setUp(self):
Florin Coras0ae445e2018-11-29 18:22:10 -08001016 super(LDPIpv6CutThruTestCase, self).setUp()
Dave Wallacede910062018-03-20 09:22:13 -04001017
1018 self.cut_thru_setup()
1019 self.client_iperf3_timeout = 20
Florin Coras2eb42e72018-11-29 00:39:53 -08001020 self.client_uni_dir_nsock_timeout = 20
1021 self.client_bi_dir_nsock_timeout = 20
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001022 self.client_ipv6_echo_test_args = [
1023 "-6",
1024 "-E",
1025 self.echo_phrase,
1026 "-X",
1027 self.server_ipv6_addr,
1028 self.server_port,
1029 ]
1030 self.client_ipv6_iperf3_args = ["-6", "-t 2", "-c", self.server_ipv6_addr]
Florin Coras1d879142021-05-06 00:08:18 -07001031 self.server_ipv6_iperf3_args = ["-6", "-s"]
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001032 self.client_ipv6_uni_dir_nsock_test_args = [
1033 "-N",
1034 "1000",
1035 "-U",
1036 "-X",
1037 "-6",
1038 "-I",
1039 "2",
1040 self.server_ipv6_addr,
1041 self.server_port,
1042 ]
1043 self.client_ipv6_bi_dir_nsock_test_args = [
1044 "-N",
1045 "1000",
1046 "-B",
1047 "-X",
1048 "-6",
1049 "-I",
1050 "2",
1051 self.server_ipv6_addr,
1052 self.server_port,
1053 ]
Dave Wallacede910062018-03-20 09:22:13 -04001054
1055 def tearDown(self):
Florin Coras0ae445e2018-11-29 18:22:10 -08001056 super(LDPIpv6CutThruTestCase, self).tearDown()
Paul Vinciguerra9673e3e2019-05-10 20:41:08 -04001057 self.cut_thru_tear_down()
Dave Wallacede910062018-03-20 09:22:13 -04001058
Klement Sekerab23ffd72021-05-31 16:08:53 +02001059 @unittest.skipUnless(config.extended, "part of extended tests")
Dave Wallacede910062018-03-20 09:22:13 -04001060 def test_ldp_ipv6_cut_thru_echo(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001061 """run LDP IPv6 cut thru echo test"""
Dave Wallacede910062018-03-20 09:22:13 -04001062
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001063 self.cut_thru_test(
1064 "sock_test_server",
1065 self.server_ipv6_args,
1066 "sock_test_client",
1067 self.client_ipv6_echo_test_args,
1068 )
Dave Wallacede910062018-03-20 09:22:13 -04001069
Paul Vinciguerra063366e2019-06-30 15:38:55 -04001070 @unittest.skipUnless(_have_iperf3, "'%s' not found, Skipping.")
Dave Wallacede910062018-03-20 09:22:13 -04001071 def test_ldp_ipv6_cut_thru_iperf3(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001072 """run LDP IPv6 cut thru iperf3 test"""
Dave Wallacede910062018-03-20 09:22:13 -04001073
Dave Wallacede910062018-03-20 09:22:13 -04001074 self.timeout = self.client_iperf3_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001075 self.cut_thru_test(
1076 iperf3, self.server_ipv6_iperf3_args, iperf3, self.client_ipv6_iperf3_args
1077 )
Dave Wallacede910062018-03-20 09:22:13 -04001078
Klement Sekerab23ffd72021-05-31 16:08:53 +02001079 @unittest.skipUnless(config.extended, "part of extended tests")
Dave Wallacede910062018-03-20 09:22:13 -04001080 def test_ldp_ipv6_cut_thru_uni_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001081 """run LDP IPv6 cut thru uni-directional (multiple sockets) test"""
Dave Wallacede910062018-03-20 09:22:13 -04001082
1083 self.timeout = self.client_uni_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001084 self.cut_thru_test(
1085 "sock_test_server",
1086 self.server_ipv6_args,
1087 "sock_test_client",
1088 self.client_ipv6_uni_dir_nsock_test_args,
1089 )
Dave Wallacede910062018-03-20 09:22:13 -04001090
Klement Sekerab23ffd72021-05-31 16:08:53 +02001091 @unittest.skipUnless(config.extended, "part of extended tests")
Florin Coras0f46e162019-07-02 19:33:15 -07001092 @unittest.skip("sock test apps need to be improved")
Dave Wallacede910062018-03-20 09:22:13 -04001093 def test_ldp_ipv6_cut_thru_bi_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001094 """run LDP IPv6 cut thru bi-directional (multiple sockets) test"""
Dave Wallacede910062018-03-20 09:22:13 -04001095
1096 self.timeout = self.client_bi_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001097 self.cut_thru_test(
1098 "sock_test_server",
1099 self.server_ipv6_args,
1100 "sock_test_client",
1101 self.client_ipv6_bi_dir_nsock_test_args,
1102 )
Dave Wallacede910062018-03-20 09:22:13 -04001103
Florin Coras0ae445e2018-11-29 18:22:10 -08001104
1105class VCLIpv6CutThruTestCase(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001106 """VCL IPv6 Cut Thru Tests"""
Florin Coras0ae445e2018-11-29 18:22:10 -08001107
Paul Vinciguerra8d991d92019-01-25 14:05:48 -08001108 @classmethod
1109 def setUpClass(cls):
1110 super(VCLIpv6CutThruTestCase, cls).setUpClass()
1111
1112 @classmethod
1113 def tearDownClass(cls):
1114 super(VCLIpv6CutThruTestCase, cls).tearDownClass()
1115
Florin Coras41d5f542021-01-15 13:49:33 -08001116 def show_commands_at_teardown(self):
1117 self.logger.debug(self.vapi.cli("show session verbose 2"))
1118 self.logger.debug(self.vapi.cli("show app mq"))
1119
Florin Coras0ae445e2018-11-29 18:22:10 -08001120 def setUp(self):
1121 super(VCLIpv6CutThruTestCase, self).setUp()
1122
1123 self.cut_thru_setup()
1124 self.client_uni_dir_nsock_timeout = 20
1125 self.client_bi_dir_nsock_timeout = 20
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001126 self.client_ipv6_echo_test_args = [
1127 "-6",
1128 "-E",
1129 self.echo_phrase,
1130 "-X",
1131 self.server_ipv6_addr,
1132 self.server_port,
1133 ]
1134 self.client_ipv6_uni_dir_nsock_test_args = [
1135 "-N",
1136 "1000",
1137 "-U",
1138 "-X",
1139 "-6",
1140 "-I",
1141 "2",
1142 self.server_ipv6_addr,
1143 self.server_port,
1144 ]
1145 self.client_ipv6_bi_dir_nsock_test_args = [
1146 "-N",
1147 "1000",
1148 "-B",
1149 "-X",
1150 "-6",
1151 "-I",
1152 "2",
1153 self.server_ipv6_addr,
1154 self.server_port,
1155 ]
Florin Coras0ae445e2018-11-29 18:22:10 -08001156
1157 def tearDown(self):
Florin Coras0ae445e2018-11-29 18:22:10 -08001158 super(VCLIpv6CutThruTestCase, self).tearDown()
Paul Vinciguerra9673e3e2019-05-10 20:41:08 -04001159 self.cut_thru_tear_down()
Florin Coras0ae445e2018-11-29 18:22:10 -08001160
Florin Coras41d5f542021-01-15 13:49:33 -08001161 def show_commands_at_teardown(self):
1162 self.logger.debug(self.vapi.cli("show session verbose 2"))
1163 self.logger.debug(self.vapi.cli("show app mq"))
1164
Dave Wallacede910062018-03-20 09:22:13 -04001165 def test_vcl_ipv6_cut_thru_echo(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001166 """run VCL IPv6 cut thru echo test"""
Dave Wallacede910062018-03-20 09:22:13 -04001167
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001168 self.cut_thru_test(
1169 "vcl_test_server",
1170 self.server_ipv6_args,
1171 "vcl_test_client",
1172 self.client_ipv6_echo_test_args,
1173 )
Dave Wallacede910062018-03-20 09:22:13 -04001174
Klement Sekerab23ffd72021-05-31 16:08:53 +02001175 @unittest.skipUnless(config.extended, "part of extended tests")
Dave Wallacede910062018-03-20 09:22:13 -04001176 def test_vcl_ipv6_cut_thru_uni_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001177 """run VCL IPv6 cut thru uni-directional (multiple sockets) test"""
Dave Wallacede910062018-03-20 09:22:13 -04001178
1179 self.timeout = self.client_uni_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001180 self.cut_thru_test(
1181 "vcl_test_server",
1182 self.server_ipv6_args,
1183 "vcl_test_client",
1184 self.client_ipv6_uni_dir_nsock_test_args,
1185 )
Dave Wallacede910062018-03-20 09:22:13 -04001186
Klement Sekerab23ffd72021-05-31 16:08:53 +02001187 @unittest.skipUnless(config.extended, "part of extended tests")
Dave Wallacede910062018-03-20 09:22:13 -04001188 def test_vcl_ipv6_cut_thru_bi_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001189 """run VCL IPv6 cut thru bi-directional (multiple sockets) test"""
Dave Wallacede910062018-03-20 09:22:13 -04001190
1191 self.timeout = self.client_bi_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001192 self.cut_thru_test(
1193 "vcl_test_server",
1194 self.server_ipv6_args,
1195 "vcl_test_client",
1196 self.client_ipv6_bi_dir_nsock_test_args,
1197 )
Dave Wallacede910062018-03-20 09:22:13 -04001198
1199
Florin Corasdc2e2512018-12-03 17:47:26 -08001200class VCLIpv6ThruHostStackEcho(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001201 """VCL IPv6 Thru Host Stack Echo"""
Dave Wallacede910062018-03-20 09:22:13 -04001202
Paul Vinciguerra8d991d92019-01-25 14:05:48 -08001203 @classmethod
1204 def setUpClass(cls):
1205 super(VCLIpv6ThruHostStackEcho, cls).setUpClass()
1206
1207 @classmethod
1208 def tearDownClass(cls):
1209 super(VCLIpv6ThruHostStackEcho, cls).tearDownClass()
1210
Dave Wallacede910062018-03-20 09:22:13 -04001211 def setUp(self):
Florin Corasdc2e2512018-12-03 17:47:26 -08001212 super(VCLIpv6ThruHostStackEcho, self).setUp()
Dave Wallacede910062018-03-20 09:22:13 -04001213
1214 self.thru_host_stack_ipv6_setup()
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001215 self.client_ipv6_echo_test_args = [
1216 "-6",
1217 "-E",
1218 self.echo_phrase,
1219 "-X",
1220 self.loop0.local_ip6,
1221 self.server_port,
1222 ]
Dave Wallacede910062018-03-20 09:22:13 -04001223
1224 def tearDown(self):
1225 self.thru_host_stack_ipv6_tear_down()
Florin Corasdc2e2512018-12-03 17:47:26 -08001226 super(VCLIpv6ThruHostStackEcho, self).tearDown()
Dave Wallacede910062018-03-20 09:22:13 -04001227
1228 def test_vcl_ipv6_thru_host_stack_echo(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001229 """run VCL IPv6 thru host stack echo test"""
Dave Wallacede910062018-03-20 09:22:13 -04001230
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001231 self.thru_host_stack_test(
1232 "vcl_test_server",
1233 self.server_ipv6_args,
1234 "vcl_test_client",
1235 self.client_ipv6_echo_test_args,
1236 )
Dave Wallacede910062018-03-20 09:22:13 -04001237
1238
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001239if __name__ == "__main__":
Dave Wallacecfcf2f42018-02-16 18:31:56 -05001240 unittest.main(testRunner=VppTestRunner)