Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 1 | package hst |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 2 | |
| 3 | import ( |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 4 | "fmt" |
| 5 | "reflect" |
| 6 | "runtime" |
| 7 | "strings" |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 8 | "time" |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 9 | |
| 10 | . "github.com/onsi/ginkgo/v2" |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 11 | ) |
| 12 | |
adrianvillin | 28bd8f0 | 2024-02-13 06:00:02 -0500 | [diff] [blame] | 13 | // These correspond to names used in yaml config |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 14 | const ( |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 15 | ServerInterfaceName = "srv" |
| 16 | ClientInterfaceName = "cln" |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 17 | ) |
| 18 | |
Adrian Villin | 681ff3a | 2024-06-07 06:45:48 -0400 | [diff] [blame] | 19 | var vethTests = map[string][]func(s *VethsSuite){} |
| 20 | var vethSoloTests = map[string][]func(s *VethsSuite){} |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 21 | |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 22 | type VethsSuite struct { |
| 23 | HstSuite |
| 24 | } |
| 25 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 26 | func RegisterVethTests(tests ...func(s *VethsSuite)) { |
Adrian Villin | 681ff3a | 2024-06-07 06:45:48 -0400 | [diff] [blame] | 27 | vethTests[getTestFilename()] = tests |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 28 | } |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 29 | func RegisterSoloVethTests(tests ...func(s *VethsSuite)) { |
Adrian Villin | 681ff3a | 2024-06-07 06:45:48 -0400 | [diff] [blame] | 30 | vethSoloTests[getTestFilename()] = tests |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 31 | } |
| 32 | |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 33 | func (s *VethsSuite) SetupSuite() { |
| 34 | time.Sleep(1 * time.Second) |
Filip Tehlar | 608d006 | 2023-04-28 10:29:47 +0200 | [diff] [blame] | 35 | s.HstSuite.SetupSuite() |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 36 | s.ConfigureNetworkTopology("2peerVeth") |
| 37 | s.LoadContainerTopology("2peerVeth") |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 38 | } |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 39 | |
| 40 | func (s *VethsSuite) SetupTest() { |
Filip Tehlar | 608d006 | 2023-04-28 10:29:47 +0200 | [diff] [blame] | 41 | s.HstSuite.SetupTest() |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 42 | |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 43 | // Setup test conditions |
Filip Tehlar | 608d006 | 2023-04-28 10:29:47 +0200 | [diff] [blame] | 44 | var sessionConfig Stanza |
| 45 | sessionConfig. |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 46 | NewStanza("session"). |
| 47 | Append("enable"). |
Adrian Villin | 1fde999 | 2024-06-24 08:14:05 -0400 | [diff] [blame] | 48 | Append("use-app-socket-api") |
| 49 | |
| 50 | if strings.Contains(CurrentSpecReport().LeafNodeText, "InterruptMode") { |
| 51 | sessionConfig.Append("use-private-rx-mqs").Close() |
| 52 | s.Log("**********************INTERRUPT MODE**********************") |
| 53 | } else { |
| 54 | sessionConfig.Close() |
| 55 | } |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 56 | |
| 57 | // ... For server |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 58 | serverContainer := s.GetContainerByName("server-vpp") |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 59 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 60 | serverVpp, err := serverContainer.newVppInstance(serverContainer.AllocatedCpus, sessionConfig) |
| 61 | s.AssertNotNil(serverVpp, fmt.Sprint(err)) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 62 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 63 | s.SetupServerVpp() |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 64 | |
| 65 | // ... For client |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 66 | clientContainer := s.GetContainerByName("client-vpp") |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 67 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 68 | clientVpp, err := clientContainer.newVppInstance(clientContainer.AllocatedCpus, sessionConfig) |
| 69 | s.AssertNotNil(clientVpp, fmt.Sprint(err)) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 70 | |
| 71 | s.setupClientVpp() |
| 72 | } |
| 73 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 74 | func (s *VethsSuite) SetupServerVpp() { |
| 75 | serverVpp := s.GetContainerByName("server-vpp").VppInstance |
| 76 | s.AssertNil(serverVpp.Start()) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 77 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 78 | serverVeth := s.GetInterfaceByName(ServerInterfaceName) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 79 | idx, err := serverVpp.createAfPacket(serverVeth) |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 80 | s.AssertNil(err, fmt.Sprint(err)) |
| 81 | s.AssertNotEqual(0, idx) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | func (s *VethsSuite) setupClientVpp() { |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 85 | clientVpp := s.GetContainerByName("client-vpp").VppInstance |
| 86 | s.AssertNil(clientVpp.Start()) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 87 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 88 | clientVeth := s.GetInterfaceByName(ClientInterfaceName) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 89 | idx, err := clientVpp.createAfPacket(clientVeth) |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 90 | s.AssertNil(err, fmt.Sprint(err)) |
| 91 | s.AssertNotEqual(0, idx) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 92 | } |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 93 | |
| 94 | var _ = Describe("VethsSuite", Ordered, ContinueOnFailure, func() { |
| 95 | var s VethsSuite |
| 96 | BeforeAll(func() { |
| 97 | s.SetupSuite() |
| 98 | }) |
| 99 | BeforeEach(func() { |
| 100 | s.SetupTest() |
| 101 | }) |
| 102 | AfterAll(func() { |
| 103 | s.TearDownSuite() |
| 104 | |
| 105 | }) |
| 106 | AfterEach(func() { |
| 107 | s.TearDownTest() |
| 108 | }) |
| 109 | |
| 110 | // https://onsi.github.io/ginkgo/#dynamically-generating-specs |
Adrian Villin | 681ff3a | 2024-06-07 06:45:48 -0400 | [diff] [blame] | 111 | for filename, tests := range vethTests { |
| 112 | for _, test := range tests { |
| 113 | test := test |
| 114 | pc := reflect.ValueOf(test).Pointer() |
| 115 | funcValue := runtime.FuncForPC(pc) |
| 116 | testName := filename + "/" + strings.Split(funcValue.Name(), ".")[2] |
| 117 | It(testName, func(ctx SpecContext) { |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 118 | s.Log(testName + ": BEGIN") |
Adrian Villin | 681ff3a | 2024-06-07 06:45:48 -0400 | [diff] [blame] | 119 | test(&s) |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 120 | }, SpecTimeout(SuiteTimeout)) |
Adrian Villin | 681ff3a | 2024-06-07 06:45:48 -0400 | [diff] [blame] | 121 | } |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 122 | } |
| 123 | }) |
| 124 | |
| 125 | var _ = Describe("VethsSuiteSolo", Ordered, ContinueOnFailure, Serial, func() { |
| 126 | var s VethsSuite |
| 127 | BeforeAll(func() { |
| 128 | s.SetupSuite() |
| 129 | }) |
| 130 | BeforeEach(func() { |
| 131 | s.SetupTest() |
| 132 | }) |
| 133 | AfterAll(func() { |
| 134 | s.TearDownSuite() |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 135 | }) |
| 136 | AfterEach(func() { |
| 137 | s.TearDownTest() |
| 138 | }) |
| 139 | |
| 140 | // https://onsi.github.io/ginkgo/#dynamically-generating-specs |
Adrian Villin | 681ff3a | 2024-06-07 06:45:48 -0400 | [diff] [blame] | 141 | for filename, tests := range vethSoloTests { |
| 142 | for _, test := range tests { |
| 143 | test := test |
| 144 | pc := reflect.ValueOf(test).Pointer() |
| 145 | funcValue := runtime.FuncForPC(pc) |
| 146 | testName := filename + "/" + strings.Split(funcValue.Name(), ".")[2] |
| 147 | It(testName, Label("SOLO"), func(ctx SpecContext) { |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 148 | s.Log(testName + ": BEGIN") |
Adrian Villin | 681ff3a | 2024-06-07 06:45:48 -0400 | [diff] [blame] | 149 | test(&s) |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 150 | }, SpecTimeout(SuiteTimeout)) |
Adrian Villin | 681ff3a | 2024-06-07 06:45:48 -0400 | [diff] [blame] | 151 | } |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 152 | } |
| 153 | }) |