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 | 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 | cee15aa | 2024-03-14 11:42:55 -0400 | [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 | } |
| 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() |
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 |
Adrian Villin | 681ff3a | 2024-06-07 06:45:48 -0400 | [diff] [blame^] | 104 | for filename, tests := range vethTests { |
| 105 | for _, test := range tests { |
| 106 | test := test |
| 107 | pc := reflect.ValueOf(test).Pointer() |
| 108 | funcValue := runtime.FuncForPC(pc) |
| 109 | testName := filename + "/" + strings.Split(funcValue.Name(), ".")[2] |
| 110 | It(testName, func(ctx SpecContext) { |
| 111 | s.log(testName + ": BEGIN") |
| 112 | test(&s) |
| 113 | }, SpecTimeout(suiteTimeout)) |
| 114 | } |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 115 | } |
| 116 | }) |
| 117 | |
| 118 | var _ = Describe("VethsSuiteSolo", Ordered, ContinueOnFailure, Serial, func() { |
| 119 | var s VethsSuite |
| 120 | BeforeAll(func() { |
| 121 | s.SetupSuite() |
| 122 | }) |
| 123 | BeforeEach(func() { |
| 124 | s.SetupTest() |
| 125 | }) |
| 126 | AfterAll(func() { |
| 127 | s.TearDownSuite() |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 128 | }) |
| 129 | AfterEach(func() { |
| 130 | s.TearDownTest() |
| 131 | }) |
| 132 | |
| 133 | // https://onsi.github.io/ginkgo/#dynamically-generating-specs |
Adrian Villin | 681ff3a | 2024-06-07 06:45:48 -0400 | [diff] [blame^] | 134 | for filename, tests := range vethSoloTests { |
| 135 | for _, test := range tests { |
| 136 | test := test |
| 137 | pc := reflect.ValueOf(test).Pointer() |
| 138 | funcValue := runtime.FuncForPC(pc) |
| 139 | testName := filename + "/" + strings.Split(funcValue.Name(), ".")[2] |
| 140 | It(testName, Label("SOLO"), func(ctx SpecContext) { |
| 141 | s.log(testName + ": BEGIN") |
| 142 | test(&s) |
| 143 | }, SpecTimeout(suiteTimeout)) |
| 144 | } |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 145 | } |
| 146 | }) |