40cba405c5
This joins separate representations of veth and tap interfaces into a single struct. It removes the need for type interface and embedding which simplifies the code. Type: test Signed-off-by: Maros Ondrejicka <mondreji@cisco.com> Change-Id: I1b2c368bfe90a5bdfaaa9a5129c27d7d96f8fe3b
39 lines
714 B
Go
39 lines
714 B
Go
package main
|
|
|
|
const (
|
|
singleTopoContainerVpp = "vpp"
|
|
singleTopoContainerNginx = "nginx"
|
|
|
|
tapInterfaceName = "hst_tap_host"
|
|
)
|
|
|
|
type NoTopoSuite struct {
|
|
HstSuite
|
|
}
|
|
|
|
func (s *NoTopoSuite) SetupSuite() {
|
|
s.loadNetworkTopology("tap")
|
|
|
|
s.loadContainerTopology("single")
|
|
}
|
|
|
|
func (s *NoTopoSuite) SetupTest() {
|
|
s.SetupVolumes()
|
|
s.SetupContainers()
|
|
|
|
// Setup test conditions
|
|
var startupConfig Stanza
|
|
startupConfig.
|
|
NewStanza("session").
|
|
Append("enable").
|
|
Append("use-app-socket-api").Close()
|
|
|
|
container := s.getContainerByName(singleTopoContainerVpp)
|
|
vpp, _ := container.newVppInstance(startupConfig)
|
|
vpp.start()
|
|
|
|
tapInterface := s.netInterfaces[tapInterfaceName]
|
|
|
|
vpp.createTap(1, tapInterface)
|
|
}
|