blob: af0cf9a197aa49b91c45a668d4ebb764a993ce68 [file] [log] [blame]
Filip Tehlarc204c872022-12-21 08:59:16 +01001package main
2
Adrian Villincee15aa2024-03-14 11:42:55 -04003import (
4 "reflect"
5 "runtime"
6 "strings"
Adrian Villincee15aa2024-03-14 11:42:55 -04007
8 . "github.com/onsi/ginkgo/v2"
Maros Ondrejicka7550dd22023-02-07 20:40:27 +01009)
10
Adrian Villincee15aa2024-03-14 11:42:55 -040011const (
12 singleTopoContainerVpp = "vpp"
13 singleTopoContainerNginx = "nginx"
14 tapInterfaceName = "htaphost"
15)
16
Adrian Villin681ff3a2024-06-07 06:45:48 -040017var noTopoTests = map[string][]func(s *NoTopoSuite){}
18var noTopoSoloTests = map[string][]func(s *NoTopoSuite){}
Adrian Villincee15aa2024-03-14 11:42:55 -040019
Filip Tehlarc204c872022-12-21 08:59:16 +010020type NoTopoSuite struct {
21 HstSuite
22}
23
Adrian Villincee15aa2024-03-14 11:42:55 -040024func registerNoTopoTests(tests ...func(s *NoTopoSuite)) {
Adrian Villin681ff3a2024-06-07 06:45:48 -040025 noTopoTests[getTestFilename()] = tests
Adrian Villincee15aa2024-03-14 11:42:55 -040026}
27func registerNoTopoSoloTests(tests ...func(s *NoTopoSuite)) {
Adrian Villin681ff3a2024-06-07 06:45:48 -040028 noTopoSoloTests[getTestFilename()] = tests
Adrian Villincee15aa2024-03-14 11:42:55 -040029}
30
Filip Tehlarc204c872022-12-21 08:59:16 +010031func (s *NoTopoSuite) SetupSuite() {
Filip Tehlar608d0062023-04-28 10:29:47 +020032 s.HstSuite.SetupSuite()
Maros Ondrejicka40cba402023-02-23 13:19:15 +010033 s.loadNetworkTopology("tap")
Filip Tehlarc204c872022-12-21 08:59:16 +010034 s.loadContainerTopology("single")
Maros Ondrejicka7550dd22023-02-07 20:40:27 +010035}
36
37func (s *NoTopoSuite) SetupTest() {
Filip Tehlar608d0062023-04-28 10:29:47 +020038 s.HstSuite.SetupTest()
Maros Ondrejicka7550dd22023-02-07 20:40:27 +010039
40 // Setup test conditions
Filip Tehlar608d0062023-04-28 10:29:47 +020041 var sessionConfig Stanza
42 sessionConfig.
Maros Ondrejickae7625d02023-02-28 16:55:01 +010043 newStanza("session").
44 append("enable").
45 append("use-app-socket-api").close()
Maros Ondrejicka7550dd22023-02-07 20:40:27 +010046
47 container := s.getContainerByName(singleTopoContainerVpp)
Adrian Villinb9464cd2024-05-27 09:52:59 -040048 vpp, _ := container.newVppInstance(container.allocatedCpus, sessionConfig)
Filip Tehlar56e17cf2024-01-11 17:17:33 +010049 s.assertNil(vpp.start())
Maros Ondrejicka7550dd22023-02-07 20:40:27 +010050
adrianvillin28bd8f02024-02-13 06:00:02 -050051 tapInterface := s.getInterfaceByName(tapInterfaceName)
Maros Ondrejicka7550dd22023-02-07 20:40:27 +010052
Filip Tehlar56e17cf2024-01-11 17:17:33 +010053 s.assertNil(vpp.createTap(tapInterface), "failed to create tap interface")
Filip Tehlarc204c872022-12-21 08:59:16 +010054}
Adrian Villincee15aa2024-03-14 11:42:55 -040055
56var _ = Describe("NoTopoSuite", Ordered, ContinueOnFailure, func() {
57 var s NoTopoSuite
58 BeforeAll(func() {
59 s.SetupSuite()
60 })
61 BeforeEach(func() {
62 s.SetupTest()
63 })
64 AfterAll(func() {
65 s.TearDownSuite()
66 })
67 AfterEach(func() {
68 s.TearDownTest()
69 })
70
Adrian Villin681ff3a2024-06-07 06:45:48 -040071 for filename, tests := range noTopoTests {
72 for _, test := range tests {
73 test := test
74 pc := reflect.ValueOf(test).Pointer()
75 funcValue := runtime.FuncForPC(pc)
76 testName := filename + "/" + strings.Split(funcValue.Name(), ".")[2]
77 It(testName, func(ctx SpecContext) {
78 s.log(testName + ": BEGIN")
79 test(&s)
80 }, SpecTimeout(suiteTimeout))
81 }
Adrian Villincee15aa2024-03-14 11:42:55 -040082 }
83})
84
85var _ = Describe("NoTopoSuiteSolo", Ordered, ContinueOnFailure, Serial, func() {
86 var s NoTopoSuite
87 BeforeAll(func() {
88 s.SetupSuite()
89 })
90 BeforeEach(func() {
91 s.SetupTest()
92 })
93 AfterAll(func() {
94 s.TearDownSuite()
95 })
96 AfterEach(func() {
97 s.TearDownTest()
98 })
99
Adrian Villin681ff3a2024-06-07 06:45:48 -0400100 for filename, tests := range noTopoSoloTests {
101 for _, test := range tests {
102 test := test
103 pc := reflect.ValueOf(test).Pointer()
104 funcValue := runtime.FuncForPC(pc)
105 testName := filename + "/" + strings.Split(funcValue.Name(), ".")[2]
106 It(testName, Label("SOLO"), func(ctx SpecContext) {
107 s.log(testName + ": BEGIN")
108 test(&s)
109 }, SpecTimeout(suiteTimeout))
110 }
Adrian Villincee15aa2024-03-14 11:42:55 -0400111 }
112})