blob: 8ef56b24d8be8f8d10937eff044ae266737a1068 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
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)
}
|