vpp/extras/hs-test/suite_ns_test.go
Maros Ondrejicka af004ddad1 hs-test: add option to unconfigure topology
Adding `UNCONFIGURE=true` argument when running `make test` will skip
test run and unconfigure existing topology for that test.

Type: test
Signed-off-by: Maros Ondrejicka <mondreji@cisco.com>
Change-Id: I197747a56ca68807f0b2c3f25b6f61c3dcc41ace
2023-02-28 16:36:41 +00:00

47 lines
1000 B
Go

package main
const (
// These correspond to names used in yaml config
clientInterface = "hst_client_vpp"
serverInterface = "hst_server_vpp"
)
type NsSuite struct {
HstSuite
}
func (s *NsSuite) SetupSuite() {
s.configureNetworkTopology("ns")
s.loadContainerTopology("ns")
}
func (s *NsSuite) SetupTest() {
s.skipIfUnconfiguring()
s.SetupVolumes()
s.SetupContainers()
// Setup test conditions
var startupConfig Stanza
startupConfig.
NewStanza("session").
Append("enable").
Append("use-app-socket-api").
Append("evt_qs_memfd_seg").
Append("event-queue-length 100000").Close()
container := s.getContainerByName("vpp")
vpp, _ := container.newVppInstance(startupConfig)
vpp.start()
idx, err := vpp.createAfPacket(s.netInterfaces[serverInterface])
s.assertNil(err)
s.assertNotEqual(0, idx)
idx, err = vpp.createAfPacket(s.netInterfaces[clientInterface])
s.assertNil(err)
s.assertNotEqual(0, idx)
container.exec("chmod 777 -R %s", container.GetContainerWorkDir())
}