Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 1 | package main |
| 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 ( |
adrianvillin | fbf5f2b | 2024-02-13 03:26:25 -0500 | [diff] [blame] | 15 | serverInterfaceName = "srv" |
| 16 | clientInterfaceName = "cln" |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 17 | ) |
| 18 | |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 19 | var vethTests = []func(s *VethsSuite){} |
| 20 | var vethSoloTests = []func(s *VethsSuite){} |
| 21 | |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 22 | type VethsSuite struct { |
| 23 | HstSuite |
| 24 | } |
| 25 | |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 26 | func registerVethTests(tests ...func(s *VethsSuite)) { |
| 27 | vethTests = append(vethTests, tests...) |
| 28 | } |
| 29 | func registerSoloVethTests(tests ...func(s *VethsSuite)) { |
| 30 | vethSoloTests = append(vethSoloTests, tests...) |
| 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() |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 36 | s.configureNetworkTopology("2peerVeth") |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 37 | s.loadContainerTopology("2peerVeth") |
| 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. |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 46 | newStanza("session"). |
| 47 | append("enable"). |
| 48 | append("use-app-socket-api").close() |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 49 | |
| 50 | // ... For server |
| 51 | serverContainer := s.getContainerByName("server-vpp") |
| 52 | |
Adrian Villin | b9464cd | 2024-05-27 09:52:59 -0400 | [diff] [blame] | 53 | serverVpp, err := serverContainer.newVppInstance(serverContainer.allocatedCpus, sessionConfig) |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 54 | s.assertNotNil(serverVpp, fmt.Sprint(err)) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 55 | |
| 56 | s.setupServerVpp() |
| 57 | |
| 58 | // ... For client |
| 59 | clientContainer := s.getContainerByName("client-vpp") |
| 60 | |
Adrian Villin | b9464cd | 2024-05-27 09:52:59 -0400 | [diff] [blame] | 61 | clientVpp, err := clientContainer.newVppInstance(clientContainer.allocatedCpus, sessionConfig) |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 62 | s.assertNotNil(clientVpp, fmt.Sprint(err)) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 63 | |
| 64 | s.setupClientVpp() |
| 65 | } |
| 66 | |
| 67 | func (s *VethsSuite) setupServerVpp() { |
| 68 | serverVpp := s.getContainerByName("server-vpp").vppInstance |
Filip Tehlar | 56e17cf | 2024-01-11 17:17:33 +0100 | [diff] [blame] | 69 | s.assertNil(serverVpp.start()) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 70 | |
adrianvillin | 28bd8f0 | 2024-02-13 06:00:02 -0500 | [diff] [blame] | 71 | serverVeth := s.getInterfaceByName(serverInterfaceName) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 72 | idx, err := serverVpp.createAfPacket(serverVeth) |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 73 | s.assertNil(err, fmt.Sprint(err)) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 74 | s.assertNotEqual(0, idx) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | func (s *VethsSuite) setupClientVpp() { |
| 78 | clientVpp := s.getContainerByName("client-vpp").vppInstance |
Filip Tehlar | 56e17cf | 2024-01-11 17:17:33 +0100 | [diff] [blame] | 79 | s.assertNil(clientVpp.start()) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 80 | |
adrianvillin | 28bd8f0 | 2024-02-13 06:00:02 -0500 | [diff] [blame] | 81 | clientVeth := s.getInterfaceByName(clientInterfaceName) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 82 | idx, err := clientVpp.createAfPacket(clientVeth) |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 83 | s.assertNil(err, fmt.Sprint(err)) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 84 | s.assertNotEqual(0, idx) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 85 | } |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 86 | |
| 87 | var _ = Describe("VethsSuite", Ordered, ContinueOnFailure, func() { |
| 88 | var s VethsSuite |
| 89 | BeforeAll(func() { |
| 90 | s.SetupSuite() |
| 91 | }) |
| 92 | BeforeEach(func() { |
| 93 | s.SetupTest() |
| 94 | }) |
| 95 | AfterAll(func() { |
| 96 | s.TearDownSuite() |
| 97 | |
| 98 | }) |
| 99 | AfterEach(func() { |
| 100 | s.TearDownTest() |
| 101 | }) |
| 102 | |
| 103 | // https://onsi.github.io/ginkgo/#dynamically-generating-specs |
| 104 | for _, test := range vethTests { |
| 105 | test := test |
| 106 | pc := reflect.ValueOf(test).Pointer() |
| 107 | funcValue := runtime.FuncForPC(pc) |
Adrian Villin | 637edda | 2024-05-06 06:55:34 -0400 | [diff] [blame] | 108 | testName := strings.Split(funcValue.Name(), ".")[2] |
| 109 | It(testName, func(ctx SpecContext) { |
| 110 | s.log(testName + ": BEGIN") |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 111 | test(&s) |
Adrian Villin | 93974e2 | 2024-05-30 06:10:59 -0400 | [diff] [blame] | 112 | }, SpecTimeout(suiteTimeout)) |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 113 | } |
| 114 | }) |
| 115 | |
| 116 | var _ = Describe("VethsSuiteSolo", Ordered, ContinueOnFailure, Serial, func() { |
| 117 | var s VethsSuite |
| 118 | BeforeAll(func() { |
| 119 | s.SetupSuite() |
| 120 | }) |
| 121 | BeforeEach(func() { |
| 122 | s.SetupTest() |
| 123 | }) |
| 124 | AfterAll(func() { |
| 125 | s.TearDownSuite() |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 126 | }) |
| 127 | AfterEach(func() { |
| 128 | s.TearDownTest() |
| 129 | }) |
| 130 | |
| 131 | // https://onsi.github.io/ginkgo/#dynamically-generating-specs |
| 132 | for _, test := range vethSoloTests { |
| 133 | test := test |
| 134 | pc := reflect.ValueOf(test).Pointer() |
| 135 | funcValue := runtime.FuncForPC(pc) |
Adrian Villin | 637edda | 2024-05-06 06:55:34 -0400 | [diff] [blame] | 136 | testName := strings.Split(funcValue.Name(), ".")[2] |
| 137 | It(testName, Label("SOLO"), func(ctx SpecContext) { |
| 138 | s.log(testName + ": BEGIN") |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 139 | test(&s) |
Adrian Villin | 93974e2 | 2024-05-30 06:10:59 -0400 | [diff] [blame] | 140 | }, SpecTimeout(suiteTimeout)) |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 141 | } |
| 142 | }) |