diff options
author | Maros Ondrejicka <maros.ondrejicka@pantheon.tech> | 2022-12-19 20:35:27 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2022-12-20 18:49:49 +0000 |
commit | 8753180a80e03dd031fa7f470adbcbb4a611d1c9 (patch) | |
tree | f524d7f4261b5db5861ee7e83822d99ab63f3262 /extras/hs-test/proxy_test.go | |
parent | 8c626b41eaab5c74e7e023205f1c6cd655d40f44 (diff) |
hs-test: add runtime options
Options
"-p" to not remove topology elements after the test finishes
"-v" from now on extra output from tests is hidden by default,
this will show it again
Type: test
Signed-off-by: Maros Ondrejicka <maros.ondrejicka@pantheon.tech>
Change-Id: I626188561c883534e9004d5130ee2a972d12b4e2
Diffstat (limited to 'extras/hs-test/proxy_test.go')
-rwxr-xr-x | extras/hs-test/proxy_test.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/extras/hs-test/proxy_test.go b/extras/hs-test/proxy_test.go index 952bcc5aa76..745f042a4b6 100755 --- a/extras/hs-test/proxy_test.go +++ b/extras/hs-test/proxy_test.go @@ -20,7 +20,7 @@ func testProxyHttpTcp(s *NsSuite, proxySetup func() error) error { s.assertNil(err, "failed to run truncate command") defer func() { os.Remove(srcFile) }() - fmt.Println("Test file created...") + s.log("Test file created...") go startHttpServer(serverRunning, stopServer, ":666", "server") // TODO better error handling and recovery @@ -30,7 +30,7 @@ func testProxyHttpTcp(s *NsSuite, proxySetup func() error) error { stopServer <- struct{}{} }(stopServer) - fmt.Println("http server started...") + s.log("http server started...") c := fmt.Sprintf("ip netns exec client wget --retry-connrefused --retry-on-http-error=503 --tries=10 -O %s 10.0.0.2:555/%s", outputFile, srcFile) _, err = exechelper.CombinedOutput(c) @@ -49,10 +49,10 @@ func configureVppProxy(s *NsSuite) error { testVppProxy.setVppProxy() err := testVppProxy.start() s.assertNil(err, "failed to start and configure VPP") - fmt.Println("VPP running and configured...") + s.log("VPP running and configured...") output, err := testVppProxy.vppctl("test proxy server server-uri tcp://10.0.0.2/555 client-uri tcp://10.0.1.1/666") - fmt.Println("Proxy configured...", string(output)) + s.log("Proxy configured...", string(output)) return nil } @@ -73,7 +73,7 @@ func configureEnvoyProxy(s *NsSuite) error { envoyContainer := s.getContainerByName("envoy") envoyContainer.run() - fmt.Println("VPP running and configured...") + s.log("VPP running and configured...") return nil } |