diff options
Diffstat (limited to 'test/asf/test_vcl.py')
-rw-r--r-- | test/asf/test_vcl.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/asf/test_vcl.py b/test/asf/test_vcl.py index eaca105d6a3..cfa97775a3d 100644 --- a/test/asf/test_vcl.py +++ b/test/asf/test_vcl.py @@ -594,6 +594,28 @@ class VCLThruHostStackTLS(VCLTestCase): self.logger.debug(self.vapi.cli("show app mq")) +class VCLThruHostStackEchoInterruptMode(VCLThruHostStackEcho): + """VCL Thru Host Stack Echo interrupt mode""" + + @classmethod + def setUpClass(cls): + cls.session_startup = ["use-private-rx-mqs", "use-app-socket-api"] + super(VCLThruHostStackEcho, cls).setUpClass() + + def test_vcl_thru_host_stack_echo(self): + """run VCL IPv4 thru host stack echo test interrupt mode""" + + self.sapi_server_sock = "1" + self.sapi_client_sock = "2" + + self.thru_host_stack_test( + "vcl_test_server", + self.server_args, + "vcl_test_client", + self.client_echo_test_args, + ) + + class VCLThruHostStackTLSInterruptMode(VCLThruHostStackTLS): """VCL Thru Host Stack TLS interrupt mode""" |