e7625d0856
Exported indentifiers in Go start with capital letters. Only few fields in hs-test, which are being unmarshaled from yaml are required to be exported. Every other field name or method name should start with lower-case letter, to be consistent with this naming convention. Type: test Signed-off-by: Maros Ondrejicka <mondreji@cisco.com> Change-Id: I7eab0eef9fd08a7890c77b6ce1aeb3fa4b80f3cd
40 lines
736 B
Go
40 lines
736 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.skipIfUnconfiguring()
|
|
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(tapInterface)
|
|
}
|