
- replaced s.GetContainerByName("xyz") with s.Containers.Xyz in tests and suites - same thing for interfaces - each suite has its own structs with containers/interfaces - structs are initialized in SetupSuite Type: test Change-Id: I5bd99605b40921b7b8c844e8650f6fb0915e9e99 Signed-off-by: Adrian Villin <avillin@cisco.com>
204 lines
4.5 KiB
Go
204 lines
4.5 KiB
Go
package hst
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"reflect"
|
|
"runtime"
|
|
"strings"
|
|
"time"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
)
|
|
|
|
type VppUdpProxySuite struct {
|
|
HstSuite
|
|
proxyPort int
|
|
serverPort int
|
|
Interfaces struct {
|
|
Client *NetInterface
|
|
Server *NetInterface
|
|
}
|
|
Containers struct {
|
|
VppProxy *Container
|
|
}
|
|
}
|
|
|
|
var vppUdpProxyTests = map[string][]func(s *VppUdpProxySuite){}
|
|
var vppUdpProxySoloTests = map[string][]func(s *VppUdpProxySuite){}
|
|
|
|
func RegisterVppUdpProxyTests(tests ...func(s *VppUdpProxySuite)) {
|
|
vppUdpProxyTests[getTestFilename()] = tests
|
|
}
|
|
|
|
func RegisterVppUdpProxySoloTests(tests ...func(s *VppUdpProxySuite)) {
|
|
vppUdpProxySoloTests[getTestFilename()] = tests
|
|
}
|
|
|
|
func (s *VppUdpProxySuite) SetupSuite() {
|
|
s.HstSuite.SetupSuite()
|
|
s.LoadNetworkTopology("2taps")
|
|
s.LoadContainerTopology("single")
|
|
s.Interfaces.Client = s.GetInterfaceByName("hstcln")
|
|
s.Interfaces.Server = s.GetInterfaceByName("hstsrv")
|
|
s.Containers.VppProxy = s.GetContainerByName("vpp")
|
|
}
|
|
|
|
func (s *VppUdpProxySuite) SetupTest() {
|
|
s.HstSuite.SetupTest()
|
|
|
|
// VPP proxy
|
|
vpp, err := s.Containers.VppProxy.newVppInstance(s.Containers.VppProxy.AllocatedCpus)
|
|
s.AssertNotNil(vpp, fmt.Sprint(err))
|
|
|
|
s.AssertNil(vpp.Start())
|
|
s.AssertNil(vpp.CreateTap(s.Interfaces.Client, 1, 1))
|
|
s.AssertNil(vpp.CreateTap(s.Interfaces.Server, 1, 2))
|
|
|
|
s.proxyPort = 8080
|
|
s.serverPort = 80
|
|
|
|
arp := fmt.Sprintf("set ip neighbor %s %s %s",
|
|
s.Interfaces.Server.Peer.Name(),
|
|
s.Interfaces.Server.Ip4AddressString(),
|
|
s.Interfaces.Server.HwAddress)
|
|
vpp.Vppctl(arp)
|
|
|
|
if *DryRun {
|
|
s.LogStartedContainers()
|
|
s.Skip("Dry run mode = true")
|
|
}
|
|
}
|
|
|
|
func (s *VppUdpProxySuite) TearDownTest() {
|
|
vpp := s.Containers.VppProxy.VppInstance
|
|
if CurrentSpecReport().Failed() {
|
|
s.Log(vpp.Vppctl("show session verbose 2"))
|
|
s.Log(vpp.Vppctl("show error"))
|
|
}
|
|
s.HstSuite.TearDownTest()
|
|
}
|
|
|
|
func (s *VppUdpProxySuite) VppProxyAddr() string {
|
|
return s.Interfaces.Client.Peer.Ip4AddressString()
|
|
}
|
|
|
|
func (s *VppUdpProxySuite) ProxyPort() int {
|
|
return s.proxyPort
|
|
}
|
|
|
|
func (s *VppUdpProxySuite) ServerAddr() string {
|
|
return s.Interfaces.Server.Ip4AddressString()
|
|
}
|
|
|
|
func (s *VppUdpProxySuite) ServerPort() int {
|
|
return s.serverPort
|
|
}
|
|
|
|
func (s *VppUdpProxySuite) ClientAddr() string {
|
|
return s.Interfaces.Client.Ip4AddressString()
|
|
}
|
|
|
|
func (s *VppUdpProxySuite) StartEchoServer() *net.UDPConn {
|
|
conn, err := net.ListenUDP("udp", &net.UDPAddr{IP: net.ParseIP(s.ServerAddr()), Port: s.ServerPort()})
|
|
s.AssertNil(err, fmt.Sprint(err))
|
|
go func() {
|
|
for {
|
|
b := make([]byte, 1500)
|
|
n, addr, err := conn.ReadFrom(b)
|
|
if err != nil {
|
|
return
|
|
}
|
|
if _, err := conn.WriteTo(b[:n], addr); err != nil {
|
|
return
|
|
}
|
|
}
|
|
}()
|
|
s.Log("started")
|
|
return conn
|
|
}
|
|
|
|
func (s *VppUdpProxySuite) ClientSendReceive(toSend []byte, rcvBuffer []byte) (int, error) {
|
|
proxiedConn, err := net.DialUDP("udp",
|
|
&net.UDPAddr{IP: net.ParseIP(s.ClientAddr()), Port: 0},
|
|
&net.UDPAddr{IP: net.ParseIP(s.VppProxyAddr()), Port: s.ProxyPort()})
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
defer proxiedConn.Close()
|
|
|
|
err = proxiedConn.SetReadDeadline(time.Now().Add(time.Second * 5))
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
_, err = proxiedConn.Write(toSend)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
n, _, err := proxiedConn.ReadFrom(rcvBuffer)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return n, nil
|
|
}
|
|
|
|
var _ = Describe("VppUdpProxySuite", Ordered, ContinueOnFailure, func() {
|
|
var s VppUdpProxySuite
|
|
BeforeAll(func() {
|
|
s.SetupSuite()
|
|
})
|
|
BeforeEach(func() {
|
|
s.SetupTest()
|
|
})
|
|
AfterAll(func() {
|
|
s.TearDownSuite()
|
|
})
|
|
AfterEach(func() {
|
|
s.TearDownTest()
|
|
})
|
|
|
|
for filename, tests := range vppUdpProxyTests {
|
|
for _, test := range tests {
|
|
test := test
|
|
pc := reflect.ValueOf(test).Pointer()
|
|
funcValue := runtime.FuncForPC(pc)
|
|
testName := filename + "/" + strings.Split(funcValue.Name(), ".")[2]
|
|
It(testName, func(ctx SpecContext) {
|
|
s.Log(testName + ": BEGIN")
|
|
test(&s)
|
|
}, SpecTimeout(TestTimeout))
|
|
}
|
|
}
|
|
})
|
|
|
|
var _ = Describe("VppUdpProxySuiteSolo", Ordered, ContinueOnFailure, func() {
|
|
var s VppUdpProxySuite
|
|
BeforeAll(func() {
|
|
s.SetupSuite()
|
|
})
|
|
BeforeEach(func() {
|
|
s.SetupTest()
|
|
})
|
|
AfterAll(func() {
|
|
s.TearDownSuite()
|
|
})
|
|
AfterEach(func() {
|
|
s.TearDownTest()
|
|
})
|
|
|
|
for filename, tests := range vppUdpProxySoloTests {
|
|
for _, test := range tests {
|
|
test := test
|
|
pc := reflect.ValueOf(test).Pointer()
|
|
funcValue := runtime.FuncForPC(pc)
|
|
testName := filename + "/" + strings.Split(funcValue.Name(), ".")[2]
|
|
It(testName, Label("SOLO"), func(ctx SpecContext) {
|
|
s.Log(testName + ": BEGIN")
|
|
test(&s)
|
|
}, SpecTimeout(TestTimeout))
|
|
}
|
|
}
|
|
})
|