2022-12-14 16:30:04 +01:00
|
|
|
package main
|
|
|
|
|
2023-02-02 08:58:04 +01:00
|
|
|
const (
|
|
|
|
// These correspond to names used in yaml config
|
|
|
|
clientInterface = "hst_client_vpp"
|
|
|
|
serverInterface = "hst_server_vpp"
|
|
|
|
)
|
|
|
|
|
2022-12-14 16:30:04 +01:00
|
|
|
type NsSuite struct {
|
|
|
|
HstSuite
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *NsSuite) SetupSuite() {
|
2023-02-02 08:58:04 +01:00
|
|
|
s.configureNetworkTopology("ns")
|
|
|
|
|
2022-12-14 16:30:04 +01:00
|
|
|
s.loadContainerTopology("ns")
|
|
|
|
}
|
2023-02-02 08:58:04 +01:00
|
|
|
|
|
|
|
func (s *NsSuite) SetupTest() {
|
2023-02-27 16:52:57 +01:00
|
|
|
s.skipIfUnconfiguring()
|
2023-02-02 08:58:04 +01:00
|
|
|
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())
|
|
|
|
}
|