summaryrefslogtreecommitdiffstats
path: root/extras/hs-test/linux_iperf_test.go
diff options
context:
space:
mode:
authorFilip Tehlar <ftehlar@cisco.com>2022-08-09 14:44:47 +0000
committerFlorin Coras <florin.coras@gmail.com>2022-09-19 21:00:18 +0000
commit229f5fcf188cf710f4a8fb269d92f1a1d04a99da (patch)
treebc2c85a49bac6aea4e5ef3304c356acb75ad9493 /extras/hs-test/linux_iperf_test.go
parent6cacc94de3984d9f0cf6d562a27d89a4ab0a89f9 (diff)
misc: add test framework for host stack
Type: feature Signed-off-by: Filip Tehlar <ftehlar@cisco.com> Change-Id: I5a64a2c095cae3a4d5f8fdc73e624b010339ec8e
Diffstat (limited to 'extras/hs-test/linux_iperf_test.go')
-rwxr-xr-xextras/hs-test/linux_iperf_test.go26
1 files changed, 26 insertions, 0 deletions
diff --git a/extras/hs-test/linux_iperf_test.go b/extras/hs-test/linux_iperf_test.go
new file mode 100755
index 00000000000..92a85cf6bbe
--- /dev/null
+++ b/extras/hs-test/linux_iperf_test.go
@@ -0,0 +1,26 @@
+package main
+
+func (s *TapSuite) TestLinuxIperf() {
+ t := s.T()
+ clnCh := make(chan error)
+ stopServerCh := make(chan struct{})
+ srvCh := make(chan error, 1)
+ defer func() {
+ stopServerCh <- struct{}{}
+ }()
+
+ go StartServerApp(srvCh, stopServerCh, nil)
+ err := <-srvCh
+ if err != nil {
+ t.Errorf("%v", err)
+ t.FailNow()
+ }
+ t.Log("server running")
+ go StartClientApp(nil, clnCh)
+ t.Log("client running")
+ err = <-clnCh
+ if err != nil {
+ s.Failf("client", "%v", err)
+ }
+ t.Log("Test completed")
+}