blob: 8c0a49da06307e0c2c80bbf8dcef5d0a2aeebc25 [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
10from framework 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
Florin Corascec1b272021-05-06 12:46:04 -0700597class VCLThruHostStackDTLS(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200598 """VCL Thru Host Stack DTLS"""
Florin Corascec1b272021-05-06 12:46:04 -0700599
600 @classmethod
601 def setUpClass(cls):
602 super(VCLThruHostStackDTLS, cls).setUpClass()
603
604 @classmethod
605 def tearDownClass(cls):
606 super(VCLThruHostStackDTLS, cls).tearDownClass()
607
608 def setUp(self):
609 super(VCLThruHostStackDTLS, self).setUp()
610
611 self.thru_host_stack_setup()
612 self.client_uni_dir_dtls_timeout = 20
Florin Corasfb50bc32021-05-18 00:28:59 -0700613 self.server_dtls_args = ["-p", "dtls", self.server_port]
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200614 self.client_uni_dir_dtls_test_args = [
615 "-N",
616 "1000",
617 "-U",
618 "-X",
619 "-p",
620 "dtls",
621 "-T 1400",
622 self.loop0.local_ip4,
623 self.server_port,
624 ]
Florin Corascec1b272021-05-06 12:46:04 -0700625
626 def test_vcl_thru_host_stack_dtls_uni_dir(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200627 """run VCL thru host stack uni-directional DTLS test"""
Florin Corascec1b272021-05-06 12:46:04 -0700628
629 self.timeout = self.client_uni_dir_dtls_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200630 self.thru_host_stack_test(
631 "vcl_test_server",
632 self.server_dtls_args,
633 "vcl_test_client",
634 self.client_uni_dir_dtls_test_args,
635 )
Florin Corascec1b272021-05-06 12:46:04 -0700636
637 def tearDown(self):
638 self.thru_host_stack_tear_down()
639 super(VCLThruHostStackDTLS, self).tearDown()
640
641 def show_commands_at_teardown(self):
642 self.logger.debug(self.vapi.cli("show app server"))
643 self.logger.debug(self.vapi.cli("show session verbose 2"))
644 self.logger.debug(self.vapi.cli("show app mq"))
645
646
Florin Corasdebb3522021-05-18 00:35:50 -0700647class VCLThruHostStackQUIC(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200648 """VCL Thru Host Stack QUIC"""
Florin Corasdebb3522021-05-18 00:35:50 -0700649
650 @classmethod
651 def setUpClass(cls):
652 cls.extra_vpp_plugin_config.append("plugin quic_plugin.so { enable }")
653 super(VCLThruHostStackQUIC, cls).setUpClass()
654
655 @classmethod
656 def tearDownClass(cls):
657 super(VCLThruHostStackQUIC, cls).tearDownClass()
658
659 def setUp(self):
660 super(VCLThruHostStackQUIC, self).setUp()
661
662 self.thru_host_stack_setup()
663 self.client_uni_dir_quic_timeout = 20
664 self.server_quic_args = ["-p", "quic", self.server_port]
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200665 self.client_uni_dir_quic_test_args = [
666 "-N",
667 "1000",
668 "-U",
669 "-X",
670 "-p",
671 "quic",
672 self.loop0.local_ip4,
673 self.server_port,
674 ]
Florin Corasdebb3522021-05-18 00:35:50 -0700675
Klement Sekerab23ffd72021-05-31 16:08:53 +0200676 @unittest.skipUnless(config.extended, "part of extended tests")
Florin Corasdebb3522021-05-18 00:35:50 -0700677 def test_vcl_thru_host_stack_quic_uni_dir(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200678 """run VCL thru host stack uni-directional QUIC test"""
Florin Corasdebb3522021-05-18 00:35:50 -0700679
680 self.timeout = self.client_uni_dir_quic_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200681 self.thru_host_stack_test(
682 "vcl_test_server",
683 self.server_quic_args,
684 "vcl_test_client",
685 self.client_uni_dir_quic_test_args,
686 )
Florin Corasdebb3522021-05-18 00:35:50 -0700687
688 def tearDown(self):
689 self.thru_host_stack_tear_down()
690 super(VCLThruHostStackQUIC, self).tearDown()
691
692 def show_commands_at_teardown(self):
693 self.logger.debug(self.vapi.cli("show app server"))
694 self.logger.debug(self.vapi.cli("show session verbose 2"))
695 self.logger.debug(self.vapi.cli("show app mq"))
696
697
Florin Corasdc2e2512018-12-03 17:47:26 -0800698class VCLThruHostStackBidirNsock(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200699 """VCL Thru Host Stack Bidir Nsock"""
Florin Corasdc2e2512018-12-03 17:47:26 -0800700
Paul Vinciguerra8d991d92019-01-25 14:05:48 -0800701 @classmethod
702 def setUpClass(cls):
703 super(VCLThruHostStackBidirNsock, cls).setUpClass()
704
705 @classmethod
706 def tearDownClass(cls):
707 super(VCLThruHostStackBidirNsock, cls).tearDownClass()
708
Florin Corasdc2e2512018-12-03 17:47:26 -0800709 def setUp(self):
710 super(VCLThruHostStackBidirNsock, self).setUp()
711
712 self.thru_host_stack_setup()
713 self.client_bi_dir_nsock_timeout = 20
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200714 self.client_bi_dir_nsock_test_args = [
715 "-N",
716 "1000",
717 "-B",
718 "-X",
719 "-I",
720 "2",
721 self.loop0.local_ip4,
722 self.server_port,
723 ]
724 self.client_echo_test_args = [
725 "-E",
726 self.echo_phrase,
727 "-X",
728 self.loop0.local_ip4,
729 self.server_port,
730 ]
Dave Wallaced85075e2018-03-02 13:19:30 -0500731
732 def tearDown(self):
733 self.thru_host_stack_tear_down()
Florin Corasdc2e2512018-12-03 17:47:26 -0800734 super(VCLThruHostStackBidirNsock, self).tearDown()
Dave Wallaced85075e2018-03-02 13:19:30 -0500735
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700736 def show_commands_at_teardown(self):
737 self.logger.debug(self.vapi.cli("show session verbose 2"))
Florin Coras41d5f542021-01-15 13:49:33 -0800738 self.logger.debug(self.vapi.cli("show app mq"))
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700739
Dave Wallaced85075e2018-03-02 13:19:30 -0500740 def test_vcl_thru_host_stack_bi_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200741 """run VCL thru host stack bi-directional (multiple sockets) test"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500742
743 self.timeout = self.client_bi_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200744 self.thru_host_stack_test(
745 "vcl_test_server",
746 self.server_args,
747 "vcl_test_client",
748 self.client_bi_dir_nsock_test_args,
749 )
Dave Wallaced85075e2018-03-02 13:19:30 -0500750
751
Florin Corasdc2e2512018-12-03 17:47:26 -0800752class LDPThruHostStackBidirNsock(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200753 """LDP Thru Host Stack Bidir Nsock"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500754
Paul Vinciguerra8d991d92019-01-25 14:05:48 -0800755 @classmethod
756 def setUpClass(cls):
757 super(LDPThruHostStackBidirNsock, cls).setUpClass()
758
759 @classmethod
760 def tearDownClass(cls):
761 super(LDPThruHostStackBidirNsock, cls).tearDownClass()
762
Dave Wallaced85075e2018-03-02 13:19:30 -0500763 def setUp(self):
Florin Corasdc2e2512018-12-03 17:47:26 -0800764 super(LDPThruHostStackBidirNsock, self).setUp()
Dave Wallaced85075e2018-03-02 13:19:30 -0500765
766 self.thru_host_stack_setup()
Dave Wallace3102c382020-04-03 19:48:48 -0400767 self.client_bi_dir_nsock_timeout = 20
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200768 self.client_bi_dir_nsock_test_args = [
769 "-N",
770 "1000",
771 "-B",
772 "-X",
773 # OUCH! Host Stack Bug?
774 # Only fails when running
775 # 'make test TEST_JOBS=auto'
776 # or TEST_JOBS > 1
777 # "-I", "2",
778 self.loop0.local_ip4,
779 self.server_port,
780 ]
Dave Wallaced85075e2018-03-02 13:19:30 -0500781
782 def tearDown(self):
783 self.thru_host_stack_tear_down()
Florin Corasdc2e2512018-12-03 17:47:26 -0800784 super(LDPThruHostStackBidirNsock, self).tearDown()
Dave Wallaced85075e2018-03-02 13:19:30 -0500785
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700786 def show_commands_at_teardown(self):
787 self.logger.debug(self.vapi.cli("show session verbose 2"))
Florin Coras41d5f542021-01-15 13:49:33 -0800788 self.logger.debug(self.vapi.cli("show app mq"))
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700789
Dave Wallaced85075e2018-03-02 13:19:30 -0500790 def test_ldp_thru_host_stack_bi_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200791 """run LDP thru host stack bi-directional (multiple sockets) test"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500792
793 self.timeout = self.client_bi_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200794 self.thru_host_stack_test(
795 "sock_test_server",
796 self.server_args,
797 "sock_test_client",
798 self.client_bi_dir_nsock_test_args,
799 )
Dave Wallaced85075e2018-03-02 13:19:30 -0500800
801
Florin Corasdc2e2512018-12-03 17:47:26 -0800802class LDPThruHostStackNsock(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200803 """LDP Thru Host Stack Nsock"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500804
Paul Vinciguerra8d991d92019-01-25 14:05:48 -0800805 @classmethod
806 def setUpClass(cls):
807 super(LDPThruHostStackNsock, cls).setUpClass()
808
809 @classmethod
810 def tearDownClass(cls):
811 super(LDPThruHostStackNsock, cls).tearDownClass()
812
Dave Wallaced85075e2018-03-02 13:19:30 -0500813 def setUp(self):
Florin Corasdc2e2512018-12-03 17:47:26 -0800814 super(LDPThruHostStackNsock, self).setUp()
Dave Wallaced85075e2018-03-02 13:19:30 -0500815
816 self.thru_host_stack_setup()
817 if self.vppDebug:
Florin Coras2eb42e72018-11-29 00:39:53 -0800818 self.client_uni_dir_nsock_timeout = 20
Dave Wallaced85075e2018-03-02 13:19:30 -0500819 self.numSockets = "2"
820 else:
Florin Coras2eb42e72018-11-29 00:39:53 -0800821 self.client_uni_dir_nsock_timeout = 20
Dave Wallaced85075e2018-03-02 13:19:30 -0500822 self.numSockets = "5"
823
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200824 self.client_uni_dir_nsock_test_args = [
825 "-N",
826 "1000",
827 "-U",
828 "-X",
829 "-I",
830 self.numSockets,
831 self.loop0.local_ip4,
832 self.server_port,
833 ]
Dave Wallaced85075e2018-03-02 13:19:30 -0500834
835 def tearDown(self):
836 self.thru_host_stack_tear_down()
Florin Corasdc2e2512018-12-03 17:47:26 -0800837 super(LDPThruHostStackNsock, self).tearDown()
Dave Wallaced85075e2018-03-02 13:19:30 -0500838
Dave Wallaced85075e2018-03-02 13:19:30 -0500839 def test_ldp_thru_host_stack_uni_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200840 """run LDP thru host stack uni-directional (multiple sockets) test"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500841
842 self.timeout = self.client_uni_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200843 self.thru_host_stack_test(
844 "sock_test_server",
845 self.server_args,
846 "sock_test_client",
847 self.client_uni_dir_nsock_test_args,
848 )
Dave Wallaced85075e2018-03-02 13:19:30 -0500849
850
Florin Corasdc2e2512018-12-03 17:47:26 -0800851class VCLThruHostStackNsock(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200852 """VCL Thru Host Stack Nsock"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500853
Paul Vinciguerra8d991d92019-01-25 14:05:48 -0800854 @classmethod
855 def setUpClass(cls):
856 super(VCLThruHostStackNsock, cls).setUpClass()
857
858 @classmethod
859 def tearDownClass(cls):
860 super(VCLThruHostStackNsock, cls).tearDownClass()
861
Dave Wallaced85075e2018-03-02 13:19:30 -0500862 def setUp(self):
Florin Corasdc2e2512018-12-03 17:47:26 -0800863 super(VCLThruHostStackNsock, self).setUp()
Dave Wallaced85075e2018-03-02 13:19:30 -0500864
865 self.thru_host_stack_setup()
866 if self.vppDebug:
Florin Coras2eb42e72018-11-29 00:39:53 -0800867 self.client_uni_dir_nsock_timeout = 20
Dave Wallaced85075e2018-03-02 13:19:30 -0500868 self.numSockets = "2"
869 else:
Florin Coras2eb42e72018-11-29 00:39:53 -0800870 self.client_uni_dir_nsock_timeout = 20
Dave Wallaced85075e2018-03-02 13:19:30 -0500871 self.numSockets = "5"
872
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200873 self.client_uni_dir_nsock_test_args = [
874 "-N",
875 "1000",
876 "-U",
877 "-X",
878 "-I",
879 self.numSockets,
880 self.loop0.local_ip4,
881 self.server_port,
882 ]
Dave Wallaced85075e2018-03-02 13:19:30 -0500883
884 def tearDown(self):
885 self.thru_host_stack_tear_down()
Florin Corasdc2e2512018-12-03 17:47:26 -0800886 super(VCLThruHostStackNsock, self).tearDown()
Dave Wallaced85075e2018-03-02 13:19:30 -0500887
Dave Wallaced85075e2018-03-02 13:19:30 -0500888 def test_vcl_thru_host_stack_uni_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200889 """run VCL thru host stack uni-directional (multiple sockets) test"""
Dave Wallaced85075e2018-03-02 13:19:30 -0500890
891 self.timeout = self.client_uni_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200892 self.thru_host_stack_test(
893 "vcl_test_server",
894 self.server_args,
895 "vcl_test_client",
896 self.client_uni_dir_nsock_test_args,
897 )
Dave Wallaced85075e2018-03-02 13:19:30 -0500898
899
Florin Corasdc2e2512018-12-03 17:47:26 -0800900class LDPThruHostStackIperf(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200901 """LDP Thru Host Stack Iperf"""
Dave Wallace816833f2018-03-14 20:01:28 -0400902
Paul Vinciguerra8d991d92019-01-25 14:05:48 -0800903 @classmethod
904 def setUpClass(cls):
905 super(LDPThruHostStackIperf, cls).setUpClass()
906
907 @classmethod
908 def tearDownClass(cls):
909 super(LDPThruHostStackIperf, cls).tearDownClass()
910
Dave Wallace816833f2018-03-14 20:01:28 -0400911 def setUp(self):
Florin Corasdc2e2512018-12-03 17:47:26 -0800912 super(LDPThruHostStackIperf, self).setUp()
Dave Wallace816833f2018-03-14 20:01:28 -0400913
914 self.thru_host_stack_setup()
915 self.client_iperf3_timeout = 20
Florin Coras1d879142021-05-06 00:08:18 -0700916 self.client_iperf3_args = ["-4", "-t 2", "-c", self.loop0.local_ip4]
917 self.server_iperf3_args = ["-4", "-s"]
Dave Wallace816833f2018-03-14 20:01:28 -0400918
919 def tearDown(self):
920 self.thru_host_stack_tear_down()
Florin Corasdc2e2512018-12-03 17:47:26 -0800921 super(LDPThruHostStackIperf, self).tearDown()
Dave Wallace816833f2018-03-14 20:01:28 -0400922
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700923 def show_commands_at_teardown(self):
924 self.logger.debug(self.vapi.cli("show session verbose 2"))
Florin Coras41d5f542021-01-15 13:49:33 -0800925 self.logger.debug(self.vapi.cli("show app mq"))
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700926
Paul Vinciguerra063366e2019-06-30 15:38:55 -0400927 @unittest.skipUnless(_have_iperf3, "'%s' not found, Skipping.")
Dave Wallace816833f2018-03-14 20:01:28 -0400928 def test_ldp_thru_host_stack_iperf3(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200929 """run LDP thru host stack iperf3 test"""
Dave Wallace816833f2018-03-14 20:01:28 -0400930
Dave Wallace816833f2018-03-14 20:01:28 -0400931 self.timeout = self.client_iperf3_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200932 self.thru_host_stack_test(
933 iperf3, self.server_iperf3_args, iperf3, self.client_iperf3_args
934 )
Dave Wallace816833f2018-03-14 20:01:28 -0400935
Liangxing Wang22112772022-05-13 04:24:19 +0000936 @unittest.skipUnless(_have_iperf3, "'%s' not found, Skipping.")
937 def test_ldp_thru_host_stack_iperf3_mss(self):
938 """run LDP thru host stack iperf3 test with mss option"""
939
940 self.timeout = self.client_iperf3_timeout
941 self.client_iperf3_args.append("-M 1000")
942 self.thru_host_stack_test(
943 iperf3, self.server_iperf3_args, iperf3, self.client_iperf3_args
944 )
945
Dave Wallace816833f2018-03-14 20:01:28 -0400946
Florin Coras57a5a2d2020-04-01 23:16:11 +0000947class LDPThruHostStackIperfUdp(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200948 """LDP Thru Host Stack Iperf UDP"""
Florin Coras57a5a2d2020-04-01 23:16:11 +0000949
950 @classmethod
951 def setUpClass(cls):
952 super(LDPThruHostStackIperfUdp, cls).setUpClass()
953
954 @classmethod
955 def tearDownClass(cls):
956 super(LDPThruHostStackIperfUdp, cls).tearDownClass()
957
958 def setUp(self):
959 super(LDPThruHostStackIperfUdp, self).setUp()
960
961 self.thru_host_stack_setup()
962 self.client_iperf3_timeout = 20
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200963 self.client_iperf3_args = [
964 "-4",
965 "-t 2",
966 "-u",
967 "-l 1400",
968 "-c",
969 self.loop0.local_ip4,
970 ]
Florin Coras1d879142021-05-06 00:08:18 -0700971 self.server_iperf3_args = ["-4", "-s"]
Florin Coras57a5a2d2020-04-01 23:16:11 +0000972
973 def tearDown(self):
974 self.thru_host_stack_tear_down()
975 super(LDPThruHostStackIperfUdp, self).tearDown()
976
977 def show_commands_at_teardown(self):
978 self.logger.debug(self.vapi.cli("show session verbose 2"))
Florin Coras41d5f542021-01-15 13:49:33 -0800979 self.logger.debug(self.vapi.cli("show app mq"))
Florin Coras57a5a2d2020-04-01 23:16:11 +0000980
981 @unittest.skipUnless(_have_iperf3, "'%s' not found, Skipping.")
982 def test_ldp_thru_host_stack_iperf3_udp(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200983 """run LDP thru host stack iperf3 UDP test"""
Florin Coras57a5a2d2020-04-01 23:16:11 +0000984
985 self.timeout = self.client_iperf3_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200986 self.thru_host_stack_test(
987 iperf3, self.server_iperf3_args, iperf3, self.client_iperf3_args
988 )
Florin Coras57a5a2d2020-04-01 23:16:11 +0000989
990
Florin Coras0ae445e2018-11-29 18:22:10 -0800991class LDPIpv6CutThruTestCase(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200992 """LDP IPv6 Cut Thru Tests"""
Dave Wallacede910062018-03-20 09:22:13 -0400993
Paul Vinciguerra8d991d92019-01-25 14:05:48 -0800994 @classmethod
995 def setUpClass(cls):
996 super(LDPIpv6CutThruTestCase, cls).setUpClass()
997
998 @classmethod
999 def tearDownClass(cls):
1000 super(LDPIpv6CutThruTestCase, cls).tearDownClass()
1001
Florin Coras41d5f542021-01-15 13:49:33 -08001002 def show_commands_at_teardown(self):
1003 self.logger.debug(self.vapi.cli("show session verbose 2"))
1004 self.logger.debug(self.vapi.cli("show app mq"))
1005
Dave Wallacede910062018-03-20 09:22:13 -04001006 def setUp(self):
Florin Coras0ae445e2018-11-29 18:22:10 -08001007 super(LDPIpv6CutThruTestCase, self).setUp()
Dave Wallacede910062018-03-20 09:22:13 -04001008
1009 self.cut_thru_setup()
1010 self.client_iperf3_timeout = 20
Florin Coras2eb42e72018-11-29 00:39:53 -08001011 self.client_uni_dir_nsock_timeout = 20
1012 self.client_bi_dir_nsock_timeout = 20
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001013 self.client_ipv6_echo_test_args = [
1014 "-6",
1015 "-E",
1016 self.echo_phrase,
1017 "-X",
1018 self.server_ipv6_addr,
1019 self.server_port,
1020 ]
1021 self.client_ipv6_iperf3_args = ["-6", "-t 2", "-c", self.server_ipv6_addr]
Florin Coras1d879142021-05-06 00:08:18 -07001022 self.server_ipv6_iperf3_args = ["-6", "-s"]
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001023 self.client_ipv6_uni_dir_nsock_test_args = [
1024 "-N",
1025 "1000",
1026 "-U",
1027 "-X",
1028 "-6",
1029 "-I",
1030 "2",
1031 self.server_ipv6_addr,
1032 self.server_port,
1033 ]
1034 self.client_ipv6_bi_dir_nsock_test_args = [
1035 "-N",
1036 "1000",
1037 "-B",
1038 "-X",
1039 "-6",
1040 "-I",
1041 "2",
1042 self.server_ipv6_addr,
1043 self.server_port,
1044 ]
Dave Wallacede910062018-03-20 09:22:13 -04001045
1046 def tearDown(self):
Florin Coras0ae445e2018-11-29 18:22:10 -08001047 super(LDPIpv6CutThruTestCase, self).tearDown()
Paul Vinciguerra9673e3e2019-05-10 20:41:08 -04001048 self.cut_thru_tear_down()
Dave Wallacede910062018-03-20 09:22:13 -04001049
Klement Sekerab23ffd72021-05-31 16:08:53 +02001050 @unittest.skipUnless(config.extended, "part of extended tests")
Dave Wallacede910062018-03-20 09:22:13 -04001051 def test_ldp_ipv6_cut_thru_echo(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001052 """run LDP IPv6 cut thru echo test"""
Dave Wallacede910062018-03-20 09:22:13 -04001053
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001054 self.cut_thru_test(
1055 "sock_test_server",
1056 self.server_ipv6_args,
1057 "sock_test_client",
1058 self.client_ipv6_echo_test_args,
1059 )
Dave Wallacede910062018-03-20 09:22:13 -04001060
Paul Vinciguerra063366e2019-06-30 15:38:55 -04001061 @unittest.skipUnless(_have_iperf3, "'%s' not found, Skipping.")
Dave Wallacede910062018-03-20 09:22:13 -04001062 def test_ldp_ipv6_cut_thru_iperf3(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001063 """run LDP IPv6 cut thru iperf3 test"""
Dave Wallacede910062018-03-20 09:22:13 -04001064
Dave Wallacede910062018-03-20 09:22:13 -04001065 self.timeout = self.client_iperf3_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001066 self.cut_thru_test(
1067 iperf3, self.server_ipv6_iperf3_args, iperf3, self.client_ipv6_iperf3_args
1068 )
Dave Wallacede910062018-03-20 09:22:13 -04001069
Klement Sekerab23ffd72021-05-31 16:08:53 +02001070 @unittest.skipUnless(config.extended, "part of extended tests")
Dave Wallacede910062018-03-20 09:22:13 -04001071 def test_ldp_ipv6_cut_thru_uni_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001072 """run LDP IPv6 cut thru uni-directional (multiple sockets) test"""
Dave Wallacede910062018-03-20 09:22:13 -04001073
1074 self.timeout = self.client_uni_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001075 self.cut_thru_test(
1076 "sock_test_server",
1077 self.server_ipv6_args,
1078 "sock_test_client",
1079 self.client_ipv6_uni_dir_nsock_test_args,
1080 )
Dave Wallacede910062018-03-20 09:22:13 -04001081
Klement Sekerab23ffd72021-05-31 16:08:53 +02001082 @unittest.skipUnless(config.extended, "part of extended tests")
Florin Coras0f46e162019-07-02 19:33:15 -07001083 @unittest.skip("sock test apps need to be improved")
Dave Wallacede910062018-03-20 09:22:13 -04001084 def test_ldp_ipv6_cut_thru_bi_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001085 """run LDP IPv6 cut thru bi-directional (multiple sockets) test"""
Dave Wallacede910062018-03-20 09:22:13 -04001086
1087 self.timeout = self.client_bi_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001088 self.cut_thru_test(
1089 "sock_test_server",
1090 self.server_ipv6_args,
1091 "sock_test_client",
1092 self.client_ipv6_bi_dir_nsock_test_args,
1093 )
Dave Wallacede910062018-03-20 09:22:13 -04001094
Florin Coras0ae445e2018-11-29 18:22:10 -08001095
1096class VCLIpv6CutThruTestCase(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001097 """VCL IPv6 Cut Thru Tests"""
Florin Coras0ae445e2018-11-29 18:22:10 -08001098
Paul Vinciguerra8d991d92019-01-25 14:05:48 -08001099 @classmethod
1100 def setUpClass(cls):
1101 super(VCLIpv6CutThruTestCase, cls).setUpClass()
1102
1103 @classmethod
1104 def tearDownClass(cls):
1105 super(VCLIpv6CutThruTestCase, cls).tearDownClass()
1106
Florin Coras41d5f542021-01-15 13:49:33 -08001107 def show_commands_at_teardown(self):
1108 self.logger.debug(self.vapi.cli("show session verbose 2"))
1109 self.logger.debug(self.vapi.cli("show app mq"))
1110
Florin Coras0ae445e2018-11-29 18:22:10 -08001111 def setUp(self):
1112 super(VCLIpv6CutThruTestCase, self).setUp()
1113
1114 self.cut_thru_setup()
1115 self.client_uni_dir_nsock_timeout = 20
1116 self.client_bi_dir_nsock_timeout = 20
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001117 self.client_ipv6_echo_test_args = [
1118 "-6",
1119 "-E",
1120 self.echo_phrase,
1121 "-X",
1122 self.server_ipv6_addr,
1123 self.server_port,
1124 ]
1125 self.client_ipv6_uni_dir_nsock_test_args = [
1126 "-N",
1127 "1000",
1128 "-U",
1129 "-X",
1130 "-6",
1131 "-I",
1132 "2",
1133 self.server_ipv6_addr,
1134 self.server_port,
1135 ]
1136 self.client_ipv6_bi_dir_nsock_test_args = [
1137 "-N",
1138 "1000",
1139 "-B",
1140 "-X",
1141 "-6",
1142 "-I",
1143 "2",
1144 self.server_ipv6_addr,
1145 self.server_port,
1146 ]
Florin Coras0ae445e2018-11-29 18:22:10 -08001147
1148 def tearDown(self):
Florin Coras0ae445e2018-11-29 18:22:10 -08001149 super(VCLIpv6CutThruTestCase, self).tearDown()
Paul Vinciguerra9673e3e2019-05-10 20:41:08 -04001150 self.cut_thru_tear_down()
Florin Coras0ae445e2018-11-29 18:22:10 -08001151
Florin Coras41d5f542021-01-15 13:49:33 -08001152 def show_commands_at_teardown(self):
1153 self.logger.debug(self.vapi.cli("show session verbose 2"))
1154 self.logger.debug(self.vapi.cli("show app mq"))
1155
Dave Wallacede910062018-03-20 09:22:13 -04001156 def test_vcl_ipv6_cut_thru_echo(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001157 """run VCL IPv6 cut thru echo test"""
Dave Wallacede910062018-03-20 09:22:13 -04001158
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001159 self.cut_thru_test(
1160 "vcl_test_server",
1161 self.server_ipv6_args,
1162 "vcl_test_client",
1163 self.client_ipv6_echo_test_args,
1164 )
Dave Wallacede910062018-03-20 09:22:13 -04001165
Klement Sekerab23ffd72021-05-31 16:08:53 +02001166 @unittest.skipUnless(config.extended, "part of extended tests")
Dave Wallacede910062018-03-20 09:22:13 -04001167 def test_vcl_ipv6_cut_thru_uni_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001168 """run VCL IPv6 cut thru uni-directional (multiple sockets) test"""
Dave Wallacede910062018-03-20 09:22:13 -04001169
1170 self.timeout = self.client_uni_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001171 self.cut_thru_test(
1172 "vcl_test_server",
1173 self.server_ipv6_args,
1174 "vcl_test_client",
1175 self.client_ipv6_uni_dir_nsock_test_args,
1176 )
Dave Wallacede910062018-03-20 09:22:13 -04001177
Klement Sekerab23ffd72021-05-31 16:08:53 +02001178 @unittest.skipUnless(config.extended, "part of extended tests")
Dave Wallacede910062018-03-20 09:22:13 -04001179 def test_vcl_ipv6_cut_thru_bi_dir_nsock(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001180 """run VCL IPv6 cut thru bi-directional (multiple sockets) test"""
Dave Wallacede910062018-03-20 09:22:13 -04001181
1182 self.timeout = self.client_bi_dir_nsock_timeout
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001183 self.cut_thru_test(
1184 "vcl_test_server",
1185 self.server_ipv6_args,
1186 "vcl_test_client",
1187 self.client_ipv6_bi_dir_nsock_test_args,
1188 )
Dave Wallacede910062018-03-20 09:22:13 -04001189
1190
Florin Corasdc2e2512018-12-03 17:47:26 -08001191class VCLIpv6ThruHostStackEcho(VCLTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001192 """VCL IPv6 Thru Host Stack Echo"""
Dave Wallacede910062018-03-20 09:22:13 -04001193
Paul Vinciguerra8d991d92019-01-25 14:05:48 -08001194 @classmethod
1195 def setUpClass(cls):
1196 super(VCLIpv6ThruHostStackEcho, cls).setUpClass()
1197
1198 @classmethod
1199 def tearDownClass(cls):
1200 super(VCLIpv6ThruHostStackEcho, cls).tearDownClass()
1201
Dave Wallacede910062018-03-20 09:22:13 -04001202 def setUp(self):
Florin Corasdc2e2512018-12-03 17:47:26 -08001203 super(VCLIpv6ThruHostStackEcho, self).setUp()
Dave Wallacede910062018-03-20 09:22:13 -04001204
1205 self.thru_host_stack_ipv6_setup()
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001206 self.client_ipv6_echo_test_args = [
1207 "-6",
1208 "-E",
1209 self.echo_phrase,
1210 "-X",
1211 self.loop0.local_ip6,
1212 self.server_port,
1213 ]
Dave Wallacede910062018-03-20 09:22:13 -04001214
1215 def tearDown(self):
1216 self.thru_host_stack_ipv6_tear_down()
Florin Corasdc2e2512018-12-03 17:47:26 -08001217 super(VCLIpv6ThruHostStackEcho, self).tearDown()
Dave Wallacede910062018-03-20 09:22:13 -04001218
1219 def test_vcl_ipv6_thru_host_stack_echo(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001220 """run VCL IPv6 thru host stack echo test"""
Dave Wallacede910062018-03-20 09:22:13 -04001221
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001222 self.thru_host_stack_test(
1223 "vcl_test_server",
1224 self.server_ipv6_args,
1225 "vcl_test_client",
1226 self.client_ipv6_echo_test_args,
1227 )
Dave Wallacede910062018-03-20 09:22:13 -04001228
1229
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02001230if __name__ == "__main__":
Dave Wallacecfcf2f42018-02-16 18:31:56 -05001231 unittest.main(testRunner=VppTestRunner)