misc: add test framework for host stack

Type: feature

Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Change-Id: I5a64a2c095cae3a4d5f8fdc73e624b010339ec8e
This commit is contained in:
Filip Tehlar
2022-08-09 14:44:47 +00:00
committed by Florin Coras
parent 6cacc94de3
commit 229f5fcf18
27 changed files with 1974 additions and 0 deletions

View File

@ -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")
}