diff options
author | adrianvillin <avillin@cisco.com> | 2024-02-13 06:00:02 -0500 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2024-03-12 16:48:46 +0000 |
commit | 28bd8f07d33bdd70c2cac03b70911a9069e4bd50 (patch) | |
tree | 102bab11aa225339995a4dd07ea8332d1fce2212 /extras/hs-test/vcl_test.go | |
parent | 7a2961523ef6d58d718a9efb7809a212bb0b58b1 (diff) |
hs-test: experimental support for multiple test instances
- appending PID to interface and container names
- added a check for used IP addresses
- TestEnvoyProxyHttpTcp and TestTcpWithLoss are broken when running multiple instances
Type: test
Change-Id: Ib917079ec7cf851dee59ff9c67e74f48c7c5e3c6
Signed-off-by: adrianvillin <avillin@cisco.com>
Diffstat (limited to 'extras/hs-test/vcl_test.go')
-rw-r--r-- | extras/hs-test/vcl_test.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extras/hs-test/vcl_test.go b/extras/hs-test/vcl_test.go index 281b91617b9..cb6aaa4adc0 100644 --- a/extras/hs-test/vcl_test.go +++ b/extras/hs-test/vcl_test.go @@ -35,7 +35,7 @@ func (s *VethsSuite) testXEchoVclClient(proto string) { port := "12345" serverVpp := s.getContainerByName("server-vpp").vppInstance - serverVeth := s.netInterfaces[serverInterfaceName] + serverVeth := s.getInterfaceByName(serverInterfaceName) serverVpp.vppctl("test echo server uri %s://%s/%s fifo-size 64k", proto, serverVeth.ip4AddressString(), port) echoClnContainer := s.getTransientContainerByName("client-app") @@ -67,7 +67,7 @@ func (s *VethsSuite) testXEchoVclServer(proto string) { vclSrvCmd := fmt.Sprintf("vcl_test_server -p %s %s", proto, port) srvAppCont.execServer(vclSrvCmd) - serverVeth := s.netInterfaces[serverInterfaceName] + serverVeth := s.getInterfaceByName(serverInterfaceName) serverVethAddress := serverVeth.ip4AddressString() clientVpp := s.getContainerByName("client-vpp").vppInstance @@ -85,7 +85,7 @@ func (s *VethsSuite) testVclEcho(proto string) { srvAppCont.addEnvVar("VCL_CONFIG", "/vcl.conf") srvAppCont.execServer("vcl_test_server " + port) - serverVeth := s.netInterfaces[serverInterfaceName] + serverVeth := s.getInterfaceByName(serverInterfaceName) serverVethAddress := serverVeth.ip4AddressString() echoClnContainer := s.getTransientContainerByName("client-app") @@ -123,7 +123,7 @@ func (s *VethsSuite) testRetryAttach(proto string) { s.log("This whole test case can take around 3 minutes to run. Please be patient.") s.log("... Running first echo client test, before disconnect.") - serverVeth := s.netInterfaces[serverInterfaceName] + serverVeth := s.getInterfaceByName(serverInterfaceName) serverVethAddress := serverVeth.ip4AddressString() echoClnContainer := s.getTransientContainerByName("client-app") |